├── README.md ├── assets ├── Linux-x86-Program-Start-Up.pdf ├── gotplt.png └── relation.png ├── glibc-2.30.tar.xz ├── glibc-2.30 ├── .gitattributes ├── .gitignore ├── COPYING ├── ChangeLog ├── ChangeLog.old │ ├── ChangeLog.1 │ ├── ChangeLog.10 │ ├── ChangeLog.11 │ ├── ChangeLog.12 │ ├── ChangeLog.13 │ ├── ChangeLog.14 │ ├── ChangeLog.15 │ ├── ChangeLog.16 │ ├── ChangeLog.17 │ ├── ChangeLog.18 │ ├── ChangeLog.2 │ ├── ChangeLog.3 │ ├── ChangeLog.4 │ ├── ChangeLog.5 │ ├── ChangeLog.6 │ ├── ChangeLog.7 │ ├── ChangeLog.8 │ ├── ChangeLog.9 │ ├── ChangeLog.libidn │ ├── ChangeLog.localedata │ ├── ChangeLog.nptl │ ├── ChangeLog.nptl_db │ ├── ChangeLog.ports │ ├── ChangeLog.ports-aarch64 │ ├── ChangeLog.ports-aix │ ├── ChangeLog.ports-alpha │ ├── ChangeLog.ports-am33 │ ├── ChangeLog.ports-arm │ ├── ChangeLog.ports-cris │ ├── ChangeLog.ports-hppa │ ├── ChangeLog.ports-ia64 │ ├── ChangeLog.ports-linux-generic │ ├── ChangeLog.ports-m68k │ ├── ChangeLog.ports-microblaze │ ├── ChangeLog.ports-mips │ ├── ChangeLog.ports-powerpc │ └── ChangeLog.ports-tile ├── INSTALL ├── LICENSES ├── MAINTAINERS ├── Makeconfig ├── Makefile ├── Makefile.in ├── Makerules ├── NEWS ├── README ├── Rules ├── abi-tags ├── aclocal.m4 ├── argp │ ├── Makefile │ ├── Versions │ ├── argp-ba.c │ ├── argp-eexst.c │ ├── argp-fmtstream.c │ ├── argp-fmtstream.h │ ├── argp-fs-xinl.c │ ├── argp-help.c │ ├── argp-namefrob.h │ ├── argp-parse.c │ ├── argp-pv.c │ ├── argp-pvh.c │ ├── argp-test.c │ ├── argp-xinl.c │ ├── argp.h │ ├── bits │ │ └── argp-ldbl.h │ ├── bug-argp1.c │ ├── bug-argp2.c │ ├── tst-argp1.c │ ├── tst-argp2.c │ └── tst-ldbl-argp.c ├── assert │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── __assert.c │ ├── assert-perr.c │ ├── assert.c │ ├── assert.h │ ├── test-assert-perr.c │ ├── test-assert.c │ ├── tst-assert-c++.cc │ └── tst-assert-g++.cc ├── benchtests │ ├── Makefile │ ├── README │ ├── acos-inputs │ ├── acosh-inputs │ ├── asin-inputs │ ├── asinh-inputs │ ├── atan-inputs │ ├── atanh-inputs │ ├── bench-malloc-simple.c │ ├── bench-malloc-thread.c │ ├── bench-math-inlines.c │ ├── bench-memccpy.c │ ├── bench-memchr.c │ ├── bench-memcmp.c │ ├── bench-memcpy-large.c │ ├── bench-memcpy-random.c │ ├── bench-memcpy-walk.c │ ├── bench-memcpy.c │ ├── bench-memmem.c │ ├── bench-memmove-large.c │ ├── bench-memmove-walk.c │ ├── bench-memmove.c │ ├── bench-mempcpy.c │ ├── bench-memrchr.c │ ├── bench-memset-large.c │ ├── bench-memset-walk.c │ ├── bench-memset.c │ ├── bench-rawmemchr.c │ ├── bench-skeleton.c │ ├── bench-stpcpy.c │ ├── bench-stpcpy_chk.c │ ├── bench-stpncpy.c │ ├── bench-strcasecmp.c │ ├── bench-strcasestr.c │ ├── bench-strcat.c │ ├── bench-strchr.c │ ├── bench-strchrnul.c │ ├── bench-strcmp.c │ ├── bench-strcoll.c │ ├── bench-strcpy.c │ ├── bench-strcpy_chk.c │ ├── bench-strcspn.c │ ├── bench-string.h │ ├── bench-strlen.c │ ├── bench-strncasecmp.c │ ├── bench-strncat.c │ ├── bench-strncmp.c │ ├── bench-strncpy.c │ ├── bench-strnlen.c │ ├── bench-strpbrk.c │ ├── bench-strrchr.c │ ├── bench-strsep.c │ ├── bench-strspn.c │ ├── bench-strstr.c │ ├── bench-strtod.c │ ├── bench-strtok.c │ ├── bench-timing-type.c │ ├── bench-timing.h │ ├── bench-util.c │ ├── bench-util.h │ ├── bench-wcpcpy.c │ ├── bench-wcpncpy.c │ ├── bench-wcscat.c │ ├── bench-wcschr.c │ ├── bench-wcschrnul.c │ ├── bench-wcscmp.c │ ├── bench-wcscpy.c │ ├── bench-wcscspn.c │ ├── bench-wcslen.c │ ├── bench-wcsncat.c │ ├── bench-wcsncmp.c │ ├── bench-wcsncpy.c │ ├── bench-wcsnlen.c │ ├── bench-wcspbrk.c │ ├── bench-wcsrchr.c │ ├── bench-wcsspn.c │ ├── bench-wmemchr.c │ ├── bench-wmemcmp.c │ ├── bench-wmemset.c │ ├── cos-inputs │ ├── cosf-inputs │ ├── cosh-inputs │ ├── exp-inputs │ ├── exp2-inputs │ ├── exp2f-inputs │ ├── expf-inputs │ ├── ffs-inputs │ ├── ffsll-inputs │ ├── fmax-inputs │ ├── fmaxf-inputs │ ├── fmin-inputs │ ├── fminf-inputs │ ├── hypot-inputs │ ├── isfinite-inputs │ ├── isinf-inputs │ ├── isnan-inputs │ ├── json-lib.c │ ├── json-lib.h │ ├── log-inputs │ ├── log2-inputs │ ├── log2f-inputs │ ├── logb-inputs │ ├── logbf-inputs │ ├── logf-inputs │ ├── modf-inputs │ ├── pow-inputs │ ├── powf-inputs │ ├── pthread_once-inputs │ ├── pthread_once-source.c │ ├── rint-inputs │ ├── scripts │ │ ├── bench.py │ │ ├── benchout.schema.json │ │ ├── benchout_strings.schema.json │ │ ├── compare_bench.py │ │ ├── compare_strings.py │ │ ├── import_bench.py │ │ └── validate_benchout.py │ ├── sin-inputs │ ├── sincos-inputs │ ├── sincosf-inputs │ ├── sinf-inputs │ ├── sinh-inputs │ ├── sprintf-inputs │ ├── sprintf-source.c │ ├── sqrt-inputs │ ├── strcoll-inputs │ │ ├── filelist#C │ │ ├── filelist#en_US.UTF-8 │ │ ├── lorem_ipsum#ar_SA.UTF-8 │ │ ├── lorem_ipsum#cs_CZ.UTF-8 │ │ ├── lorem_ipsum#da_DK.UTF-8 │ │ ├── lorem_ipsum#el_GR.UTF-8 │ │ ├── lorem_ipsum#en_GB.UTF-8 │ │ ├── lorem_ipsum#en_US.UTF-8 │ │ ├── lorem_ipsum#es_ES.UTF-8 │ │ ├── lorem_ipsum#fr_FR.UTF-8 │ │ ├── lorem_ipsum#he_IL.UTF-8 │ │ ├── lorem_ipsum#hi_IN.UTF-8 │ │ ├── lorem_ipsum#hu_HU.UTF-8 │ │ ├── lorem_ipsum#is_IS.UTF-8 │ │ ├── lorem_ipsum#it_IT.UTF-8 │ │ ├── lorem_ipsum#ja_JP.UTF-8 │ │ ├── lorem_ipsum#pl_PL.UTF-8 │ │ ├── lorem_ipsum#pt_PT.UTF-8 │ │ ├── lorem_ipsum#ru_RU.UTF-8 │ │ ├── lorem_ipsum#sr_RS.UTF-8 │ │ ├── lorem_ipsum#sv_SE.UTF-8 │ │ ├── lorem_ipsum#tr_TR.UTF-8 │ │ ├── lorem_ipsum#vi_VN.UTF-8 │ │ └── lorem_ipsum#zh_CN.UTF-8 │ ├── tan-inputs │ ├── tanh-inputs │ ├── thread_create-inputs │ ├── thread_create-source.c │ ├── trunc-inputs │ └── truncf-inputs ├── bits │ ├── byteswap.h │ ├── confname.h │ ├── dirent.h │ ├── dirent_ext.h │ ├── dlfcn.h │ ├── elfclass.h │ ├── endian.h │ ├── environments.h │ ├── errno.h │ ├── fcntl.h │ ├── fenv.h │ ├── fenvinline.h │ ├── floatn-common.h │ ├── floatn.h │ ├── flt-eval-method.h │ ├── fp-fast.h │ ├── fp-logb.h │ ├── hwcap.h │ ├── in.h │ ├── indirect-return.h │ ├── ioctl-types.h │ ├── ioctls.h │ ├── ipc.h │ ├── ipctypes.h │ ├── iscanonical.h │ ├── libc-header-start.h │ ├── libm-simd-decl-stubs.h │ ├── link.h │ ├── local_lim.h │ ├── long-double.h │ ├── math-finite.h │ ├── math-vector.h │ ├── mathdef.h │ ├── mathinline.h │ ├── mman.h │ ├── mqueue.h │ ├── msq.h │ ├── netdb.h │ ├── param.h │ ├── poll.h │ ├── posix_opt.h │ ├── pthreadtypes.h │ ├── resource.h │ ├── sched.h │ ├── select.h │ ├── sem.h │ ├── setjmp.h │ ├── shm.h │ ├── sigaction.h │ ├── sigcontext.h │ ├── sigevent-consts.h │ ├── siginfo-consts.h │ ├── signal_ext.h │ ├── signum-generic.h │ ├── signum.h │ ├── sigstack.h │ ├── sigthread.h │ ├── sockaddr.h │ ├── socket.h │ ├── ss_flags.h │ ├── stat.h │ ├── statfs.h │ ├── statvfs.h │ ├── stdint-intn.h │ ├── stdint-uintn.h │ ├── stdlib-bsearch.h │ ├── sys_errlist.h │ ├── syslog-path.h │ ├── sysmacros.h │ ├── termios.h │ ├── time.h │ ├── time64.h │ ├── timesize.h │ ├── types │ │ ├── __sigset_t.h │ │ ├── error_t.h │ │ ├── sigevent_t.h │ │ ├── siginfo_t.h │ │ ├── stack_t.h │ │ └── struct_sched_param.h │ ├── typesizes.h │ ├── uintn-identity.h │ ├── uio-ext.h │ ├── uio_lim.h │ ├── unistd_ext.h │ ├── utmp.h │ ├── utsname.h │ ├── waitflags.h │ ├── waitstatus.h │ ├── wchar.h │ └── wordsize.h ├── catgets │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── catgets.c │ ├── catgetsinfo.h │ ├── config.h │ ├── gencat.c │ ├── nl_types.h │ ├── open_catalog.c │ ├── sample.SJIS │ ├── test-gencat.c │ ├── test-gencat.sh │ ├── test1.msg │ ├── test2.msg │ ├── tst-catgets.c │ └── xopen-msg.awk ├── config.h.in ├── config.make.in ├── configure ├── configure.ac ├── conform │ ├── Makefile │ ├── check-header-lists.sh │ ├── conformtest.py │ ├── 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 │ │ ├── fenv.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 │ │ ├── stdalign.h-data │ │ ├── stdarg.h-data │ │ ├── stdbool.h-data │ │ ├── stddef.h-data │ │ ├── stdint.h-data │ │ ├── stdio.h-data │ │ ├── stdlib.h-data │ │ ├── stdnoreturn.h-data │ │ ├── string.h-data │ │ ├── strings.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 │ │ │ ├── time.h-data │ │ │ ├── timeb.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 │ │ ├── threads.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 │ ├── glibcconform.py │ ├── linknamespace.py │ └── list-header-symbols.py ├── crypt │ ├── Makefile │ ├── README.ufc-crypt │ ├── Versions │ ├── badsalttest.c │ ├── cert.c │ ├── cert.input │ ├── crypt-entry.c │ ├── crypt-private.h │ ├── crypt.c │ ├── crypt.h │ ├── crypt_util.c │ ├── md5-block.c │ ├── md5-crypt.c │ ├── md5.c │ ├── md5.h │ ├── md5c-test.c │ ├── md5test-giant.c │ ├── md5test.c │ ├── sha256-block.c │ ├── sha256-crypt.c │ ├── sha256.c │ ├── sha256.h │ ├── sha256c-test.c │ ├── sha256test.c │ ├── sha512-block.c │ ├── sha512-crypt.c │ ├── sha512.c │ ├── sha512.h │ ├── sha512c-test.c │ ├── sha512test.c │ ├── speeds.c │ ├── ufc-crypt.h │ └── ufc.c ├── csu │ ├── Makefile │ ├── Versions │ ├── abi-note.S │ ├── check_fds.c │ ├── dso_handle.c │ ├── elf-init.c │ ├── errno-loc.c │ ├── errno.c │ ├── gmon-start.c │ ├── init-first.c │ ├── init.c │ ├── libc-start.c │ ├── libc-tls.c │ ├── start.c │ ├── static-reloc.c │ ├── sysdep.c │ └── version.c ├── ctype │ ├── Makefile │ ├── Versions │ ├── ctype-c99.c │ ├── ctype-c99_l.c │ ├── ctype-extn.c │ ├── ctype-info.c │ ├── ctype.c │ ├── ctype.h │ ├── ctype_l.c │ ├── isctype.c │ └── test_ctype.c ├── debug │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── asprintf_chk.c │ ├── backtrace-tst.c │ ├── backtrace.c │ ├── backtracesyms.c │ ├── backtracesymsfd.c │ ├── catchsegv.sh │ ├── chk_fail.c │ ├── confstr_chk.c │ ├── dprintf_chk.c │ ├── execinfo.h │ ├── explicit_bzero_chk.c │ ├── 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 │ ├── gets_chk.c │ ├── getwd_chk.c │ ├── longjmp_chk.c │ ├── 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 │ ├── read_chk.c │ ├── readlink_chk.c │ ├── readlinkat_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-backtrace.h │ ├── tst-backtrace2.c │ ├── tst-backtrace3.c │ ├── tst-backtrace4.c │ ├── tst-backtrace5.c │ ├── tst-backtrace6.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_chk.c │ ├── tst-longjmp_chk2.c │ ├── tst-longjmp_chk3.c │ ├── tst-ssp-1.c │ ├── ttyname_r_chk.c │ ├── vasprintf_chk.c │ ├── vdprintf_chk.c │ ├── vfprintf_chk.c │ ├── vfwprintf_chk.c │ ├── vobprintf_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 │ ├── Makefile │ ├── Versions │ ├── alphasort.c │ ├── alphasort64.c │ ├── bug-readdir1.c │ ├── closedir.c │ ├── dirent.h │ ├── dirfd.c │ ├── fdopendir.c │ ├── getdents.c │ ├── getdents64.c │ ├── list.c │ ├── opendir-tst1.c │ ├── opendir.c │ ├── readdir.c │ ├── readdir64.c │ ├── readdir64_r.c │ ├── readdir_r.c │ ├── rewinddir.c │ ├── scandir-cancel.c │ ├── scandir-tail-common.c │ ├── scandir-tail.c │ ├── scandir.c │ ├── scandir64-tail.c │ ├── scandir64.c │ ├── scandirat.c │ ├── scandirat64.c │ ├── seekdir.c │ ├── telldir.c │ ├── tst-fdopendir.c │ ├── tst-fdopendir2.c │ ├── tst-scandir.c │ ├── tst-scandir64.c │ ├── tst-seekdir.c │ ├── versionsort.c │ └── versionsort64.c ├── dlfcn │ ├── Makefile │ ├── Versions │ ├── bug-atexit1-lib.c │ ├── bug-atexit1.c │ ├── bug-atexit2-lib.c │ ├── bug-atexit2.c │ ├── bug-atexit3-lib.cc │ ├── bug-atexit3.c │ ├── bug-dl-leaf-lib-cb.c │ ├── bug-dl-leaf-lib.c │ ├── bug-dl-leaf.c │ ├── bug-dlopen1.c │ ├── bug-dlsym1-lib1.c │ ├── bug-dlsym1-lib2.c │ ├── bug-dlsym1.c │ ├── default.c │ ├── defaultmod1.c │ ├── defaultmod2.c │ ├── dladdr.c │ ├── dladdr1.c │ ├── dlclose.c │ ├── dlerror.c │ ├── dlfcn.c │ ├── dlfcn.h │ ├── dlfreeres.c │ ├── dlinfo.c │ ├── dlmopen.c │ ├── dlopen.c │ ├── dlopenold.c │ ├── dlsym.c │ ├── dlvsym.c │ ├── errmsg1.c │ ├── errmsg1mod.c │ ├── failtest.c │ ├── failtestmod.c │ ├── glreflib1.c │ ├── glreflib2.c │ ├── glreflib3.c │ ├── glrefmain.c │ ├── modatexit.c │ ├── modcxaatexit.c │ ├── moddummy1.c │ ├── moddummy2.c │ ├── modstatic.c │ ├── modstatic2.c │ ├── modstatic3.c │ ├── modstatic5.c │ ├── sdladdr.c │ ├── sdladdr1.c │ ├── sdlclose.c │ ├── sdlerror.c │ ├── sdlfreeres.c │ ├── sdlinfo.c │ ├── sdlmopen.c │ ├── sdlopen.c │ ├── sdlsym.c │ ├── sdlvsym.c │ ├── tst-dladdr.c │ ├── tst-dlinfo.c │ ├── tst-rec-dlopen.c │ ├── tstatexit.c │ ├── tstcxaatexit.c │ ├── tststatic.c │ ├── tststatic2.c │ ├── tststatic3.c │ ├── tststatic4.c │ └── tststatic5.c ├── elf │ ├── Makefile │ ├── Versions │ ├── cache.c │ ├── chroot_canon.c │ ├── circleload1.c │ ├── circlemod1.c │ ├── circlemod1a.c │ ├── circlemod2.c │ ├── circlemod2a.c │ ├── circlemod3.c │ ├── circlemod3a.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-obj.c │ ├── dl-addr.c │ ├── dl-brk.c │ ├── dl-cache.c │ ├── dl-close.c │ ├── dl-conflict.c │ ├── dl-debug.c │ ├── dl-deps.c │ ├── dl-dst.h │ ├── dl-environ.c │ ├── dl-error-minimal.c │ ├── dl-error-skeleton.c │ ├── dl-error.c │ ├── dl-exception.c │ ├── dl-execstack.c │ ├── dl-fini.c │ ├── dl-fptr.c │ ├── dl-hwcaps.c │ ├── dl-hwcaps.h │ ├── dl-init.c │ ├── dl-iteratephdr.c │ ├── dl-libc.c │ ├── dl-load.c │ ├── dl-load.h │ ├── dl-lookup.c │ ├── dl-machine-reject-phdr.h │ ├── dl-map-segments.h │ ├── dl-minimal.c │ ├── dl-misc.c │ ├── dl-object.c │ ├── dl-open.c │ ├── dl-origin.c │ ├── dl-profile.c │ ├── dl-profstub.c │ ├── dl-reloc-static-pie.c │ ├── dl-reloc.c │ ├── dl-runtime.c │ ├── dl-sbrk.c │ ├── dl-scope.c │ ├── dl-sort-maps.c │ ├── dl-support.c │ ├── dl-sym.c │ ├── dl-symaddr.c │ ├── dl-sysdep-open.h │ ├── dl-sysdep.c │ ├── dl-tls.c │ ├── dl-trampoline.c │ ├── dl-tunable-types.h │ ├── dl-tunables.c │ ├── dl-tunables.h │ ├── dl-tunables.list │ ├── dl-unmap-segments.h │ ├── dl-version.c │ ├── dl-writev.h │ ├── do-rel.h │ ├── dynamic-link.h │ ├── elf.h │ ├── enbl-secure.c │ ├── failobj.c │ ├── filter.c │ ├── filtmod1.c │ ├── filtmod2.c │ ├── firstobj.c │ ├── gen-trusted-dirs.awk │ ├── genrtldtbl.awk │ ├── get-dynamic-info.h │ ├── 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 │ ├── ifuncmain9.c │ ├── ifuncmain9pic.c │ ├── ifuncmain9picstatic.c │ ├── ifuncmain9pie.c │ ├── ifuncmain9static.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 │ ├── multiload.c │ ├── neededobj1.c │ ├── neededobj2.c │ ├── neededobj3.c │ ├── neededobj4.c │ ├── neededobj5.c │ ├── neededobj6.c │ ├── neededtest.c │ ├── neededtest2.c │ ├── neededtest3.c │ ├── neededtest4.c │ ├── next.c │ ├── nextmod1.c │ ├── nextmod2.c │ ├── nodel2mod1.c │ ├── nodel2mod2.c │ ├── nodel2mod3.c │ ├── nodelete.c │ ├── nodelete2.c │ ├── nodelmod1.c │ ├── nodelmod2.c │ ├── nodelmod3.c │ ├── nodelmod4.c │ ├── nodlopen.c │ ├── nodlopen2.c │ ├── nodlopenmod.c │ ├── nodlopenmod2.c │ ├── noload.c │ ├── order.c │ ├── order2.c │ ├── order2mod1.c │ ├── order2mod2.c │ ├── order2mod3.c │ ├── order2mod4.c │ ├── origtest.c │ ├── pathoptobj.c │ ├── pldd-xx.c │ ├── pldd.c │ ├── preloadtest.c │ ├── readelflib.c │ ├── readlib.c │ ├── reldep.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 │ ├── reldepmod1.c │ ├── reldepmod2.c │ ├── reldepmod3.c │ ├── reldepmod4.c │ ├── reldepmod5.c │ ├── reldepmod6.c │ ├── resolvfail.c │ ├── restest1.c │ ├── restest2.c │ ├── rtld-Rules │ ├── rtld-debugger-interface.txt │ ├── rtld.c │ ├── setup-vdso.h │ ├── sln.c │ ├── sofini.c │ ├── soinit.c │ ├── sotruss-lib.c │ ├── sotruss.sh │ ├── sprof.c │ ├── static-stubs.c │ ├── testobj.h │ ├── testobj1.c │ ├── testobj1_1.c │ ├── testobj2.c │ ├── testobj3.c │ ├── testobj4.c │ ├── testobj5.c │ ├── testobj6.c │ ├── tls-macros.h │ ├── tlsdeschtab.h │ ├── tst-_dl_addr_inside_object.c │ ├── tst-absolute-sym-lib.c │ ├── tst-absolute-sym-lib.lds │ ├── tst-absolute-sym.c │ ├── tst-absolute-zero-lib.c │ ├── tst-absolute-zero-lib.lds │ ├── tst-absolute-zero.c │ ├── tst-addr1.c │ ├── tst-align.c │ ├── tst-align2.c │ ├── tst-alignmod.c │ ├── tst-alignmod2.c │ ├── tst-array1-static.c │ ├── tst-array1.c │ ├── tst-array1.exp │ ├── tst-array2.c │ ├── tst-array2.exp │ ├── tst-array2dep.c │ ├── tst-array3.c │ ├── tst-array4.c │ ├── tst-array4.exp │ ├── tst-array5-static.c │ ├── tst-array5-static.exp │ ├── tst-array5.c │ ├── tst-array5.exp │ ├── tst-array5dep.c │ ├── tst-audit1.c │ ├── tst-audit11.c │ ├── tst-audit11mod1.c │ ├── tst-audit11mod2.c │ ├── tst-audit11mod2.map │ ├── tst-audit12.c │ ├── tst-audit12mod1.c │ ├── tst-audit12mod2.c │ ├── tst-audit12mod2.map │ ├── tst-audit12mod3.c │ ├── tst-audit13.c │ ├── tst-audit13mod1.c │ ├── tst-audit2.c │ ├── tst-audit8.c │ ├── tst-audit9.c │ ├── tst-auditmod1.c │ ├── tst-auditmod11.c │ ├── tst-auditmod12.c │ ├── tst-auditmod9a.c │ ├── tst-auditmod9b.c │ ├── tst-auxv.c │ ├── tst-big-note-lib.S │ ├── tst-big-note.c │ ├── tst-create_format1.c │ ├── tst-debug1.c │ ├── tst-deep1.c │ ├── tst-deep1mod1.c │ ├── tst-deep1mod2.c │ ├── tst-deep1mod3.c │ ├── tst-dl-iter-static.c │ ├── tst-dlmodcount.c │ ├── tst-dlmopen1.c │ ├── tst-dlmopen1mod.c │ ├── tst-dlmopen2.c │ ├── tst-dlmopen3.c │ ├── tst-dlopen-aout.c │ ├── tst-dlopen-pie.c │ ├── tst-dlopenrpath.c │ ├── tst-dlopenrpathmod.c │ ├── tst-dlsym-error.c │ ├── tst-env-setuid-tunables.c │ ├── tst-env-setuid.c │ ├── tst-execstack-mod.c │ ├── tst-execstack-needed.c │ ├── tst-execstack-prog.c │ ├── tst-execstack.c │ ├── tst-global1.c │ ├── tst-gnu2-tls1.c │ ├── tst-gnu2-tls1mod.c │ ├── tst-ifunc-textrel.c │ ├── tst-initorder.c │ ├── tst-initorder.exp │ ├── 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-latepthread.c │ ├── tst-latepthreadmod.c │ ├── tst-ldconfig-X.sh │ ├── tst-ldconfig-bad-aux-cache.c │ ├── tst-ldconfig-bad-aux-cache.root │ │ ├── etc │ │ │ └── ld.so.conf │ │ └── postclean.req │ ├── tst-leaks1-static.c │ ├── tst-leaks1.c │ ├── tst-libc_dlvsym-dso.c │ ├── tst-libc_dlvsym-static.c │ ├── tst-libc_dlvsym.c │ ├── tst-libc_dlvsym.h │ ├── tst-linkall-static.c │ ├── tst-main1.c │ ├── tst-main1mod.c │ ├── tst-nodelete-dlclose-dso.c │ ├── tst-nodelete-dlclose-plugin.c │ ├── tst-nodelete-dlclose.c │ ├── tst-nodelete-opened-lib.c │ ├── tst-nodelete-opened.c │ ├── tst-nodelete-rtldmod.cc │ ├── tst-nodelete-uniquemod.cc │ ├── tst-nodelete-zmod.cc │ ├── tst-nodelete.cc │ ├── tst-nodelete2.c │ ├── tst-nodelete2mod.c │ ├── tst-noload.c │ ├── tst-null-argv-lib.c │ ├── tst-null-argv.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-pie2.c │ ├── tst-piemod1.c │ ├── tst-pldd.c │ ├── tst-prelink.c │ ├── tst-prelink.exp │ ├── tst-protected1a.c │ ├── tst-protected1b.c │ ├── tst-protected1mod.h │ ├── tst-protected1moda.c │ ├── tst-protected1modb.c │ ├── tst-ptrguard1-static.c │ ├── tst-ptrguard1.c │ ├── tst-relsort1.c │ ├── tst-relsort1mod1.c │ ├── tst-relsort1mod2.c │ ├── tst-rtld-load-self.sh │ ├── tst-rtld-preload.sh │ ├── tst-sonamemove-dlopen.c │ ├── tst-sonamemove-link.c │ ├── tst-sonamemove-linkmod1.c │ ├── tst-sonamemove-linkmod1.map │ ├── tst-sonamemove-runmod1.c │ ├── tst-sonamemove-runmod1.map │ ├── tst-sonamemove-runmod2.c │ ├── tst-sonamemove-runmod2.map │ ├── tst-stackguard1-static.c │ ├── tst-stackguard1.c │ ├── tst-thrlock.c │ ├── tst-tls-dlinfo.c │ ├── tst-tls-manydynamic.c │ ├── tst-tls-manydynamic.h │ ├── tst-tls-manydynamicmod.c │ ├── tst-tls1-static-non-pie.c │ ├── tst-tls1-static.c │ ├── tst-tls1.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-tls2-static.c │ ├── tst-tls2.c │ ├── tst-tls3.c │ ├── tst-tls4.c │ ├── tst-tls5.c │ ├── tst-tls6.c │ ├── tst-tls7.c │ ├── tst-tls8.c │ ├── tst-tls9-static.c │ ├── tst-tls9.c │ ├── tst-tlsalign-extern-static.c │ ├── tst-tlsalign-extern.c │ ├── tst-tlsalign-lib.c │ ├── tst-tlsalign-static.c │ ├── tst-tlsalign-vars.c │ ├── tst-tlsalign.c │ ├── tst-tlsmod1.c │ ├── tst-tlsmod10.c │ ├── tst-tlsmod11.c │ ├── tst-tlsmod12.c │ ├── tst-tlsmod13.c │ ├── tst-tlsmod13a.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-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-unique3lib.cc │ ├── tst-unique3lib2.cc │ ├── tst-unique4.cc │ ├── tst-unique4.h │ ├── tst-unique4lib.cc │ ├── tst-unwind-ctor-lib.c │ ├── tst-unwind-ctor.c │ ├── tst-unwind-main.c │ ├── unload.c │ ├── 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 │ ├── unloadmod.c │ ├── vismain.c │ ├── vismod.h │ ├── vismod1.c │ ├── vismod2.c │ └── vismod3.c ├── extra-lib.mk ├── gen-locales.mk ├── gmon │ ├── Makefile │ ├── Versions │ ├── gmon.c │ ├── mcount.c │ ├── prof-freq.c │ ├── profil.c │ ├── sprofil.c │ ├── sys │ │ ├── gmon.h │ │ ├── gmon_out.h │ │ └── profil.h │ ├── tst-gmon-gprof.sh │ ├── tst-gmon-pie.c │ ├── tst-gmon-static-gprof.sh │ ├── tst-gmon-static-pie.c │ ├── tst-gmon-static.c │ ├── tst-gmon.c │ ├── tst-profile-static.c │ └── tst-sprofil.c ├── gnulib │ ├── Makefile │ └── tst-gcc.c ├── grp │ ├── Makefile │ ├── Versions │ ├── compat-initgroups.c │ ├── fgetgrent.c │ ├── fgetgrent_r.c │ ├── getgrent.c │ ├── getgrent_r.c │ ├── getgrgid.c │ ├── getgrgid_r.c │ ├── getgrnam.c │ ├── getgrnam_r.c │ ├── grp-merge.c │ ├── grp-merge.h │ ├── grp.h │ ├── initgroups.c │ ├── putgrent.c │ ├── setgroups.c │ ├── testgrp.c │ ├── tst-putgrent.c │ ├── tst_fgetgrent.c │ └── tst_fgetgrent.sh ├── gshadow │ ├── Makefile │ ├── Versions │ ├── fgetsgent.c │ ├── fgetsgent_r.c │ ├── getsgent.c │ ├── getsgent_r.c │ ├── getsgnam.c │ ├── getsgnam_r.c │ ├── gshadow.h │ ├── putsgent.c │ ├── sgetsgent.c │ ├── sgetsgent_r.c │ ├── tst-gshadow.c │ └── tst-putsgent.c ├── hesiod │ ├── Depend │ ├── Makefile │ ├── README.hesiod │ ├── Versions │ ├── hesiod.c │ ├── hesiod.h │ ├── hesiod_p.h │ └── nss_hesiod │ │ ├── hesiod-grp.c │ │ ├── hesiod-proto.c │ │ ├── hesiod-pwd.c │ │ └── hesiod-service.c ├── htl │ ├── Makefile │ ├── Versions │ ├── alloca_cutoff.c │ ├── configure │ ├── configure.in │ ├── cthreads-compat.c │ ├── forward.c │ ├── libc_pthread_init.c │ ├── libpthread.a │ ├── libpthread_pic.a │ ├── lockfile.c │ ├── pt-alloc.c │ ├── pt-cancel.c │ ├── pt-cleanup.c │ ├── pt-create.c │ ├── pt-dealloc.c │ ├── pt-detach.c │ ├── pt-exit.c │ ├── pt-getattr.c │ ├── pt-initialize.c │ ├── pt-internal.h │ ├── pt-join.c │ ├── pt-self.c │ ├── pt-setcancelstate.c │ ├── pt-setcanceltype.c │ ├── pt-sigmask.c │ ├── pt-spin-inlines.c │ ├── pt-testcancel.c │ ├── pt-yield.c │ ├── shlib-versions │ └── tests │ │ ├── Makefile │ │ ├── README │ │ ├── test-1.c │ │ ├── test-10.c │ │ ├── test-11.c │ │ ├── test-12.c │ │ ├── test-13.c │ │ ├── test-14.c │ │ ├── test-15.c │ │ ├── test-16.c │ │ ├── test-17.c │ │ ├── test-2.c │ │ ├── test-3.c │ │ ├── test-4.c │ │ ├── test-5.c │ │ ├── test-6.c │ │ ├── test-7.c │ │ ├── test-8.c │ │ ├── test-9.c │ │ └── test-__pthread_destroy_specific-skip.c ├── hurd │ ├── Depend │ ├── Makefile │ ├── Notes │ ├── Versions │ ├── alloc-fd.c │ ├── catch-exc.c │ ├── catch-signal.c │ ├── compat-20.c │ ├── ctty-input.c │ ├── ctty-output.c │ ├── dtable.c │ ├── exc2signal.c │ ├── faultexc.defs │ ├── fchroot.c │ ├── fcntl-internal.h │ ├── fd-close.c │ ├── fd-read.c │ ├── fd-write.c │ ├── fopenport.c │ ├── get-host.c │ ├── getdport.c │ ├── geteuids.c │ ├── getumask.c │ ├── hurd-raise.c │ ├── hurd.h │ ├── 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 │ ├── hurdhost.h │ ├── hurdid.c │ ├── hurdinit.c │ ├── hurdioctl.c │ ├── hurdkill.c │ ├── hurdlock.c │ ├── hurdlock.h │ ├── hurdlookup.c │ ├── hurdmalloc.c │ ├── hurdmalloc.h │ ├── hurdmsg.c │ ├── hurdpid.c │ ├── hurdports.c │ ├── hurdprio.c │ ├── hurdrlimit.c │ ├── hurdselect.c │ ├── hurdsig.c │ ├── hurdsock.c │ ├── hurdsocket.h │ ├── 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 │ ├── msgportdemux.c │ ├── new-fd.c │ ├── openport.c │ ├── path-lookup.c │ ├── pid2task.c │ ├── port-cleanup.c │ ├── port2fd.c │ ├── ports-get.c │ ├── ports-set.c │ ├── preempt-sig.c │ ├── privports.c │ ├── report-wait.c │ ├── set-host.c │ ├── setauth.c │ ├── seteuids.c │ ├── siginfo.c │ ├── sigunwind.c │ ├── stack_chk_fail_local.c │ ├── task2pid.c │ ├── thread-cancel.c │ ├── thread-self.c │ ├── trampoline.c │ ├── vpprintf.c │ └── xattr.c ├── iconv │ ├── Makefile │ ├── Versions │ ├── dummy-repertoire.c │ ├── gconv.c │ ├── gconv.h │ ├── gconv_builtin.c │ ├── gconv_builtin.h │ ├── gconv_cache.c │ ├── gconv_charset.h │ ├── gconv_close.c │ ├── gconv_conf.c │ ├── gconv_db.c │ ├── gconv_dl.c │ ├── gconv_int.h │ ├── gconv_open.c │ ├── gconv_simple.c │ ├── gconv_trans.c │ ├── iconv.c │ ├── iconv.h │ ├── iconv_charmap.c │ ├── iconv_close.c │ ├── iconv_open.c │ ├── iconv_prog.c │ ├── iconv_prog.h │ ├── iconvconfig.c │ ├── iconvconfig.h │ ├── loop.c │ ├── skeleton.c │ ├── strtab.c │ ├── test-gconv-modules │ ├── tst-gconv-init-failure-mod.c │ ├── tst-gconv-init-failure.c │ ├── tst-iconv-mt.c │ ├── tst-iconv1.c │ ├── tst-iconv2.c │ ├── tst-iconv3.c │ ├── tst-iconv4.c │ ├── tst-iconv5.c │ ├── tst-iconv6.c │ └── tst-iconv7.c ├── iconvdata │ ├── 8bit-gap.c │ ├── 8bit-generic.c │ ├── ARMSCII-8.irreversible │ ├── BIG5.irreversible │ ├── BIG5HKSCS.irreversible │ ├── BIG5HKSCS.precomposed │ ├── CP1255.irreversible │ ├── CP1258.irreversible │ ├── CP932.irreversible │ ├── Depend │ ├── EUC-JISX0213.precomposed │ ├── EUC-JP-MS.irreversible │ ├── EUC-JP.irreversible │ ├── EUC-KR.irreversible │ ├── EUC-TW.irreversible │ ├── IBM1132.irreversible │ ├── IBM1133.irreversible │ ├── IBM1160.irreversible │ ├── IBM1161.irreversible │ ├── IBM1163.irreversible │ ├── IBM1164.irreversible │ ├── IBM856.irreversible │ ├── IBM922.irreversible │ ├── ISIRI-3342.irreversible │ ├── JISX0213.TXT │ ├── MISSING │ ├── Makefile │ ├── SHIFT_JISX0213.irreversible │ ├── SHIFT_JISX0213.precomposed │ ├── SJIS.irreversible │ ├── TCVN5712-1.precomposed │ ├── TESTS │ ├── TESTS2 │ ├── TSCII.irreversible │ ├── TSCII.precomposed │ ├── ansi_x3.110.c │ ├── armscii-8.c │ ├── asmo_449.c │ ├── big5.c │ ├── big5hkscs.c │ ├── brf.c │ ├── bug-iconv1.c │ ├── bug-iconv10.c │ ├── bug-iconv11.c │ ├── bug-iconv12.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 │ ├── cp1256.c │ ├── cp1257.c │ ├── cp1258.c │ ├── cp737.c │ ├── cp737.h │ ├── cp770.c │ ├── cp771.c │ ├── cp772.c │ ├── cp773.c │ ├── cp774.c │ ├── cp775.c │ ├── cp775.h │ ├── cp932.c │ ├── csn_369103.c │ ├── cwi.c │ ├── dec-mcs.c │ ├── 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-s.c │ ├── ebcdic-es.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-jp-ms.c │ ├── euc-jp.c │ ├── euc-kr.c │ ├── euc-tw.c │ ├── extra-module.mk │ ├── gap.awk │ ├── gaptab.awk │ ├── gb18030.c │ ├── gb2312.c │ ├── gb2312.h │ ├── gbbig5.c │ ├── gbgbk.c │ ├── gbk.c │ ├── gconv-modules │ ├── gconv.map │ ├── gen-8bit-gap-1.sh │ ├── gen-8bit-gap.sh │ ├── gen-8bit.sh │ ├── georgian-academy.c │ ├── georgian-ps.c │ ├── gost_19768-74.c │ ├── greek-ccitt.c │ ├── greek7-old.c │ ├── greek7.c │ ├── hp-greek8.c │ ├── hp-roman8.c │ ├── hp-roman9.c │ ├── hp-thai8.c │ ├── hp-turkish8.c │ ├── ibm037.c │ ├── ibm038.c │ ├── ibm1004.c │ ├── ibm1008.c │ ├── ibm1008.h │ ├── ibm1008_420.c │ ├── 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 │ ├── ibm1133.c │ ├── ibm1133.h │ ├── 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 │ ├── ibm1161.c │ ├── ibm1161.h │ ├── ibm1162.c │ ├── ibm1162.h │ ├── ibm1163.c │ ├── ibm1163.h │ ├── ibm1164.c │ ├── ibm1164.h │ ├── 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 │ ├── ibm857.c │ ├── ibm858.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 │ ├── ibm903.c │ ├── ibm9030.c │ ├── ibm9030.h │ ├── ibm904.c │ ├── ibm905.c │ ├── ibm9066.c │ ├── ibm9066.h │ ├── ibm918.c │ ├── ibm921.c │ ├── ibm921.h │ ├── ibm922.c │ ├── ibm922.h │ ├── 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-cyrillic.c │ ├── inis.c │ ├── isiri-3342.c │ ├── isiri-3342.h │ ├── iso-2022-cn-ext.c │ ├── iso-2022-cn.c │ ├── iso-2022-jp-3.c │ ├── iso-2022-jp.c │ ├── iso-2022-kr.c │ ├── iso-ir-165.c │ ├── iso-ir-165.h │ ├── iso-ir-197.c │ ├── iso-ir-209.c │ ├── iso646.c │ ├── iso8859-1.c │ ├── iso8859-10.c │ ├── iso8859-11.c │ ├── iso8859-13.c │ ├── iso8859-14.c │ ├── iso8859-15.c │ ├── iso8859-16.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_10367-box.c │ ├── iso_11548-1.c │ ├── iso_2033.c │ ├── iso_5427-ext.c │ ├── iso_5427.c │ ├── iso_5428.c │ ├── iso_6937-2.c │ ├── iso_6937.c │ ├── jis0201.c │ ├── jis0201.h │ ├── jis0208.c │ ├── jis0208.h │ ├── jis0212.c │ ├── jis0212.h │ ├── jisx0213.c │ ├── jisx0213.h │ ├── 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 │ ├── mac-is.c │ ├── mac-sami.c │ ├── mac-uk.c │ ├── macintosh.c │ ├── mik.c │ ├── nats-dano.c │ ├── nats-sefi.c │ ├── pt154.c │ ├── rk1048.c │ ├── run-iconv-test.sh │ ├── sami-ws2.c │ ├── shift_jisx0213.c │ ├── sjis.c │ ├── t.61.c │ ├── tcvn5712-1.c │ ├── testdata │ │ ├── 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 │ │ ├── ES..UTF8 │ │ ├── ES2 │ │ ├── ES2..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 │ │ ├── GBK │ │ ├── GBK..UTF8 │ │ ├── GB_1988-80 │ │ ├── GB_1988-80..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-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-1..UTF8 │ │ ├── ISO-8859-10 │ │ ├── ISO-8859-10..UCS-2BE │ │ ├── ISO-8859-14 │ │ ├── ISO-8859-14..UTF8 │ │ ├── ISO-8859-15 │ │ ├── ISO-8859-15..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 │ │ ├── ISO_11548-1 │ │ ├── ISO_11548-1..UTF8 │ │ ├── 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 │ │ ├── KOI-8..UTF8 │ │ ├── KOI8-R │ │ ├── KOI8-R..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..UTF8 │ │ ├── NF_Z_62-010_1973 │ │ ├── NF_Z_62-010_1973..UTF8 │ │ ├── NS_4551-1 │ │ ├── NS_4551-1..UTF8 │ │ ├── NS_4551-2 │ │ ├── NS_4551-2..UTF8 │ │ ├── PT │ │ ├── PT..UTF8 │ │ ├── PT2 │ │ ├── PT2..UTF8 │ │ ├── SEN_850200_B │ │ ├── SEN_850200_B..UTF8 │ │ ├── SEN_850200_C │ │ ├── SEN_850200_C..UTF8 │ │ ├── SHIFT_JISX0213 │ │ ├── SHIFT_JISX0213..UTF8 │ │ ├── TCVN-5712 │ │ ├── TCVN-5712..UTF8 │ │ ├── TSCII │ │ ├── TSCII..UTF8 │ │ ├── UTF-7 │ │ ├── UTF-7..UTF8 │ │ ├── WINDOWS-1255 │ │ ├── WINDOWS-1255..UTF8 │ │ ├── WINDOWS-1258 │ │ ├── WINDOWS-1258..UTF8 │ │ ├── alfabeta..UTF-16.BE │ │ ├── alfabeta..UTF-16.LE │ │ ├── alfabeta..UTF-32.BE │ │ ├── alfabeta..UTF-32.LE │ │ ├── alfabeta..UTF-8 │ │ └── suntzus │ ├── tis-620.c │ ├── tscii.c │ ├── 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-to.c │ ├── tst-table.sh │ ├── tst-tables.sh │ ├── uhc.c │ ├── unicode.c │ ├── utf-16.c │ ├── utf-32.c │ ├── utf-7.c │ └── viscii.c ├── include │ ├── aio.h │ ├── aliases.h │ ├── alloc_buffer.h │ ├── alloca.h │ ├── allocate_once.h │ ├── ar.h │ ├── argp-fmtstream.h │ ├── argp.h │ ├── argz.h │ ├── arpa │ │ ├── ftp.h │ │ ├── inet.h │ │ ├── nameser.h │ │ ├── nameser_compat.h │ │ ├── telnet.h │ │ └── tftp.h │ ├── array_length.h │ ├── assert.h │ ├── atomic.h │ ├── bits │ │ ├── argp-ldbl.h │ │ ├── cmathcalls.h │ │ ├── cpu-set.h │ │ ├── dlfcn.h │ │ ├── err-ldbl.h │ │ ├── error-ldbl.h │ │ ├── error.h │ │ ├── fcntl2.h │ │ ├── getopt_core.h │ │ ├── getopt_ext.h │ │ ├── getopt_posix.h │ │ ├── locale.h │ │ ├── mathcalls-helper-functions.h │ │ ├── mathcalls-narrow.h │ │ ├── mathcalls.h │ │ ├── monetary-ldbl.h │ │ ├── mqueue2.h │ │ ├── poll2.h │ │ ├── posix1_lim.h │ │ ├── posix2_lim.h │ │ ├── printf-ldbl.h │ │ ├── select2.h │ │ ├── setjmp2.h │ │ ├── socket2.h │ │ ├── stab.def │ │ ├── statx-generic.h │ │ ├── statx.h │ │ ├── stdio-ldbl.h │ │ ├── stdio.h │ │ ├── stdio2.h │ │ ├── stdlib-float.h │ │ ├── stdlib-ldbl.h │ │ ├── stdlib.h │ │ ├── string2.h │ │ ├── string_fortified.h │ │ ├── strings_fortified.h │ │ ├── syslog-ldbl.h │ │ ├── syslog.h │ │ ├── types.h │ │ ├── types │ │ │ ├── FILE.h │ │ │ ├── __FILE.h │ │ │ ├── __fpos64_t.h │ │ │ ├── __fpos_t.h │ │ │ ├── __locale_t.h │ │ │ ├── __mbstate_t.h │ │ │ ├── __sigval_t.h │ │ │ ├── clock_t.h │ │ │ ├── clockid_t.h │ │ │ ├── cookie_io_functions_t.h │ │ │ ├── locale_t.h │ │ │ ├── mbstate_t.h │ │ │ ├── res_state.h │ │ │ ├── sig_atomic_t.h │ │ │ ├── sigset_t.h │ │ │ ├── sigval_t.h │ │ │ ├── struct_FILE.h │ │ │ ├── struct_iovec.h │ │ │ ├── struct_itimerspec.h │ │ │ ├── struct_osockaddr.h │ │ │ ├── struct_rusage.h │ │ │ ├── struct_sigstack.h │ │ │ ├── struct_statx.h │ │ │ ├── struct_statx_timestamp.h │ │ │ ├── struct_timespec.h │ │ │ ├── struct_timeval.h │ │ │ ├── struct_tm.h │ │ │ ├── time_t.h │ │ │ ├── timer_t.h │ │ │ └── wint_t.h │ │ ├── unistd.h │ │ ├── wchar-ldbl.h │ │ ├── wchar2.h │ │ ├── wctype-wchar.h │ │ └── xopen_lim.h │ ├── byteswap.h │ ├── complex.h │ ├── cpio.h │ ├── crypt.h │ ├── ctype.h │ ├── des.h │ ├── dirent.h │ ├── dlfcn.h │ ├── dso_handle.h │ ├── elf.h │ ├── endian.h │ ├── envz.h │ ├── err.h │ ├── errno.h │ ├── error.h │ ├── execinfo.h │ ├── fcntl.h │ ├── features.h │ ├── fenv.h │ ├── float.h │ ├── fmtmsg.h │ ├── fnmatch.h │ ├── fpu_control.h │ ├── fstab.h │ ├── fts.h │ ├── ftw.h │ ├── gconv.h │ ├── getopt.h │ ├── getopt_int.h │ ├── glob.h │ ├── gmp.h │ ├── gnu-versions.h │ ├── gnu │ │ ├── libc-version.h │ │ └── stubs.h │ ├── grp-merge.h │ ├── grp.h │ ├── gshadow.h │ ├── iconv.h │ ├── ifaddrs.h │ ├── ifreq.h │ ├── ifunc-impl-list.h │ ├── inline-hashtab.h │ ├── intprops.h │ ├── inttypes.h │ ├── langinfo.h │ ├── lastlog.h │ ├── libc-diag.h │ ├── libc-internal.h │ ├── libc-pointer-arith.h │ ├── libc-symbols.h │ ├── libgen.h │ ├── libintl.h │ ├── limits.h │ ├── link.h │ ├── list.h │ ├── list_t.h │ ├── locale.h │ ├── loop_unroll.h │ ├── malloc.h │ ├── math-narrow-eval.h │ ├── math.h │ ├── mcheck.h │ ├── memory.h │ ├── mntent.h │ ├── monetary.h │ ├── mqueue.h │ ├── net │ │ └── if.h │ ├── netdb.h │ ├── netgroup.h │ ├── netinet │ │ ├── ether.h │ │ ├── icmp6.h │ │ ├── igmp.h │ │ ├── in.h │ │ └── ip6.h │ ├── nl_types.h │ ├── nss.h │ ├── nsswitch.h │ ├── obstack.h │ ├── plural-exp.h │ ├── poll.h │ ├── printf.h │ ├── programs │ │ └── xmalloc.h │ ├── protocols │ │ ├── routed.h │ │ ├── rwhod.h │ │ ├── talkd.h │ │ └── timed.h │ ├── pthread.h │ ├── pty.h │ ├── pwd.h │ ├── random-bits.h │ ├── re_comp.h │ ├── regex.h │ ├── regexp.h │ ├── resolv.h │ ├── rounding-mode.h │ ├── rpc │ │ ├── auth.h │ │ ├── auth_des.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.h │ │ ├── svc_auth.h │ │ ├── types.h │ │ └── xdr.h │ ├── rpcsvc │ │ ├── bootparam.h │ │ ├── nis.h │ │ ├── nis_callback.h │ │ ├── nis_tags.h │ │ ├── nislib.h │ │ ├── yp.h │ │ ├── yp_prot.h │ │ ├── ypclnt.h │ │ └── ypupd.h │ ├── sched.h │ ├── scratch_buffer.h │ ├── search.h │ ├── set-hooks.h │ ├── setjmp.h │ ├── sgtty.h │ ├── shadow.h │ ├── shlib-compat.h │ ├── signal.h │ ├── spawn.h │ ├── stab.h │ ├── stackinfo.h │ ├── stap-probe.h │ ├── stdc-predef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdio_ext.h │ ├── stdlib.h │ ├── string.h │ ├── strings.h │ ├── stubs-prologue.h │ ├── sys │ │ ├── auxv.h │ │ ├── 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 │ │ ├── param.h │ │ ├── poll.h │ │ ├── prctl.h │ │ ├── profil.h │ │ ├── queue.h │ │ ├── random.h │ │ ├── resource.h │ │ ├── select.h │ │ ├── sem.h │ │ ├── sendfile.h │ │ ├── shm.h │ │ ├── signal.h │ │ ├── socket.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── statvfs.h │ │ ├── sysctl.h │ │ ├── sysinfo.h │ │ ├── syslog.h │ │ ├── sysmacros.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── timeb.h │ │ ├── times.h │ │ ├── ttychars.h │ │ ├── types.h │ │ ├── uio.h │ │ ├── un.h │ │ ├── unistd.h │ │ ├── utsname.h │ │ ├── vfs.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 │ ├── verify.h │ ├── wait.h │ ├── wchar.h │ ├── wctype.h │ └── wordexp.h ├── inet │ ├── Makefile │ ├── Versions │ ├── aliases.h │ ├── arpa │ │ ├── ftp.h │ │ ├── inet.h │ │ ├── telnet.h │ │ └── tftp.h │ ├── bug-if1.c │ ├── check_native.c │ ├── check_pf.c │ ├── deadline.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 │ ├── gethstbynm.c │ ├── gethstbynm2.c │ ├── gethstbynm2_r.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 │ ├── getservent.c │ ├── getservent_r.c │ ├── getsourcefilter.c │ ├── getsrvbynm.c │ ├── getsrvbynm_r.c │ ├── getsrvbypt.c │ ├── getsrvbypt_r.c │ ├── herrno-loc.c │ ├── herrno.c │ ├── htonl.c │ ├── htons.c │ ├── htontest.c │ ├── idna.c │ ├── idna_name_classify.c │ ├── if_index.c │ ├── ifaddrs.c │ ├── ifaddrs.h │ ├── ifreq.c │ ├── in6_addr.c │ ├── inet6_opt.c │ ├── inet6_option.c │ ├── inet6_rth.c │ ├── inet6_scopeid_pton.c │ ├── inet_lnaof.c │ ├── inet_mkadr.c │ ├── inet_net.c │ ├── inet_netof.c │ ├── inet_ntoa.c │ ├── net-internal.h │ ├── 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-hnto-types.c │ ├── test-ifaddrs.c │ ├── test-inet6_opt.c │ ├── test_ifindex.c │ ├── tst-checks-posix.c │ ├── tst-checks.c │ ├── tst-deadline.c │ ├── tst-ether_aton.c │ ├── tst-ether_line.c │ ├── tst-gethnm.c │ ├── tst-getni1.c │ ├── tst-getni2.c │ ├── tst-idna_name_classify.c │ ├── tst-if_index-long.c │ ├── tst-inet6_rth.c │ ├── tst-inet6_scopeid_pton.c │ ├── tst-network.c │ ├── tst-ntoa.c │ └── tst-sockaddr.c ├── intl │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── bindtextdom.c │ ├── dcgettext.c │ ├── dcigettext.c │ ├── dcngettext.c │ ├── dgettext.c │ ├── dngettext.c │ ├── eval-plural.h │ ├── 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 │ ├── ngettext.c │ ├── plural-exp.c │ ├── plural-exp.h │ ├── plural.y │ ├── po2test.awk │ ├── textdomain.c │ ├── translit.po │ ├── tst-codeset.c │ ├── tst-gettext.c │ ├── tst-gettext.sh │ ├── tst-gettext2.c │ ├── tst-gettext2.sh │ ├── tst-gettext3.c │ ├── tst-gettext4-de.po │ ├── tst-gettext4-fr.po │ ├── tst-gettext4.c │ ├── tst-gettext4.sh │ ├── tst-gettext5.c │ ├── tst-gettext6.c │ ├── tst-gettext6.sh │ ├── tst-ngettext.c │ ├── tst-translit.c │ ├── tst-translit.sh │ ├── tstcodeset.po │ ├── tstlang1.po │ └── tstlang2.po ├── io │ ├── Makefile │ ├── Versions │ ├── access.c │ ├── bits │ │ ├── fcntl2.h │ │ ├── poll2.h │ │ ├── statx-generic.h │ │ ├── statx.h │ │ └── types │ │ │ ├── struct_statx.h │ │ │ └── struct_statx_timestamp.h │ ├── bug-ftw1.c │ ├── bug-ftw2.c │ ├── bug-ftw3.c │ ├── bug-ftw4.c │ ├── bug-ftw5.c │ ├── chdir.c │ ├── chmod.c │ ├── chown.c │ ├── close.c │ ├── copy_file_range.c │ ├── creat.c │ ├── creat64.c │ ├── dup.c │ ├── dup2.c │ ├── dup3.c │ ├── euidaccess.c │ ├── faccessat.c │ ├── fchdir.c │ ├── fchmod.c │ ├── fchmodat.c │ ├── fchown.c │ ├── fchownat.c │ ├── fcntl.c │ ├── fcntl.h │ ├── fcntl64.c │ ├── flock.c │ ├── fstat.c │ ├── fstat64.c │ ├── fstatat.c │ ├── fstatat64.c │ ├── fstatfs.c │ ├── fstatfs64.c │ ├── fstatvfs.c │ ├── fstatvfs64.c │ ├── fts.c │ ├── fts.h │ ├── fts64.c │ ├── ftw.c │ ├── ftw.h │ ├── ftw64.c │ ├── ftwtest-sh │ ├── ftwtest.c │ ├── futimens.c │ ├── fxstat.c │ ├── fxstat64.c │ ├── fxstatat.c │ ├── fxstatat64.c │ ├── getcwd.c │ ├── getdirname.c │ ├── getwd.c │ ├── isatty.c │ ├── lchmod.c │ ├── lchown.c │ ├── link.c │ ├── linkat.c │ ├── lockf.c │ ├── lockf64.c │ ├── lseek.c │ ├── lseek64.c │ ├── lstat.c │ ├── lstat64.c │ ├── lxstat.c │ ├── lxstat64.c │ ├── mkdir.c │ ├── mkdirat.c │ ├── mkfifo.c │ ├── mkfifoat.c │ ├── mknod.c │ ├── mknodat.c │ ├── open.c │ ├── open64.c │ ├── open64_2.c │ ├── open_2.c │ ├── openat.c │ ├── openat64.c │ ├── openat64_2.c │ ├── openat_2.c │ ├── pipe.c │ ├── pipe2.c │ ├── poll.c │ ├── poll.h │ ├── posix_fadvise.c │ ├── posix_fadvise64.c │ ├── posix_fallocate.c │ ├── posix_fallocate64.c │ ├── ppoll.c │ ├── pwd.c │ ├── read.c │ ├── readlink.c │ ├── readlinkat.c │ ├── rmdir.c │ ├── sendfile.c │ ├── sendfile64.c │ ├── stat.c │ ├── stat64.c │ ├── statfs.c │ ├── statfs64.c │ ├── statvfs.c │ ├── statvfs64.c │ ├── statx.c │ ├── statx_generic.c │ ├── symlink.c │ ├── symlinkat.c │ ├── sys │ │ ├── fcntl.h │ │ ├── poll.h │ │ ├── sendfile.h │ │ ├── stat.h │ │ ├── statfs.h │ │ ├── statvfs.h │ │ └── vfs.h │ ├── test-lfs.c │ ├── test-stat.c │ ├── test-stat2.c │ ├── test-utime.c │ ├── tst-copy_file_range.c │ ├── tst-faccessat.c │ ├── tst-fchmodat.c │ ├── tst-fchownat.c │ ├── tst-fcntl.c │ ├── tst-fstatat.c │ ├── tst-fts-lfs.c │ ├── tst-fts.c │ ├── tst-ftw-lnk.c │ ├── tst-futimesat.c │ ├── tst-getcwd-abspath.c │ ├── tst-getcwd.c │ ├── tst-linkat.c │ ├── tst-lockf.c │ ├── tst-mkdirat.c │ ├── tst-mkfifoat.c │ ├── tst-mknodat.c │ ├── tst-open-tmpfile.c │ ├── tst-openat.c │ ├── tst-posix_fallocate-common.c │ ├── tst-posix_fallocate.c │ ├── tst-posix_fallocate64.c │ ├── tst-readlinkat.c │ ├── tst-renameat.c │ ├── tst-statvfs.c │ ├── tst-statx.c │ ├── tst-symlinkat.c │ ├── tst-ttyname_r.c │ ├── tst-unlinkat.c │ ├── ttyname.c │ ├── ttyname_r.c │ ├── umask.c │ ├── unlink.c │ ├── unlinkat.c │ ├── utime.c │ ├── utime.h │ ├── utimensat.c │ ├── write.c │ ├── xmknod.c │ ├── xmknodat.c │ ├── xstat.c │ └── xstat64.c ├── libc-abis ├── libio │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── __fbufsize.c │ ├── __flbf.c │ ├── __fpending.c │ ├── __fpurge.c │ ├── __freadable.c │ ├── __freading.c │ ├── __fsetlocking.c │ ├── __fwritable.c │ ├── __fwriting.c │ ├── bits │ │ ├── stdio-ldbl.h │ │ ├── stdio.h │ │ ├── stdio2.h │ │ └── types │ │ │ ├── FILE.h │ │ │ ├── __FILE.h │ │ │ ├── __fpos64_t.h │ │ │ ├── __fpos_t.h │ │ │ ├── cookie_io_functions_t.h │ │ │ └── struct_FILE.h │ ├── bug-fopena+.c │ ├── bug-fseek.c │ ├── bug-ftell.c │ ├── bug-memstream1.c │ ├── bug-mmap-fflush.c │ ├── bug-rewind.c │ ├── bug-rewind2.c │ ├── bug-ungetc.c │ ├── bug-ungetc2.c │ ├── bug-ungetc3.c │ ├── bug-ungetc4.c │ ├── bug-ungetwc1.c │ ├── bug-ungetwc2.c │ ├── bug-wfflush.c │ ├── bug-wmemstream1.c │ ├── bug-wsetpos.c │ ├── clearerr.c │ ├── clearerr_u.c │ ├── fcloseall.c │ ├── feof.c │ ├── feof_u.c │ ├── ferror.c │ ├── ferror_u.c │ ├── filedoalloc.c │ ├── fileno.c │ ├── fileops.c │ ├── fmemopen.c │ ├── fputc.c │ ├── fputc_u.c │ ├── fputwc.c │ ├── fputwc_u.c │ ├── freopen.c │ ├── freopen64.c │ ├── fseek.c │ ├── fseeko.c │ ├── fseeko64.c │ ├── ftello.c │ ├── ftello64.c │ ├── fwide.c │ ├── fwprintf.c │ ├── fwscanf.c │ ├── genops.c │ ├── getc.c │ ├── getc_u.c │ ├── getchar.c │ ├── getchar_u.c │ ├── getwc.c │ ├── getwc_u.c │ ├── getwchar.c │ ├── getwchar_u.c │ ├── iofclose.c │ ├── iofdopen.c │ ├── iofflush.c │ ├── iofflush_u.c │ ├── iofgetpos.c │ ├── iofgetpos64.c │ ├── iofgets.c │ ├── iofgets_u.c │ ├── iofgetws.c │ ├── iofgetws_u.c │ ├── iofopen.c │ ├── iofopen64.c │ ├── iofopncook.c │ ├── iofputs.c │ ├── iofputs_u.c │ ├── iofputws.c │ ├── iofputws_u.c │ ├── iofread.c │ ├── iofread_u.c │ ├── iofsetpos.c │ ├── iofsetpos64.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 │ ├── memstream.c │ ├── obprintf.c │ ├── oldfileops.c │ ├── oldfmemopen.c │ ├── oldiofclose.c │ ├── oldiofdopen.c │ ├── oldiofgetpos.c │ ├── oldiofgetpos64.c │ ├── oldiofopen.c │ ├── oldiofsetpos.c │ ├── oldiofsetpos64.c │ ├── oldiopopen.c │ ├── oldpclose.c │ ├── oldstdfiles.c │ ├── oldtmpfile.c │ ├── pclose.c │ ├── peekc.c │ ├── putc.c │ ├── putc_u.c │ ├── putchar.c │ ├── putchar_u.c │ ├── putwc.c │ ├── putwc_u.c │ ├── putwchar.c │ ├── putwchar_u.c │ ├── readline.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-bz22415.c │ ├── tst-bz24051.c │ ├── tst-bz24153.c │ ├── tst-bz24228.c │ ├── tst-bz24228.map │ ├── tst-eof.c │ ├── tst-ext.c │ ├── tst-ext2.c │ ├── tst-fgetc-after-eof.c │ ├── tst-fgetwc.c │ ├── tst-fgetwc.input │ ├── tst-fgetws.c │ ├── tst-fopenloc.c │ ├── tst-fopenloc2.c │ ├── tst-fputws.c │ ├── tst-freopen.c │ ├── tst-fseek.c │ ├── tst-ftell-active-handler.c │ ├── tst-ftell-append.c │ ├── tst-ftell-partial-wide.c │ ├── tst-fwrite-error.c │ ├── tst-memstream.h │ ├── tst-memstream1.c │ ├── tst-memstream2.c │ ├── tst-memstream3.c │ ├── tst-memstream4.c │ ├── tst-mmap-eofsync.c │ ├── tst-mmap-fflushsync.c │ ├── tst-mmap-offend.c │ ├── tst-mmap-setvbuf.c │ ├── tst-mmap2-eofsync.c │ ├── tst-popen1.c │ ├── tst-readline.c │ ├── tst-setvbuf1.c │ ├── tst-sprintf-chk-ub.c │ ├── tst-sprintf-ub.c │ ├── tst-sscanf.c │ ├── tst-swscanf.c │ ├── tst-ungetwc1.c │ ├── tst-ungetwc2.c │ ├── tst-vtables-common.c │ ├── tst-vtables-interposed.c │ ├── tst-vtables.c │ ├── tst-wfile-sync.c │ ├── tst-wfile-sync.input │ ├── tst-widetext.c │ ├── tst-widetext.input │ ├── tst-wmemstream1.c │ ├── tst-wmemstream2.c │ ├── tst-wmemstream3.c │ ├── tst-wmemstream4.c │ ├── tst_getwc.c │ ├── tst_getwc.input │ ├── tst_putwc.c │ ├── tst_swprintf.c │ ├── tst_swscanf.c │ ├── tst_wprintf.c │ ├── tst_wprintf2.c │ ├── tst_wscanf.c │ ├── tst_wscanf.input │ ├── vasprintf.c │ ├── vscanf.c │ ├── vsnprintf.c │ ├── vswprintf.c │ ├── vtables.c │ ├── vwprintf.c │ ├── vwscanf.c │ ├── wfiledoalloc.c │ ├── wfileops.c │ ├── wgenops.c │ ├── wmemstream.c │ ├── wprintf.c │ ├── wscanf.c │ └── wstrops.c ├── libof-iterator.mk ├── locale │ ├── C-address.c │ ├── C-collate.c │ ├── C-ctype.c │ ├── C-identification.c │ ├── C-measurement.c │ ├── C-messages.c │ ├── C-monetary.c │ ├── C-name.c │ ├── C-numeric.c │ ├── C-paper.c │ ├── C-telephone.c │ ├── C-time.c │ ├── C-translit.h.in │ ├── C_name.c │ ├── Makefile │ ├── SYS_libc.c │ ├── Versions │ ├── bits │ │ ├── locale.h │ │ └── types │ │ │ ├── __locale_t.h │ │ │ └── locale_t.h │ ├── broken_cur_max.c │ ├── categories.def │ ├── coll-lookup.c │ ├── coll-lookup.h │ ├── duplocale.c │ ├── elem-hash.h │ ├── findlocale.c │ ├── freelocale.c │ ├── gen-translit.py │ ├── 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 │ ├── locale.h │ ├── localeconv.c │ ├── localeinfo.h │ ├── localename.c │ ├── locarchive.h │ ├── mb_cur_max.c │ ├── newlocale.c │ ├── nl_langinfo.c │ ├── nl_langinfo_l.c │ ├── outdigits.h │ ├── outdigitswc.h │ ├── programs │ │ ├── 3level.h │ │ ├── charmap-dir.c │ │ ├── charmap-dir.h │ │ ├── charmap-kw.gperf │ │ ├── charmap-kw.h │ │ ├── charmap.c │ │ ├── charmap.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-spec.c │ │ ├── locale.c │ │ ├── localedef.c │ │ ├── localedef.h │ │ ├── locarchive.c │ │ ├── locfile-kw.gperf │ │ ├── locfile-kw.h │ │ ├── locfile-token.h │ │ ├── locfile.c │ │ ├── locfile.h │ │ ├── record-status.c │ │ ├── record-status.h │ │ ├── repertoire.c │ │ ├── repertoire.h │ │ ├── simple-hash.c │ │ ├── simple-hash.h │ │ ├── xmalloc.c │ │ └── xstrdup.c │ ├── setlocale.c │ ├── strlen-hash.h │ ├── tst-C-locale.c │ ├── tst-duplocale.c │ ├── tst-locale-locpath.sh │ ├── tst-locname.c │ ├── uselocale.c │ ├── weight.h │ ├── weightwc.h │ └── xlocale.c ├── localedata │ ├── Depend │ ├── Makefile │ ├── README │ ├── SUPPORTED │ ├── am_ET.UTF-8.in │ ├── az_AZ.UTF-8.in │ ├── be_BY.UTF-8.in │ ├── ber_DZ.UTF-8.in │ ├── ber_MA.UTF-8.in │ ├── bg_BG.UTF-8.in │ ├── br_FR.UTF-8.in │ ├── bs_BA.UTF-8.in │ ├── bug-iconv-trans.c │ ├── bug-setlocale1-static.c │ ├── bug-setlocale1.c │ ├── bug-usesetlocale.c │ ├── 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 │ │ ├── GB2312 │ │ ├── GBK │ │ ├── GB_1988-80 │ │ ├── GEORGIAN-ACADEMY │ │ ├── GEORGIAN-PS │ │ ├── GOST_19768-74 │ │ ├── GREEK-CCITT │ │ ├── GREEK7 │ │ ├── GREEK7-OLD │ │ ├── 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 │ │ ├── IBM858 │ │ ├── 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-8859-1 │ │ ├── ISO-8859-10 │ │ ├── ISO-8859-11 │ │ ├── ISO-8859-13 │ │ ├── ISO-8859-14 │ │ ├── ISO-8859-15 │ │ ├── ISO-8859-16 │ │ ├── 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-IR-197 │ │ ├── ISO-IR-209 │ │ ├── ISO-IR-90 │ │ ├── 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,GL │ │ ├── ISO_8859-SUPP │ │ ├── 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 │ │ ├── MAC-IS │ │ ├── MAC-SAMI │ │ ├── MAC-UK │ │ ├── MACINTOSH │ │ ├── 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 │ ├── cmn_TW.UTF-8.in │ ├── collate-test.c │ ├── crh_UA.UTF-8.in │ ├── cs_CZ.UTF-8.in │ ├── cs_CZ.in │ ├── csb_PL.UTF-8.in │ ├── cv_RU.UTF-8.in │ ├── cy_GB.UTF-8.in │ ├── da_DK.ISO-8859-1.in │ ├── de_DE.ISO-8859-1.in │ ├── dsb_DE.UTF-8.in │ ├── dump-ctype.c │ ├── dz_BT.UTF-8.in │ ├── en_US.ISO-8859-1.in │ ├── en_US.UTF-8.in │ ├── eo.UTF-8.in │ ├── es_ES.UTF-8.in │ ├── et_EE.UTF-8.in │ ├── fa_IR.UTF-8.in │ ├── fi_FI.UTF-8.in │ ├── fil_PH.UTF-8.in │ ├── fr_CA.UTF-8.in │ ├── fr_FR.UTF-8.in │ ├── fur_IT.UTF-8.in │ ├── gen-locale.sh │ ├── gez_ER.UTF-8@abegede.in │ ├── ha_NG.UTF-8.in │ ├── hr_HR.ISO-8859-2.in │ ├── hr_HR.UTF-8.in │ ├── hsb_DE.UTF-8.in │ ├── hu_HU.UTF-8.in │ ├── ig_NG.UTF-8.in │ ├── ik_CA.UTF-8.in │ ├── is_IS.UTF-8.in │ ├── kk_KZ.UTF-8.in │ ├── ku_TR.UTF-8.in │ ├── ky_KG.UTF-8.in │ ├── ln_CD.UTF-8.in │ ├── locales │ │ ├── POSIX │ │ ├── aa_DJ │ │ ├── aa_ER │ │ ├── aa_ER@saaho │ │ ├── aa_ET │ │ ├── af_ZA │ │ ├── agr_PE │ │ ├── ak_GH │ │ ├── am_ET │ │ ├── an_ES │ │ ├── anp_IN │ │ ├── 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_SS │ │ ├── ar_SY │ │ ├── ar_TN │ │ ├── ar_YE │ │ ├── as_IN │ │ ├── ast_ES │ │ ├── ayc_PE │ │ ├── az_AZ │ │ ├── az_IR │ │ ├── be_BY │ │ ├── be_BY@latin │ │ ├── bem_ZM │ │ ├── ber_DZ │ │ ├── ber_MA │ │ ├── bg_BG │ │ ├── bhb_IN │ │ ├── bho_IN │ │ ├── bho_NP │ │ ├── bi_VU │ │ ├── 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_ES@valencia │ │ ├── ca_FR │ │ ├── ca_IT │ │ ├── ce_RU │ │ ├── chr_US │ │ ├── cmn_TW │ │ ├── cns11643_stroke │ │ ├── crh_UA │ │ ├── cs_CZ │ │ ├── csb_PL │ │ ├── cv_RU │ │ ├── cy_GB │ │ ├── da_DK │ │ ├── de_AT │ │ ├── de_AT@euro │ │ ├── de_BE │ │ ├── de_BE@euro │ │ ├── de_CH │ │ ├── de_DE │ │ ├── de_DE@euro │ │ ├── de_IT │ │ ├── de_LI │ │ ├── de_LU │ │ ├── de_LU@euro │ │ ├── doi_IN │ │ ├── dsb_DE │ │ ├── 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_IL │ │ ├── en_IN │ │ ├── en_NG │ │ ├── en_NZ │ │ ├── en_PH │ │ ├── en_SC │ │ ├── en_SG │ │ ├── en_US │ │ ├── en_ZA │ │ ├── en_ZM │ │ ├── en_ZW │ │ ├── eo │ │ ├── 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 │ │ ├── hak_TW │ │ ├── he_IL │ │ ├── hi_IN │ │ ├── hif_FJ │ │ ├── hne_IN │ │ ├── hr_HR │ │ ├── hsb_DE │ │ ├── ht_HT │ │ ├── hu_HU │ │ ├── hy_AM │ │ ├── i18n │ │ ├── i18n_ctype │ │ ├── ia_FR │ │ ├── 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 │ │ ├── ja_JP │ │ ├── ka_GE │ │ ├── kab_DZ │ │ ├── kk_KZ │ │ ├── kl_GL │ │ ├── km_KH │ │ ├── kn_IN │ │ ├── ko_KR │ │ ├── kok_IN │ │ ├── ks_IN │ │ ├── ks_IN@devanagari │ │ ├── ku_TR │ │ ├── kw_GB │ │ ├── ky_KG │ │ ├── lb_LU │ │ ├── lg_UG │ │ ├── li_BE │ │ ├── li_NL │ │ ├── lij_IT │ │ ├── ln_CD │ │ ├── lo_LA │ │ ├── lt_LT │ │ ├── lv_LV │ │ ├── lzh_TW │ │ ├── mag_IN │ │ ├── mai_IN │ │ ├── mai_NP │ │ ├── mfe_MU │ │ ├── mg_MG │ │ ├── mhr_RU │ │ ├── mi_NZ │ │ ├── miq_NI │ │ ├── mjw_IN │ │ ├── mk_MK │ │ ├── ml_IN │ │ ├── mn_MN │ │ ├── mni_IN │ │ ├── mr_IN │ │ ├── ms_MY │ │ ├── mt_MT │ │ ├── my_MM │ │ ├── nan_TW │ │ ├── nan_TW@latin │ │ ├── nb_NO │ │ ├── nds_DE │ │ ├── nds_NL │ │ ├── ne_NP │ │ ├── nhn_MX │ │ ├── niu_NU │ │ ├── niu_NZ │ │ ├── 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 │ │ ├── pa_PK │ │ ├── pap_AW │ │ ├── pap_CW │ │ ├── pl_PL │ │ ├── ps_AF │ │ ├── pt_BR │ │ ├── pt_PT │ │ ├── pt_PT@euro │ │ ├── quz_PE │ │ ├── raj_IN │ │ ├── ro_RO │ │ ├── ru_RU │ │ ├── ru_UA │ │ ├── rw_RW │ │ ├── sa_IN │ │ ├── sah_RU │ │ ├── sat_IN │ │ ├── sc_IT │ │ ├── sd_IN │ │ ├── sd_IN@devanagari │ │ ├── se_NO │ │ ├── sgs_LT │ │ ├── shn_MM │ │ ├── shs_CA │ │ ├── si_LK │ │ ├── sid_ET │ │ ├── sk_SK │ │ ├── sl_SI │ │ ├── sm_WS │ │ ├── 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 │ │ ├── szl_PL │ │ ├── ta_IN │ │ ├── ta_LK │ │ ├── tcy_IN │ │ ├── te_IN │ │ ├── tg_TJ │ │ ├── th_TH │ │ ├── the_NP │ │ ├── ti_ER │ │ ├── ti_ET │ │ ├── tig_ER │ │ ├── tk_TM │ │ ├── tl_PH │ │ ├── tn_ZA │ │ ├── to_TO │ │ ├── tpi_PG │ │ ├── tr_CY │ │ ├── tr_TR │ │ ├── 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 │ │ ├── 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 │ │ ├── yuw_PG │ │ ├── zh_CN │ │ ├── zh_HK │ │ ├── zh_SG │ │ ├── zh_TW │ │ └── zu_ZA │ ├── lt_LT.UTF-8.in │ ├── lv_LV.UTF-8.in │ ├── mi_NZ.UTF-8.in │ ├── ml_IN.UTF-8.in │ ├── mn_MN.UTF-8.in │ ├── mr_IN.UTF-8.in │ ├── mt_MT.UTF-8.in │ ├── nan_TW.UTF-8@latin.in │ ├── nb_NO.UTF-8.in │ ├── om_KE.UTF-8.in │ ├── os_RU.UTF-8.in │ ├── pl_PL.UTF-8.in │ ├── ps_AF.UTF-8.in │ ├── ro_RO.UTF-8.in │ ├── ru_RU.UTF-8.in │ ├── sah_RU.UTF-8.in │ ├── sc_IT.UTF-8.in │ ├── se_NO.UTF-8.in │ ├── show-ucs-data.c │ ├── si_LK.UTF-8.in │ ├── sort-test.sh │ ├── sq_AL.UTF-8.in │ ├── sr_RS.UTF-8.in │ ├── sv_SE.ISO-8859-1.in │ ├── sv_SE.UTF-8.in │ ├── szl_PL.UTF-8.in │ ├── tests-mbwc │ │ ├── dat_isw-funcs.h │ │ ├── dat_iswalnum.c │ │ ├── dat_iswalpha.c │ │ ├── dat_iswcntrl.c │ │ ├── dat_iswctype.c │ │ ├── dat_iswdigit.c │ │ ├── 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_tow-funcs.h │ │ ├── dat_towctrans.c │ │ ├── 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 │ ├── 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 │ ├── tg_TJ.UTF-8.in │ ├── th_TH.in │ ├── tk_TM.UTF-8.in │ ├── tr_TR.UTF-8.in │ ├── tst-ctype-de_DE.ISO-8859-1.in │ ├── tst-ctype.c │ ├── tst-ctype.sh │ ├── tst-digits.c │ ├── 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.c │ ├── tst-fmon.data │ ├── tst-fmon.sh │ ├── tst-langinfo-newlocale-static.c │ ├── tst-langinfo-newlocale.c │ ├── tst-langinfo-setlocale-static.c │ ├── tst-langinfo-setlocale.c │ ├── tst-langinfo-static.c │ ├── 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-numeric.c │ ├── tst-numeric.data │ ├── tst-numeric.sh │ ├── tst-rpmatch.c │ ├── tst-rpmatch.sh │ ├── tst-setlocale.c │ ├── tst-setlocale2.c │ ├── tst-setlocale3.c │ ├── tst-sscanf.c │ ├── tst-strfmon1.c │ ├── tst-trans.c │ ├── tst-trans.sh │ ├── tst-wctype.c │ ├── tst-wctype.input │ ├── tst-xlocale1.c │ ├── tst-xlocale2.c │ ├── tt_RU.UTF-8.in │ ├── tt_RU.UTF-8@iqtelif.in │ ├── ug_CN.UTF-8.in │ ├── uk_UA.UTF-8.in │ ├── unicode-gen │ │ ├── DerivedCoreProperties.txt │ │ ├── EastAsianWidth.txt │ │ ├── Makefile │ │ ├── PropList.txt │ │ ├── UnicodeData.txt │ │ ├── ctype_compatibility.py │ │ ├── ctype_compatibility_test_cases.py │ │ ├── gen_translit_circle.py │ │ ├── gen_translit_cjk_compat.py │ │ ├── gen_translit_combining.py │ │ ├── gen_translit_compat.py │ │ ├── gen_translit_font.py │ │ ├── gen_translit_fraction.py │ │ ├── gen_unicode_ctype.py │ │ ├── unicode-license.txt │ │ ├── unicode_utils.py │ │ ├── utf8_compatibility.py │ │ └── utf8_gen.py │ ├── uz_UZ.UTF-8.in │ ├── vi_VN.UTF-8.in │ ├── xfrm-test.c │ ├── yi_US.UTF-8.in │ ├── yo_NG.UTF-8.in │ └── zh_CN.UTF-8.in ├── login │ ├── Makefile │ ├── Versions │ ├── endutxent.c │ ├── forkpty.c │ ├── getlogin.c │ ├── getlogin_r.c │ ├── getlogin_r_chk.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 │ ├── openpty.c │ ├── programs │ │ ├── pt_chown.c │ │ └── utmpdump.c │ ├── ptsname.c │ ├── ptsname_r_chk.c │ ├── pty.h │ ├── pututxline.c │ ├── setlogin.c │ ├── setutxent.c │ ├── tst-getlogin.c │ ├── tst-grantpt.c │ ├── tst-ptsname.c │ ├── tst-utmp.c │ ├── tst-utmpx.c │ ├── unlockpt.c │ ├── updwtmp.c │ ├── updwtmpx.c │ ├── utmp-private.h │ ├── utmp.h │ ├── utmp_file.c │ ├── utmpname.c │ └── utmpxname.c ├── mach │ ├── Machrules │ ├── Makefile │ ├── Versions │ ├── devstream.c │ ├── err_boot.sub │ ├── err_ipc.sub │ ├── err_kern.sub │ ├── err_mach.sub │ ├── err_server.sub │ ├── err_us.sub │ ├── error_compat.c │ ├── errorlib.h │ ├── errstring.c │ ├── errsystems.awk │ ├── lock-intern.h │ ├── lowlevellock.h │ ├── mach.h │ ├── mach │ │ ├── error.h │ │ ├── mach.h │ │ ├── mach_traps.h │ │ └── mig_support.h │ ├── mach_error.c │ ├── mach_error.h │ ├── mach_init.c │ ├── mach_init.h │ ├── mig-alloc.c │ ├── mig-dealloc.c │ ├── mig-reply.c │ ├── mig_strncpy.c │ ├── msg-destroy.c │ ├── msg.c │ ├── msgserver.c │ ├── mutex-init.c │ ├── mutex-solid.c │ ├── setup-thread.c │ ├── shortcut.awk │ ├── spin-lock.c │ ├── spin-lock.h │ ├── spin-solid.c │ ├── stack_chk_fail_local.c │ └── syscalls.awk ├── malloc │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── alloc_buffer_alloc_array.c │ ├── alloc_buffer_allocate.c │ ├── alloc_buffer_copy_bytes.c │ ├── alloc_buffer_copy_string.c │ ├── alloc_buffer_create_failure.c │ ├── arena.c │ ├── dynarray-skeleton.c │ ├── dynarray.h │ ├── dynarray_at_failure.c │ ├── dynarray_emplace_enlarge.c │ ├── dynarray_finalize.c │ ├── dynarray_resize.c │ ├── dynarray_resize_clear.c │ ├── hooks.c │ ├── malloc-hooks.h │ ├── malloc-internal.h │ ├── malloc.c │ ├── malloc.h │ ├── mallocbug.c │ ├── mcheck-init.c │ ├── mcheck.c │ ├── mcheck.h │ ├── memusage.c │ ├── memusage.sh │ ├── memusagestat.c │ ├── morecore.c │ ├── mtrace.c │ ├── mtrace.pl │ ├── obstack.c │ ├── obstack.h │ ├── reallocarray.c │ ├── scratch_buffer_grow.c │ ├── scratch_buffer_grow_preserve.c │ ├── scratch_buffer_set_array_size.c │ ├── set-freeres.c │ ├── thread-freeres.c │ ├── tst-alloc_buffer.c │ ├── tst-calloc.c │ ├── tst-dynarray-at-fail.c │ ├── tst-dynarray-fail.c │ ├── tst-dynarray-shared.h │ ├── tst-dynarray.c │ ├── tst-interpose-aux-nothread.c │ ├── tst-interpose-aux-thread.c │ ├── tst-interpose-aux.c │ ├── tst-interpose-aux.h │ ├── tst-interpose-nothread.c │ ├── tst-interpose-skeleton.c │ ├── tst-interpose-static-nothread.c │ ├── tst-interpose-static-thread.c │ ├── tst-interpose-thread.c │ ├── tst-malloc-backtrace.c │ ├── tst-malloc-fork-deadlock.c │ ├── tst-malloc-stats-cancellation.c │ ├── tst-malloc-tcache-leak.c │ ├── tst-malloc-thread-exit.c │ ├── tst-malloc-thread-fail.c │ ├── tst-malloc-too-large.c │ ├── tst-malloc-usable-static-tunables.c │ ├── tst-malloc-usable-static.c │ ├── tst-malloc-usable-tunables.c │ ├── tst-malloc-usable.c │ ├── tst-malloc.c │ ├── tst-malloc_info.c │ ├── tst-mallocfork.c │ ├── tst-mallocfork2.c │ ├── tst-mallocstate.c │ ├── tst-mallopt.c │ ├── tst-mcheck.c │ ├── tst-memalign.c │ ├── tst-mtrace.c │ ├── tst-mtrace.sh │ ├── tst-obstack.c │ ├── tst-posix_memalign.c │ ├── tst-pvalloc.c │ ├── tst-realloc.c │ ├── tst-reallocarray.c │ ├── tst-scratch_buffer.c │ ├── tst-tcfree1.c │ ├── tst-tcfree2.c │ ├── tst-tcfree3.c │ ├── tst-trim1.c │ └── tst-valloc.c ├── manual │ ├── Makefile │ ├── README.pretty-printers │ ├── README.tunables │ ├── argp.texi │ ├── arith.texi │ ├── charset.texi │ ├── check-safety.sh │ ├── conf.texi │ ├── contrib.texi │ ├── creature.texi │ ├── crypt.texi │ ├── ctype.texi │ ├── debug.texi │ ├── dir │ ├── errno.texi │ ├── examples │ │ ├── README │ │ ├── add.c │ │ ├── argp-ex1.c │ │ ├── argp-ex2.c │ │ ├── argp-ex3.c │ │ ├── argp-ex4.c │ │ ├── atexit.c │ │ ├── db.c │ │ ├── dir.c │ │ ├── dir2.c │ │ ├── execinfo.c │ │ ├── filecli.c │ │ ├── filesrv.c │ │ ├── fmtmsgexpl.c │ │ ├── genpass.c │ │ ├── inetcli.c │ │ ├── inetsrv.c │ │ ├── isockad.c │ │ ├── longopt.c │ │ ├── mbstouwcs.c │ │ ├── memopen.c │ │ ├── memstrm.c │ │ ├── mkdirent.c │ │ ├── mkfsock.c │ │ ├── mkisock.c │ │ ├── mygetpass.c │ │ ├── ofdlocks.c │ │ ├── pipe.c │ │ ├── popen.c │ │ ├── rprintf.c │ │ ├── search.c │ │ ├── select.c │ │ ├── setjmp.c │ │ ├── sigh1.c │ │ ├── sigusr.c │ │ ├── stpcpy.c │ │ ├── strdupa.c │ │ ├── strftim.c │ │ ├── subopt.c │ │ ├── swapcontext.c │ │ ├── termios.c │ │ ├── testopt.c │ │ ├── testpass.c │ │ ├── timeval_subtract.c │ │ └── twalk.c │ ├── fdl-1.3.texi │ ├── filesys.texi │ ├── freemanuals.texi │ ├── getopt.texi │ ├── header.texi │ ├── install-plain.texi │ ├── install.texi │ ├── intro.texi │ ├── io.texi │ ├── ipc.texi │ ├── job.texi │ ├── lang.texi │ ├── lgpl-2.1.texi │ ├── libc-texinfo.sh │ ├── libc.texinfo │ ├── libcbook.texi │ ├── libdl.texi │ ├── llio.texi │ ├── locale.texi │ ├── macros.texi │ ├── maint.texi │ ├── math.texi │ ├── memory.texi │ ├── message.texi │ ├── nss.texi │ ├── nsswitch.texi │ ├── pattern.texi │ ├── pipe.texi │ ├── platform.texi │ ├── probes.texi │ ├── process.texi │ ├── resource.texi │ ├── search.texi │ ├── setjmp.texi │ ├── signal.texi │ ├── socket.texi │ ├── startup.texi │ ├── stdio-fp.c │ ├── stdio.texi │ ├── string.texi │ ├── summary.pl │ ├── sysinfo.texi │ ├── syslog.texi │ ├── terminal.texi │ ├── texinfo.tex │ ├── texis.awk │ ├── threads.texi │ ├── time.texi │ ├── tsort.awk │ ├── tunables.texi │ ├── users.texi │ └── xtract-typefun.awk ├── math │ ├── Makefile │ ├── README.libm-test │ ├── Versions │ ├── atest-exp.c │ ├── atest-exp2.c │ ├── atest-sincos.c │ ├── auto-libm-test-in │ ├── auto-libm-test-out-acos │ ├── auto-libm-test-out-acosh │ ├── auto-libm-test-out-asin │ ├── auto-libm-test-out-asinh │ ├── auto-libm-test-out-atan │ ├── auto-libm-test-out-atan2 │ ├── auto-libm-test-out-atanh │ ├── auto-libm-test-out-cabs │ ├── auto-libm-test-out-cacos │ ├── auto-libm-test-out-cacosh │ ├── auto-libm-test-out-carg │ ├── auto-libm-test-out-casin │ ├── auto-libm-test-out-casinh │ ├── auto-libm-test-out-catan │ ├── auto-libm-test-out-catanh │ ├── auto-libm-test-out-cbrt │ ├── auto-libm-test-out-ccos │ ├── auto-libm-test-out-ccosh │ ├── auto-libm-test-out-cexp │ ├── auto-libm-test-out-clog │ ├── auto-libm-test-out-clog10 │ ├── auto-libm-test-out-cos │ ├── auto-libm-test-out-cosh │ ├── auto-libm-test-out-cpow │ ├── auto-libm-test-out-csin │ ├── auto-libm-test-out-csinh │ ├── auto-libm-test-out-csqrt │ ├── auto-libm-test-out-ctan │ ├── auto-libm-test-out-ctanh │ ├── auto-libm-test-out-erf │ ├── auto-libm-test-out-erfc │ ├── auto-libm-test-out-exp │ ├── auto-libm-test-out-exp10 │ ├── auto-libm-test-out-exp2 │ ├── auto-libm-test-out-expm1 │ ├── auto-libm-test-out-fma │ ├── auto-libm-test-out-hypot │ ├── auto-libm-test-out-j0 │ ├── auto-libm-test-out-j1 │ ├── auto-libm-test-out-jn │ ├── auto-libm-test-out-lgamma │ ├── auto-libm-test-out-log │ ├── auto-libm-test-out-log10 │ ├── auto-libm-test-out-log1p │ ├── auto-libm-test-out-log2 │ ├── auto-libm-test-out-narrow-add │ ├── auto-libm-test-out-narrow-div │ ├── auto-libm-test-out-narrow-mul │ ├── auto-libm-test-out-narrow-sub │ ├── auto-libm-test-out-pow │ ├── auto-libm-test-out-sin │ ├── auto-libm-test-out-sincos │ ├── auto-libm-test-out-sinh │ ├── auto-libm-test-out-sqrt │ ├── auto-libm-test-out-tan │ ├── auto-libm-test-out-tanh │ ├── auto-libm-test-out-tgamma │ ├── auto-libm-test-out-y0 │ ├── auto-libm-test-out-y1 │ ├── auto-libm-test-out-yn │ ├── basic-test.c │ ├── bits │ │ ├── cmathcalls.h │ │ ├── mathcalls-helper-functions.h │ │ ├── mathcalls-narrow.h │ │ └── mathcalls.h │ ├── bug-nextafter.c │ ├── bug-nexttoward.c │ ├── bug-tgmath1.c │ ├── cabs_template.c │ ├── carg_template.c │ ├── cimag_template.c │ ├── complex.h │ ├── conj_template.c │ ├── creal_template.c │ ├── divtc3.c │ ├── e_exp10.c │ ├── e_exp10f.c │ ├── e_exp10l.c │ ├── e_exp2_template.c │ ├── e_scalb.c │ ├── e_scalbf.c │ ├── e_scalbl.c │ ├── fclrexcpt.c │ ├── fedisblxcpt.c │ ├── feenablxcpt.c │ ├── fegetenv.c │ ├── fegetexcept.c │ ├── fegetmode.c │ ├── fegetround.c │ ├── feholdexcpt.c │ ├── fenv.h │ ├── fesetenv.c │ ├── fesetexcept.c │ ├── fesetmode.c │ ├── fesetround.c │ ├── fetestexceptflag.c │ ├── feupdateenv.c │ ├── fgetexcptflg.c │ ├── finclude │ │ └── math-vector-fortran.h │ ├── fpu_control.c │ ├── fraiseexcpt.c │ ├── fromfp.h │ ├── fsetexcptflg.c │ ├── ftestexcept.c │ ├── gen-auto-libm-tests.c │ ├── gen-fromfp-tests-inputs │ ├── gen-fromfp-tests.py │ ├── gen-libm-test.py │ ├── gen-tgmath-tests.py │ ├── k_casinh_template.c │ ├── k_sincosl.c │ ├── lgamma-compat.h │ ├── libm-test-acos.inc │ ├── libm-test-acosh.inc │ ├── libm-test-asin.inc │ ├── libm-test-asinh.inc │ ├── libm-test-atan.inc │ ├── libm-test-atan2.inc │ ├── libm-test-atanh.inc │ ├── libm-test-cabs.inc │ ├── libm-test-cacos.inc │ ├── libm-test-cacosh.inc │ ├── libm-test-canonicalize.inc │ ├── libm-test-carg.inc │ ├── libm-test-casin.inc │ ├── libm-test-casinh.inc │ ├── libm-test-catan.inc │ ├── libm-test-catanh.inc │ ├── libm-test-cbrt.inc │ ├── libm-test-ccos.inc │ ├── libm-test-ccosh.inc │ ├── libm-test-ceil.inc │ ├── libm-test-cexp.inc │ ├── libm-test-cimag.inc │ ├── libm-test-clog.inc │ ├── libm-test-clog10.inc │ ├── libm-test-conj.inc │ ├── libm-test-copysign.inc │ ├── libm-test-cos.inc │ ├── libm-test-cosh.inc │ ├── libm-test-cpow.inc │ ├── libm-test-cproj.inc │ ├── libm-test-creal.inc │ ├── libm-test-csin.inc │ ├── libm-test-csinh.inc │ ├── libm-test-csqrt.inc │ ├── libm-test-ctan.inc │ ├── libm-test-ctanh.inc │ ├── libm-test-driver.c │ ├── libm-test-erf.inc │ ├── libm-test-erfc.inc │ ├── libm-test-exp.inc │ ├── libm-test-exp10.inc │ ├── libm-test-exp2.inc │ ├── libm-test-expm1.inc │ ├── libm-test-fabs.inc │ ├── libm-test-fdim.inc │ ├── libm-test-floor.inc │ ├── libm-test-fma.inc │ ├── libm-test-fmax.inc │ ├── libm-test-fmaxmag.inc │ ├── libm-test-fmin.inc │ ├── libm-test-fminmag.inc │ ├── libm-test-fmod.inc │ ├── libm-test-fpclassify.inc │ ├── libm-test-frexp.inc │ ├── libm-test-fromfp.inc │ ├── libm-test-fromfpx.inc │ ├── libm-test-getpayload.inc │ ├── libm-test-hypot.inc │ ├── libm-test-ilogb.inc │ ├── libm-test-iscanonical.inc │ ├── libm-test-iseqsig.inc │ ├── libm-test-isfinite.inc │ ├── libm-test-isgreater.inc │ ├── libm-test-isgreaterequal.inc │ ├── libm-test-isinf.inc │ ├── libm-test-isless.inc │ ├── libm-test-islessequal.inc │ ├── libm-test-islessgreater.inc │ ├── libm-test-isnan.inc │ ├── libm-test-isnormal.inc │ ├── libm-test-issignaling.inc │ ├── libm-test-issubnormal.inc │ ├── libm-test-isunordered.inc │ ├── libm-test-iszero.inc │ ├── libm-test-j0.inc │ ├── libm-test-j1.inc │ ├── libm-test-jn.inc │ ├── libm-test-lgamma.inc │ ├── libm-test-llogb.inc │ ├── libm-test-llrint.inc │ ├── libm-test-llround.inc │ ├── libm-test-log.inc │ ├── libm-test-log10.inc │ ├── libm-test-log1p.inc │ ├── libm-test-log2.inc │ ├── libm-test-logb.inc │ ├── libm-test-lrint.inc │ ├── libm-test-lround.inc │ ├── libm-test-modf.inc │ ├── libm-test-narrow-add.inc │ ├── libm-test-narrow-div.inc │ ├── libm-test-narrow-mul.inc │ ├── libm-test-narrow-sub.inc │ ├── libm-test-nearbyint.inc │ ├── libm-test-nextafter.inc │ ├── libm-test-nextdown.inc │ ├── libm-test-nexttoward.inc │ ├── libm-test-nextup.inc │ ├── libm-test-pow.inc │ ├── libm-test-remainder.inc │ ├── libm-test-remquo.inc │ ├── libm-test-rint.inc │ ├── libm-test-round.inc │ ├── libm-test-roundeven.inc │ ├── libm-test-scalb.inc │ ├── libm-test-scalbln.inc │ ├── libm-test-scalbn.inc │ ├── libm-test-setpayload.inc │ ├── libm-test-setpayloadsig.inc │ ├── libm-test-signbit.inc │ ├── libm-test-significand.inc │ ├── libm-test-sin.inc │ ├── libm-test-sincos.inc │ ├── libm-test-sinh.inc │ ├── libm-test-sqrt.inc │ ├── libm-test-support.c │ ├── libm-test-support.h │ ├── libm-test-tan.inc │ ├── libm-test-tanh.inc │ ├── libm-test-tgamma.inc │ ├── libm-test-totalorder.inc │ ├── libm-test-totalordermag.inc │ ├── libm-test-trunc.inc │ ├── libm-test-ufromfp.inc │ ├── libm-test-ufromfpx.inc │ ├── libm-test-y0.inc │ ├── libm-test-y1.inc │ ├── libm-test-yn.inc │ ├── machine │ │ └── asm.h │ ├── math-narrow.h │ ├── math-svid-compat.h │ ├── math-underflow.h │ ├── math.h │ ├── mul_split.h │ ├── mul_splitl.h │ ├── multc3.c │ ├── s_cacos_template.c │ ├── s_cacosh_template.c │ ├── s_canonicalize_template.c │ ├── s_casin_template.c │ ├── s_casinh_template.c │ ├── s_catan_template.c │ ├── s_catanh_template.c │ ├── s_ccos_template.c │ ├── s_ccosh_template.c │ ├── s_cexp_template.c │ ├── s_clog10_template.c │ ├── s_clog_template.c │ ├── s_cpow_template.c │ ├── s_cproj_template.c │ ├── s_csin_template.c │ ├── s_csinh_template.c │ ├── s_csqrt_template.c │ ├── s_ctan_template.c │ ├── s_ctanh_template.c │ ├── s_fdim_template.c │ ├── s_fma.c │ ├── s_fmaf.c │ ├── s_fmal.c │ ├── s_fmax_template.c │ ├── s_fmaxmag_template.c │ ├── s_fmin_template.c │ ├── s_fminmag_template.c │ ├── s_iscanonicall.c │ ├── s_iseqsig_template.c │ ├── s_ldexp_template.c │ ├── s_nan_template.c │ ├── s_nextafter.c │ ├── s_nextdown_template.c │ ├── s_nexttowardf.c │ ├── s_nexttowardl.c │ ├── s_significand_template.c │ ├── setfpucw.c │ ├── t_sincosl.c │ ├── test-arg-double.h │ ├── test-arg-float128.h │ ├── test-arg-float32x.h │ ├── test-arg-float64.h │ ├── test-arg-float64x.h │ ├── test-arg-ldouble.h │ ├── test-double-vlen2.h │ ├── test-double-vlen4.h │ ├── test-double-vlen8.h │ ├── test-double.h │ ├── test-fe-snans-always-signal.c │ ├── test-femode-traps.c │ ├── test-femode.c │ ├── test-fenv-clear-main.c │ ├── test-fenv-clear.c │ ├── test-fenv-preserve.c │ ├── test-fenv-return.c │ ├── test-fenv-tls.c │ ├── test-fenv.c │ ├── test-fenvinline.c │ ├── test-fesetexcept-traps.c │ ├── test-fesetexcept.c │ ├── test-fetestexceptflag.c │ ├── test-fexcept-traps.c │ ├── test-fexcept.c │ ├── test-finite-macros.c │ ├── test-float-vlen16.h │ ├── test-float-vlen4.h │ ├── test-float-vlen8.h │ ├── test-float.h │ ├── test-float128.h │ ├── test-float32.h │ ├── test-float32x.h │ ├── test-float64.h │ ├── test-float64x.h │ ├── test-flt-eval-method.c │ ├── test-fp-ilogb-constants.c │ ├── test-fp-llogb-constants.c │ ├── test-fpucw-ieee-static.c │ ├── test-fpucw-ieee.c │ ├── test-fpucw-static.c │ ├── test-fpucw.c │ ├── test-iseqsig-excess-precision.c │ ├── test-iszero-excess-precision.c │ ├── test-ldouble.h │ ├── test-math-cxx11.cc │ ├── test-math-errno.h │ ├── test-math-finite.h │ ├── test-math-floatn.h │ ├── test-math-inline.h │ ├── test-math-iscanonical.cc │ ├── test-math-iseqsig.cc │ ├── test-math-isinff.cc │ ├── test-math-issignaling.cc │ ├── test-math-iszero.cc │ ├── test-math-narrow.h │ ├── test-math-no-finite.h │ ├── test-math-no-inline.h │ ├── test-math-scalar.h │ ├── test-math-vector.h │ ├── test-matherr-2.c │ ├── test-matherr-3.c │ ├── test-matherr.c │ ├── test-misc.c │ ├── test-nan-const.c │ ├── test-nan-overflow.c │ ├── test-nan-payload.c │ ├── test-narrow-macros.c │ ├── test-nearbyint-except-2.c │ ├── test-nearbyint-except.c │ ├── test-powl.c │ ├── test-signgam-finite-c11.c │ ├── test-signgam-finite-c99.c │ ├── test-signgam-finite.c │ ├── test-signgam-main.c │ ├── test-signgam-uchar-init-static.c │ ├── test-signgam-uchar-init.c │ ├── test-signgam-uchar-static.c │ ├── test-signgam-uchar.c │ ├── test-signgam-uint-init-static.c │ ├── test-signgam-uint-init.c │ ├── test-signgam-uint-static.c │ ├── test-signgam-uint.c │ ├── test-signgam-ullong-init-static.c │ ├── test-signgam-ullong-init.c │ ├── test-signgam-ullong-static.c │ ├── test-signgam-ullong.c │ ├── test-snan.c │ ├── test-tgmath-int.c │ ├── test-tgmath-ret.c │ ├── test-tgmath.c │ ├── test-tgmath2.c │ ├── tgmath.h │ ├── tst-CMPLX.c │ ├── tst-CMPLX2.c │ ├── tst-definitions.c │ ├── w_acos_compat.c │ ├── w_acos_template.c │ ├── w_acosf_compat.c │ ├── w_acosh_compat.c │ ├── w_acosh_template.c │ ├── w_acoshf_compat.c │ ├── w_acoshl_compat.c │ ├── w_acosl_compat.c │ ├── w_asin_compat.c │ ├── w_asin_template.c │ ├── w_asinf_compat.c │ ├── w_asinl_compat.c │ ├── w_atan2_compat.c │ ├── w_atan2_template.c │ ├── w_atan2f_compat.c │ ├── w_atan2l_compat.c │ ├── w_atanh_compat.c │ ├── w_atanh_template.c │ ├── w_atanhf_compat.c │ ├── w_atanhl_compat.c │ ├── w_cosh_compat.c │ ├── w_cosh_template.c │ ├── w_coshf_compat.c │ ├── w_coshl_compat.c │ ├── w_exp.c │ ├── w_exp10_compat.c │ ├── w_exp10_template.c │ ├── w_exp10f_compat.c │ ├── w_exp10l_compat.c │ ├── w_exp2.c │ ├── w_exp2_compat.c │ ├── w_exp2_template.c │ ├── w_exp2f.c │ ├── w_exp2f_compat.c │ ├── w_exp2l_compat.c │ ├── w_exp_compat.c │ ├── w_exp_template.c │ ├── w_expf.c │ ├── w_expf_compat.c │ ├── w_expl_compat.c │ ├── w_fmod_compat.c │ ├── w_fmod_template.c │ ├── w_fmodf_compat.c │ ├── w_fmodl_compat.c │ ├── w_hypot_compat.c │ ├── w_hypot_template.c │ ├── w_hypotf_compat.c │ ├── w_hypotl_compat.c │ ├── w_ilogb_template.c │ ├── w_j0_compat.c │ ├── w_j0_template.c │ ├── w_j0f_compat.c │ ├── w_j0l_compat.c │ ├── w_j1_compat.c │ ├── w_j1_template.c │ ├── w_j1f_compat.c │ ├── w_j1l_compat.c │ ├── w_jn_compat.c │ ├── w_jn_template.c │ ├── w_jnf_compat.c │ ├── w_jnl_compat.c │ ├── w_lgamma.c │ ├── w_lgamma_compat.c │ ├── w_lgamma_compat2.c │ ├── w_lgamma_compatf.c │ ├── w_lgamma_compatl.c │ ├── w_lgamma_main.c │ ├── w_lgamma_r_compat.c │ ├── w_lgamma_r_template.c │ ├── w_lgamma_template.c │ ├── w_lgammaf.c │ ├── w_lgammaf_compat2.c │ ├── w_lgammaf_main.c │ ├── w_lgammaf_r_compat.c │ ├── w_lgammal.c │ ├── w_lgammal_compat2.c │ ├── w_lgammal_main.c │ ├── w_lgammal_r_compat.c │ ├── w_llogb_template.c │ ├── w_log.c │ ├── w_log10_compat.c │ ├── w_log10_template.c │ ├── w_log10f_compat.c │ ├── w_log10l_compat.c │ ├── w_log1p_template.c │ ├── w_log2.c │ ├── w_log2_compat.c │ ├── w_log2_template.c │ ├── w_log2f.c │ ├── w_log2f_compat.c │ ├── w_log2l_compat.c │ ├── w_log_compat.c │ ├── w_log_template.c │ ├── w_logf.c │ ├── w_logf_compat.c │ ├── w_logl_compat.c │ ├── w_pow.c │ ├── w_pow_compat.c │ ├── w_pow_template.c │ ├── w_powf.c │ ├── w_powf_compat.c │ ├── w_powl_compat.c │ ├── w_remainder.c │ ├── w_remainder_compat.c │ ├── w_remainder_template.c │ ├── w_remainderf.c │ ├── w_remainderf_compat.c │ ├── w_remainderl.c │ ├── w_remainderl_compat.c │ ├── w_scalb_compat.c │ ├── w_scalbf_compat.c │ ├── w_scalbl_compat.c │ ├── w_scalbln_template.c │ ├── w_sinh_compat.c │ ├── w_sinh_template.c │ ├── w_sinhf_compat.c │ ├── w_sinhl_compat.c │ ├── w_sqrt_compat.c │ ├── w_sqrt_template.c │ ├── w_sqrtf_compat.c │ ├── w_sqrtl_compat.c │ ├── w_tgamma_compat.c │ ├── w_tgamma_template.c │ ├── w_tgammaf_compat.c │ └── w_tgammal_compat.c ├── mathvec │ ├── Depend │ └── Makefile ├── misc │ ├── Makefile │ ├── Versions │ ├── acct.c │ ├── allocate_once.c │ ├── ar.h │ ├── bits │ │ ├── err-ldbl.h │ │ ├── error-ldbl.h │ │ ├── error.h │ │ ├── select2.h │ │ ├── stab.def │ │ ├── syslog-ldbl.h │ │ ├── syslog.h │ │ └── types │ │ │ └── struct_iovec.h │ ├── brk.c │ ├── bug-hsearch1.c │ ├── bug18240.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 │ ├── ftruncate.c │ ├── ftruncate64.c │ ├── futimes.c │ ├── futimesat.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 │ ├── ifunc-impl-list.c │ ├── init-misc.c │ ├── insremque.c │ ├── ioctl.c │ ├── lgetxattr.c │ ├── libgen.h │ ├── listxattr.c │ ├── llistxattr.c │ ├── lremovexattr.c │ ├── lsearch.c │ ├── lsetxattr.c │ ├── lutimes.c │ ├── madvise.c │ ├── makedev.c │ ├── mincore.c │ ├── mkdtemp.c │ ├── mkostemp.c │ ├── mkostemp64.c │ ├── mkostemps.c │ ├── mkostemps64.c │ ├── mkstemp.c │ ├── mkstemp64.c │ ├── mkstemps.c │ ├── mkstemps64.c │ ├── mktemp.c │ ├── mlock.c │ ├── mlockall.c │ ├── mmap.c │ ├── mmap64.c │ ├── mntent.c │ ├── mntent.h │ ├── mntent_r.c │ ├── mprotect.c │ ├── msync.c │ ├── munlock.c │ ├── munlockall.c │ ├── munmap.c │ ├── preadv.c │ ├── preadv2.c │ ├── preadv64.c │ ├── preadv64v2.c │ ├── pselect.c │ ├── ptrace.c │ ├── pwritev.c │ ├── pwritev2.c │ ├── pwritev64.c │ ├── pwritev64v2.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 │ │ ├── param.h │ │ ├── queue.h │ │ ├── select.h │ │ ├── syslog.h │ │ ├── sysmacros.h │ │ ├── uio.h │ │ └── xattr.h │ ├── syscall.c │ ├── syscall.h │ ├── sysexits.h │ ├── syslog.c │ ├── syslog.h │ ├── truncate.c │ ├── truncate64.c │ ├── tsearch.c │ ├── tst-allocate_once.c │ ├── tst-atomic-long.c │ ├── tst-atomic.c │ ├── tst-dbl-efgcvt.c │ ├── tst-dirname.c │ ├── tst-efgcvt-template.c │ ├── tst-empty.c │ ├── tst-error1.c │ ├── tst-fdset.c │ ├── tst-gethostid.c │ ├── tst-hsearch.c │ ├── tst-insremque.c │ ├── tst-ldbl-efgcvt.c │ ├── tst-ldbl-error.c │ ├── tst-ldbl-warn.c │ ├── tst-makedev.c │ ├── tst-mntent-blank-corrupt.c │ ├── tst-mntent-blank-passno.c │ ├── tst-mntent.c │ ├── tst-mntent2.c │ ├── tst-preadvwritev-common.c │ ├── tst-preadvwritev.c │ ├── tst-preadvwritev2-common.c │ ├── tst-preadvwritev2.c │ ├── tst-preadvwritev64.c │ ├── tst-preadvwritev64v2.c │ ├── tst-pselect.c │ ├── tst-tsearch.c │ ├── tst-warn-wide.c │ ├── ttyent.h │ ├── ttyslot.c │ ├── ualarm.c │ ├── usleep.c │ ├── ustat.c │ ├── utimes.c │ ├── vhangup.c │ └── writev.c ├── nis │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── libnsl.h │ ├── nis_add.c │ ├── nis_addmember.c │ ├── nis_call.c │ ├── nis_callback.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 │ ├── 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 │ ├── nisplus-parser.h │ ├── nss │ ├── nss-default.c │ ├── nss-nis.c │ ├── nss-nis.h │ ├── nss-nisplus.c │ ├── nss-nisplus.h │ ├── 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_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 │ ├── rpcsvc │ │ ├── nis.h │ │ ├── nis.x │ │ ├── nis_callback.h │ │ ├── nis_callback.x │ │ ├── nis_object.x │ │ ├── nis_tags.h │ │ ├── nislib.h │ │ ├── yp.h │ │ ├── yp.x │ │ ├── yp_prot.h │ │ ├── ypclnt.h │ │ └── ypupd.h │ ├── yp_xdr.c │ ├── ypclnt.c │ └── ypupdate_xdr.c ├── nptl │ ├── DESIGN-systemtap-probes.txt │ ├── Makefile │ ├── TODO-kernel │ ├── TODO-testing │ ├── Versions │ ├── alloca_cutoff.c │ ├── allocatestack.c │ ├── call_once.c │ ├── cancellation.c │ ├── cleanup.c │ ├── cleanup_compat.c │ ├── cleanup_defer.c │ ├── cleanup_defer_compat.c │ ├── cleanup_routine.c │ ├── cnd_broadcast.c │ ├── cnd_destroy.c │ ├── cnd_init.c │ ├── cnd_signal.c │ ├── cnd_timedwait.c │ ├── cnd_wait.c │ ├── compat-pthread_self.c │ ├── cond-perf.c │ ├── createthread.c │ ├── default-sched.h │ ├── descr.h │ ├── eintr.c │ ├── elision-conf.h │ ├── errno-loc.c │ ├── events.c │ ├── forward.c │ ├── herrno.c │ ├── libc-cancellation.c │ ├── libc-cleanup.c │ ├── libc-lowlevellock.c │ ├── libc_multiple_threads.c │ ├── libc_pthread_init.c │ ├── libpthread-compat.c │ ├── lll_timedlock_wait.c │ ├── lowlevellock.c │ ├── mtx_destroy.c │ ├── mtx_init.c │ ├── mtx_lock.c │ ├── mtx_timedlock.c │ ├── mtx_trylock.c │ ├── mtx_unlock.c │ ├── nptl-init.c │ ├── nptl-printers.py │ ├── nptl_lock_constants.pysym │ ├── nptlfreeres.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 │ ├── pt-fork.c │ ├── pt-interp.c │ ├── pt-longjmp.c │ ├── pt-raise.c │ ├── pt-system.c │ ├── pthread-errnos.sym │ ├── pthread-pi-defines.sym │ ├── pthread-pids.h │ ├── pthreadP.h │ ├── pthread_atfork.c │ ├── pthread_attr_destroy.c │ ├── pthread_attr_getaffinity.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_getstack.c │ ├── pthread_attr_getstackaddr.c │ ├── pthread_attr_getstacksize.c │ ├── pthread_attr_init.c │ ├── pthread_attr_setaffinity.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_setstack.c │ ├── pthread_attr_setstackaddr.c │ ├── pthread_attr_setstacksize.c │ ├── pthread_barrier_destroy.c │ ├── pthread_barrier_init.c │ ├── pthread_barrier_wait.c │ ├── pthread_barrierattr_destroy.c │ ├── pthread_barrierattr_getpshared.c │ ├── pthread_barrierattr_init.c │ ├── pthread_barrierattr_setpshared.c │ ├── pthread_cancel.c │ ├── pthread_cond_broadcast.c │ ├── pthread_cond_common.c │ ├── pthread_cond_destroy.c │ ├── pthread_cond_init.c │ ├── pthread_cond_signal.c │ ├── pthread_cond_wait.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_create.c │ ├── pthread_detach.c │ ├── pthread_equal.c │ ├── pthread_exit.c │ ├── pthread_getaffinity.c │ ├── pthread_getattr_default_np.c │ ├── pthread_getattr_np.c │ ├── pthread_getconcurrency.c │ ├── pthread_getcpuclockid.c │ ├── pthread_getname.c │ ├── pthread_getschedparam.c │ ├── pthread_getspecific.c │ ├── pthread_join.c │ ├── pthread_join_common.c │ ├── pthread_key_create.c │ ├── pthread_key_delete.c │ ├── pthread_kill.c │ ├── pthread_kill_other_threads.c │ ├── pthread_mutex_cond_lock.c │ ├── pthread_mutex_conf.c │ ├── pthread_mutex_conf.h │ ├── 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_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_once.c │ ├── pthread_rwlock_clockrdlock.c │ ├── pthread_rwlock_clockwrlock.c │ ├── pthread_rwlock_common.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_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_self.c │ ├── pthread_setaffinity.c │ ├── pthread_setattr_default_np.c │ ├── pthread_setcancelstate.c │ ├── pthread_setcanceltype.c │ ├── pthread_setconcurrency.c │ ├── pthread_setegid.c │ ├── pthread_seteuid.c │ ├── pthread_setgid.c │ ├── pthread_setname.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_sigmask.c │ ├── pthread_sigqueue.c │ ├── pthread_spin_destroy.c │ ├── pthread_spin_init.c │ ├── pthread_spin_lock.c │ ├── pthread_spin_trylock.c │ ├── pthread_spin_unlock.c │ ├── pthread_testcancel.c │ ├── pthread_timedjoin.c │ ├── pthread_tryjoin.c │ ├── pthread_yield.c │ ├── register-atfork.c │ ├── res.c │ ├── sem_clockwait.c │ ├── sem_close.c │ ├── sem_destroy.c │ ├── sem_getvalue.c │ ├── sem_init.c │ ├── sem_open.c │ ├── sem_post.c │ ├── sem_timedwait.c │ ├── sem_unlink.c │ ├── sem_wait.c │ ├── sem_waitcommon.c │ ├── semaphoreP.h │ ├── shlib-versions │ ├── sigaction.c │ ├── smp.h │ ├── stack-aliasing.h │ ├── test-cond-printers.c │ ├── test-cond-printers.py │ ├── test-condattr-printers.c │ ├── test-condattr-printers.py │ ├── test-mutex-printers.c │ ├── test-mutex-printers.py │ ├── test-mutexattr-printers.c │ ├── test-mutexattr-printers.py │ ├── test-rwlock-printers.c │ ├── test-rwlock-printers.py │ ├── test-rwlockattr-printers.c │ ├── test-rwlockattr-printers.py │ ├── thrd_create.c │ ├── thrd_current.c │ ├── thrd_detach.c │ ├── thrd_equal.c │ ├── thrd_exit.c │ ├── thrd_join.c │ ├── thrd_priv.h │ ├── thrd_sleep.c │ ├── thrd_yield.c │ ├── tpp.c │ ├── tss_create.c │ ├── tss_delete.c │ ├── tss_get.c │ ├── tss_set.c │ ├── tst-_res1.c │ ├── tst-_res1mod1.c │ ├── tst-_res1mod2.c │ ├── tst-abstime.c │ ├── tst-align.c │ ├── tst-align3.c │ ├── tst-atfork1.c │ ├── tst-atfork2.c │ ├── tst-atfork2mod.c │ ├── tst-attr1.c │ ├── tst-attr2.c │ ├── tst-attr3.c │ ├── tst-audit-threads-mod1.c │ ├── tst-audit-threads-mod2.c │ ├── tst-audit-threads.c │ ├── tst-audit-threads.h │ ├── tst-backtrace1.c │ ├── tst-bad-schedattr.c │ ├── tst-barrier1.c │ ├── tst-barrier2.c │ ├── tst-barrier3.c │ ├── tst-barrier4.c │ ├── tst-barrier5.c │ ├── tst-basic1.c │ ├── tst-basic2.c │ ├── tst-basic3.c │ ├── tst-basic4.c │ ├── tst-basic5.c │ ├── tst-basic6.c │ ├── tst-basic7.c │ ├── tst-call-once.c │ ├── tst-cancel-self-cancelstate.c │ ├── tst-cancel-self-canceltype.c │ ├── tst-cancel-self-cleanup.c │ ├── tst-cancel-self-testcancel.c │ ├── tst-cancel-self.c │ ├── tst-cancel1.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-cancel2.c │ ├── tst-cancel20.c │ ├── tst-cancel21-static.c │ ├── tst-cancel21.c │ ├── tst-cancel22.c │ ├── tst-cancel23.c │ ├── tst-cancel24-static.cc │ ├── tst-cancel24.cc │ ├── tst-cancel25.c │ ├── tst-cancel26.c │ ├── tst-cancel27.c │ ├── tst-cancel3.c │ ├── tst-cancel4-common.c │ ├── tst-cancel4-common.h │ ├── tst-cancel4.c │ ├── tst-cancel4_1.c │ ├── tst-cancel4_2.c │ ├── tst-cancel5.c │ ├── tst-cancel6.c │ ├── tst-cancel7.c │ ├── tst-cancel8.c │ ├── tst-cancel9.c │ ├── tst-cancelx1.c │ ├── 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-cancelx2.c │ ├── tst-cancelx20.c │ ├── tst-cancelx21.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-cleanup4.c │ ├── tst-cleanup4aux.c │ ├── tst-cleanupx0.c │ ├── tst-cleanupx0.expect │ ├── tst-cleanupx1.c │ ├── tst-cleanupx2.c │ ├── tst-cleanupx3.c │ ├── tst-cleanupx4.c │ ├── tst-cleanupx4aux.c │ ├── tst-clock1.c │ ├── tst-clock2.c │ ├── tst-cnd-basic.c │ ├── tst-cnd-broadcast.c │ ├── tst-cnd-timedwait.c │ ├── tst-compat-forwarder-mod.c │ ├── tst-compat-forwarder.c │ ├── tst-cond-except.c │ ├── tst-cond1.c │ ├── tst-cond10.c │ ├── tst-cond11-static.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-cond2.c │ ├── tst-cond20.c │ ├── tst-cond21.c │ ├── tst-cond22.c │ ├── tst-cond23.c │ ├── tst-cond24.c │ ├── tst-cond25.c │ ├── tst-cond26.c │ ├── tst-cond27.c │ ├── tst-cond3.c │ ├── tst-cond4.c │ ├── tst-cond5.c │ ├── tst-cond6.c │ ├── tst-cond7.c │ ├── tst-cond8-static.c │ ├── tst-cond8.c │ ├── tst-cond9.c │ ├── tst-context1.c │ ├── tst-create-detached.c │ ├── tst-default-attr.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-exec5.c │ ├── tst-execstack-mod.c │ ├── tst-execstack.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-getpid3.c │ ├── tst-initializers1-c11.c │ ├── tst-initializers1-c89.c │ ├── tst-initializers1-c99.c │ ├── tst-initializers1-gnu11.c │ ├── tst-initializers1-gnu89.c │ ├── tst-initializers1-gnu99.c │ ├── tst-initializers1.c │ ├── tst-join1.c │ ├── tst-join2.c │ ├── tst-join3.c │ ├── tst-join4.c │ ├── tst-join5.c │ ├── tst-join6.c │ ├── tst-join7.c │ ├── tst-join7mod.c │ ├── tst-join8.c │ ├── tst-join9.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-memstream.c │ ├── tst-minstack-cancel.c │ ├── tst-minstack-exit.c │ ├── tst-minstack-throw.cc │ ├── tst-mtx-basic.c │ ├── tst-mtx-recursive.c │ ├── tst-mtx-timedlock.c │ ├── tst-mtx-trylock.c │ ├── tst-mutex-errorcheck.c │ ├── tst-mutex1.c │ ├── tst-mutex10.c │ ├── tst-mutex11.c │ ├── tst-mutex2.c │ ├── tst-mutex3.c │ ├── tst-mutex4.c │ ├── tst-mutex5.c │ ├── tst-mutex5a.c │ ├── tst-mutex6.c │ ├── tst-mutex7.c │ ├── tst-mutex7a.c │ ├── tst-mutex7robust.c │ ├── tst-mutex8-static.c │ ├── tst-mutex8.c │ ├── tst-mutex9.c │ ├── tst-mutexpi1.c │ ├── tst-mutexpi2.c │ ├── tst-mutexpi3.c │ ├── tst-mutexpi4.c │ ├── tst-mutexpi5.c │ ├── tst-mutexpi5a.c │ ├── tst-mutexpi6.c │ ├── tst-mutexpi7.c │ ├── tst-mutexpi7a.c │ ├── tst-mutexpi8-static.c │ ├── tst-mutexpi8.c │ ├── tst-mutexpi9.c │ ├── tst-mutexpp1.c │ ├── tst-mutexpp10.c │ ├── tst-mutexpp6.c │ ├── tst-oddstacklimit.c │ ├── tst-once1.c │ ├── tst-once2.c │ ├── tst-once3.c │ ├── tst-once4.c │ ├── tst-once5.cc │ ├── tst-oncex3.c │ ├── tst-oncex4.c │ ├── tst-popen1.c │ ├── tst-pthread-attr-affinity.c │ ├── tst-pthread-getattr.c │ ├── tst-pthread-mutexattr.c │ ├── tst-raise1.c │ ├── tst-robust-fork.c │ ├── tst-robust1.c │ ├── tst-robust10.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-rwlock-pwn.c │ ├── tst-rwlock-tryrdlock-stall.c │ ├── tst-rwlock-trywrlock-stall.c │ ├── tst-rwlock1.c │ ├── tst-rwlock10.c │ ├── tst-rwlock11.c │ ├── tst-rwlock12.c │ ├── tst-rwlock13.c │ ├── tst-rwlock14.c │ ├── tst-rwlock15.c │ ├── tst-rwlock16.c │ ├── tst-rwlock17.c │ ├── tst-rwlock18.c │ ├── tst-rwlock19.c │ ├── tst-rwlock2.c │ ├── tst-rwlock20.c │ ├── tst-rwlock2a.c │ ├── tst-rwlock2b.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-sem1.c │ ├── tst-sem10.c │ ├── tst-sem11-static.c │ ├── tst-sem11.c │ ├── tst-sem12-static.c │ ├── tst-sem12.c │ ├── tst-sem13.c │ ├── tst-sem14.c │ ├── tst-sem15.c │ ├── tst-sem16.c │ ├── tst-sem17.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-static.c │ ├── tst-setuid1.c │ ├── tst-setuid2.c │ ├── tst-setuid3.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-spin4.c │ ├── tst-stack1.c │ ├── tst-stack2.c │ ├── tst-stack3.c │ ├── tst-stack4.c │ ├── tst-stack4mod.c │ ├── tst-stackguard1-static.c │ ├── tst-stackguard1.c │ ├── tst-stdio1.c │ ├── tst-stdio2.c │ ├── tst-sysconf.c │ ├── tst-thrd-detach.c │ ├── tst-thrd-sleep.c │ ├── tst-thread-exit-clobber.cc │ ├── tst-thread_local1.cc │ ├── tst-tls1.c │ ├── tst-tls2.c │ ├── tst-tls3-malloc.c │ ├── tst-tls3.c │ ├── tst-tls3mod.c │ ├── tst-tls4.c │ ├── tst-tls4moda.c │ ├── tst-tls4modb.c │ ├── tst-tls5.c │ ├── tst-tls5.h │ ├── tst-tls5mod.c │ ├── tst-tls5moda.c │ ├── tst-tls5modb.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-tss-basic.c │ ├── tst-umask1.c │ ├── tst-unload.c │ ├── tst-unwind-thread.c │ ├── tst-vfork1.c │ ├── tst-vfork1x.c │ ├── tst-vfork2.c │ ├── tst-vfork2x.c │ ├── unwind.c │ ├── unwindbuf.sym │ ├── vars.c │ └── version.c ├── nptl_db │ ├── Makefile │ ├── Versions │ ├── db-symbols.awk │ ├── db-symbols.h │ ├── db_info.c │ ├── fetch-value.c │ ├── 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_set_event.c │ ├── td_ta_setconcurrency.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_get_info.c │ ├── td_thr_getfpregs.c │ ├── td_thr_getgregs.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_tls_get_addr.c │ ├── td_thr_tlsbase.c │ ├── td_thr_tsd.c │ ├── td_thr_validate.c │ └── thread_dbP.h ├── nscd │ ├── Depend │ ├── Makefile │ ├── aicache.c │ ├── cache.c │ ├── connections.c │ ├── dbg_log.c │ ├── dbg_log.h │ ├── 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 │ ├── mem.c │ ├── netgroupcache.c │ ├── nscd-client.h │ ├── nscd.c │ ├── nscd.conf │ ├── nscd.h │ ├── nscd.init │ ├── nscd.service │ ├── nscd.tmpfiles │ ├── nscd_conf.c │ ├── nscd_getai.c │ ├── nscd_getgr_r.c │ ├── nscd_gethst_r.c │ ├── nscd_getpw_r.c │ ├── nscd_getserv_r.c │ ├── nscd_helper.c │ ├── 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 │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── XXX-lookup.c │ ├── alias-lookup.c │ ├── bug-erange.c │ ├── bug17079.c │ ├── compat-lookup.c │ ├── databases.def │ ├── db-Makefile │ ├── digits_dots.c │ ├── ethers-lookup.c │ ├── function.def │ ├── getXXbyYY.c │ ├── getXXbyYY_r.c │ ├── getXXent.c │ ├── getXXent_r.c │ ├── getent.c │ ├── getnssent.c │ ├── getnssent_r.c │ ├── grp-lookup.c │ ├── hosts-lookup.c │ ├── key-lookup.c │ ├── makedb.c │ ├── netgrp-lookup.c │ ├── network-lookup.c │ ├── nss.h │ ├── nss_compat │ │ ├── compat-grp.c │ │ ├── compat-initgroups.c │ │ ├── compat-pwd.c │ │ ├── compat-spwd.c │ │ ├── nisdomain.c │ │ └── nisdomain.h │ ├── nss_db │ │ ├── db-XXX.c │ │ ├── db-init.c │ │ ├── db-initgroups.c │ │ ├── db-netgrp.c │ │ ├── db-open.c │ │ └── nss_db.h │ ├── nss_files │ │ ├── files-XXX.c │ │ ├── files-alias.c │ │ ├── files-ethers.c │ │ ├── files-grp.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 │ ├── nss_hash.c │ ├── nss_test.h │ ├── nss_test.ver │ ├── nss_test1.c │ ├── nss_test2.c │ ├── nsswitch.c │ ├── nsswitch.conf │ ├── nsswitch.h │ ├── proto-lookup.c │ ├── pwd-lookup.c │ ├── rewrite_field.c │ ├── rpc-lookup.c │ ├── service-lookup.c │ ├── sgrp-lookup.c │ ├── spwd-lookup.c │ ├── test-digits-dots.c │ ├── test-netdb.c │ ├── tst-cancel-getpwuid_r.c │ ├── tst-field.c │ ├── tst-nss-db-endgrent.c │ ├── tst-nss-db-endgrent.root │ │ └── etc │ │ │ └── nsswitch.conf │ ├── tst-nss-db-endpwent.c │ ├── tst-nss-db-endpwent.root │ │ ├── etc │ │ │ └── nsswitch.conf │ │ └── var │ │ │ └── db │ │ │ └── passwd.in │ ├── tst-nss-files-alias-leak.c │ ├── tst-nss-files-alias-truncated.c │ ├── tst-nss-files-hosts-erange.c │ ├── tst-nss-files-hosts-getent.c │ ├── tst-nss-files-hosts-long.c │ ├── tst-nss-files-hosts-long.root │ │ └── etc │ │ │ ├── host.conf │ │ │ └── hosts │ ├── tst-nss-files-hosts-multi.c │ ├── tst-nss-getpwent.c │ ├── tst-nss-static.c │ ├── tst-nss-test1.c │ ├── tst-nss-test2.c │ ├── tst-nss-test3.c │ ├── tst-nss-test3.root │ │ ├── etc │ │ │ └── nsswitch.conf │ │ └── tst-nss-test3.script │ ├── tst-nss-test4.c │ ├── tst-nss-test5.c │ ├── valid_field.c │ └── valid_list_field.c ├── o-iterator.mk ├── po │ ├── .gitignore │ ├── Makefile │ ├── be.po │ ├── bg.po │ ├── ca.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── el.po │ ├── en_GB.po │ ├── eo.po │ ├── es.po │ ├── fi.po │ ├── fr.po │ ├── gl.po │ ├── hr.po │ ├── hu.po │ ├── ia.po │ ├── id.po │ ├── it.po │ ├── ja.po │ ├── ko.po │ ├── libc.pot │ ├── lt.po │ ├── nb.po │ ├── nl.po │ ├── pl.po │ ├── pot.header │ ├── pt_BR.po │ ├── ru.po │ ├── rw.po │ ├── sk.po │ ├── sl.po │ ├── sv.po │ ├── tr.po │ ├── uk.po │ ├── vi.po │ ├── zh_CN.po │ └── zh_TW.po ├── posix │ ├── BOOST.tests │ ├── Depend │ ├── Makefile │ ├── PCRE.tests │ ├── PTESTS │ ├── PTESTS2C.sed │ ├── TESTS │ ├── TESTS2C.sed │ ├── Versions │ ├── _exit.c │ ├── alarm.c │ ├── annexc.c │ ├── bits │ │ ├── cpu-set.h │ │ ├── getopt_core.h │ │ ├── getopt_ext.h │ │ ├── getopt_posix.h │ │ ├── posix1_lim.h │ │ ├── posix2_lim.h │ │ ├── types.h │ │ └── unistd.h │ ├── 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-glob2.c │ ├── bug-glob3.c │ ├── bug-regex1.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-regex2.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-regex3.c │ ├── bug-regex30.c │ ├── bug-regex31.c │ ├── bug-regex31.input │ ├── bug-regex32.c │ ├── bug-regex33.c │ ├── bug-regex34.c │ ├── bug-regex35.c │ ├── bug-regex36.c │ ├── bug-regex37.c │ ├── bug-regex38.c │ ├── bug-regex4.c │ ├── bug-regex5.c │ ├── bug-regex6.c │ ├── bug-regex7.c │ ├── bug-regex8.c │ ├── bug-regex9.c │ ├── confstr.c │ ├── cpio.h │ ├── environ.c │ ├── execl.c │ ├── execle.c │ ├── execlp.c │ ├── execv.c │ ├── execve.c │ ├── execvp.c │ ├── execvpe.c │ ├── fexecve.c │ ├── flexmember.h │ ├── fnmatch.c │ ├── fnmatch.h │ ├── fnmatch_loop.c │ ├── fork.c │ ├── fpathconf.c │ ├── gai.conf │ ├── gai_strerror.c │ ├── get_child_max.c │ ├── getaddrinfo.c │ ├── getconf-speclist.c │ ├── getconf.c │ ├── getegid.c │ ├── geteuid.c │ ├── getgid.c │ ├── getgroups.c │ ├── getopt.c │ ├── getopt.h │ ├── getopt1.c │ ├── getopt_int.h │ ├── getpgid.c │ ├── getpgrp.c │ ├── getpid.c │ ├── getppid.c │ ├── getresgid.c │ ├── getresuid.c │ ├── getsid.c │ ├── getuid.c │ ├── glob-lstat-compat.c │ ├── glob.c │ ├── glob.h │ ├── glob64-lstat-compat.c │ ├── glob64.c │ ├── glob_internal.h │ ├── glob_pattern_p.c │ ├── globfree.c │ ├── globfree64.c │ ├── globtest.c │ ├── globtest.sh │ ├── group_member.c │ ├── init-posix.c │ ├── nanosleep.c │ ├── pathconf.c │ ├── pause.c │ ├── posix-conf-vars.h │ ├── posix-conf-vars.list │ ├── posix-envs.def │ ├── posix_madvise.c │ ├── pread.c │ ├── pread64.c │ ├── pwrite.c │ ├── pwrite64.c │ ├── re_comp.h │ ├── regcomp.c │ ├── regex.c │ ├── regex.h │ ├── regex_internal.c │ ├── regex_internal.h │ ├── regexbug1.c │ ├── regexec.c │ ├── runptests.c │ ├── runtests.c │ ├── rxspencer │ │ ├── COPYRIGHT │ │ └── tests │ ├── sched.h │ ├── sched_cpualloc.c │ ├── sched_cpucount.c │ ├── sched_cpufree.c │ ├── sched_getaffinity.c │ ├── sched_getp.c │ ├── sched_gets.c │ ├── sched_primax.c │ ├── sched_primin.c │ ├── sched_rr_gi.c │ ├── sched_setaffinity.c │ ├── sched_setp.c │ ├── sched_sets.c │ ├── sched_yield.c │ ├── setgid.c │ ├── setpgid.c │ ├── setpgrp.c │ ├── setresgid.c │ ├── setresuid.c │ ├── setsid.c │ ├── setuid.c │ ├── sleep.c │ ├── spawn.c │ ├── spawn.h │ ├── spawn_faction_addchdir.c │ ├── spawn_faction_addclose.c │ ├── spawn_faction_adddup2.c │ ├── spawn_faction_addfchdir.c │ ├── spawn_faction_addopen.c │ ├── spawn_faction_destroy.c │ ├── spawn_faction_init.c │ ├── spawn_int.h │ ├── spawn_valid_fd.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 │ ├── spawni.c │ ├── spawnp.c │ ├── streams-compat.c │ ├── sys │ │ ├── times.h │ │ ├── types.h │ │ ├── unistd.h │ │ ├── utsname.h │ │ └── wait.h │ ├── sysconf.c │ ├── tar.h │ ├── test-errno.c │ ├── test-ssize-max.c │ ├── test-vfork.c │ ├── testfnm.c │ ├── times.c │ ├── transbug.c │ ├── tst-boost.c │ ├── tst-chmod.c │ ├── tst-cpucount.c │ ├── tst-cpuset.c │ ├── tst-dir.c │ ├── tst-exec-static.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-execvpe1.c │ ├── tst-execvpe2.c │ ├── tst-execvpe3.c │ ├── tst-execvpe4.c │ ├── tst-execvpe5.c │ ├── tst-execvpe6.c │ ├── tst-fexecve.c │ ├── tst-fnmatch.c │ ├── tst-fnmatch.input │ ├── tst-fnmatch2.c │ ├── tst-fnmatch3.c │ ├── tst-fnmatch4.c │ ├── tst-fnmatch5.c │ ├── tst-fork.c │ ├── tst-getaddrinfo.c │ ├── tst-getaddrinfo2.c │ ├── tst-getaddrinfo3.c │ ├── tst-getaddrinfo4.c │ ├── tst-getaddrinfo5.c │ ├── tst-getconf.sh │ ├── tst-getopt-cancel.c │ ├── tst-getopt_long1.c │ ├── tst-glob-tilde.c │ ├── tst-glob_lstat_compat.c │ ├── tst-glob_symlinks.c │ ├── tst-gnuglob-skeleton.c │ ├── tst-gnuglob.c │ ├── tst-gnuglob64.c │ ├── tst-mmap-offset.c │ ├── tst-mmap.c │ ├── tst-nanosleep.c │ ├── tst-nice.c │ ├── tst-pathconf.c │ ├── tst-pcre.c │ ├── tst-posix_fadvise-common.c │ ├── tst-posix_fadvise.c │ ├── tst-posix_fadvise64.c │ ├── tst-posix_spawn-fd.c │ ├── tst-posix_spawn-setsid.c │ ├── tst-preadwrite-common.c │ ├── tst-preadwrite.c │ ├── tst-preadwrite64.c │ ├── tst-regcomp-truncated.c │ ├── tst-regex.c │ ├── tst-regex2.c │ ├── tst-regexloc.c │ ├── tst-rfc3484-2.c │ ├── tst-rfc3484-3.c │ ├── tst-rfc3484.c │ ├── tst-rxspencer-no-utf8.c │ ├── tst-rxspencer.c │ ├── tst-spawn-chdir.c │ ├── tst-spawn-static.c │ ├── tst-spawn.c │ ├── tst-spawn2.c │ ├── tst-spawn3.c │ ├── tst-spawn4-compat.c │ ├── tst-spawn4.c │ ├── tst-sysconf-empty-chroot.c │ ├── tst-sysconf.c │ ├── tst-truncate-common.c │ ├── tst-truncate.c │ ├── tst-truncate64.c │ ├── tst-vfork1.c │ ├── tst-vfork2.c │ ├── tst-vfork3.c │ ├── tst-waitid.c │ ├── tstgetopt.c │ ├── uname-values.h │ ├── uname.c │ ├── unistd.h │ ├── vfork.c │ ├── wait.c │ ├── wait.h │ ├── wait3.c │ ├── wait4.c │ ├── waitid.c │ ├── waitpid.c │ ├── wordexp-test.c │ ├── wordexp-tst.sh │ ├── wordexp.c │ └── wordexp.h ├── pwd │ ├── Makefile │ ├── Versions │ ├── fgetpwent.c │ ├── fgetpwent_r.c │ ├── getpw.c │ ├── getpwent.c │ ├── getpwent_r.c │ ├── getpwnam.c │ ├── getpwnam_r.c │ ├── getpwuid.c │ ├── getpwuid_r.c │ ├── putpwent.c │ ├── pwd.h │ ├── tst-getpw.c │ └── tst-putpwent.c ├── resolv │ ├── Depend │ ├── Makefile │ ├── README │ ├── Versions │ ├── arpa │ │ ├── nameser.h │ │ └── nameser_compat.h │ ├── base64.c │ ├── bits │ │ └── types │ │ │ └── res_state.h │ ├── compat-gethnamaddr.c │ ├── compat-hooks.c │ ├── gai_cancel.c │ ├── gai_error.c │ ├── gai_misc.c │ ├── gai_misc.h │ ├── gai_notify.c │ ├── gai_sigqueue.c │ ├── gai_suspend.c │ ├── getaddrinfo_a.c │ ├── herror.c │ ├── inet_addr.c │ ├── inet_net_ntop.c │ ├── inet_net_pton.c │ ├── inet_neta.c │ ├── inet_ntop.c │ ├── inet_pton.c │ ├── mapv4v6addr.h │ ├── mapv4v6hostent.h │ ├── netdb.h │ ├── ns_date.c │ ├── ns_name.c │ ├── ns_netint.c │ ├── ns_parse.c │ ├── ns_print.c │ ├── ns_samedomain.c │ ├── ns_ttl.c │ ├── nsap_addr.c │ ├── nss_dns │ │ ├── dns-canon.c │ │ ├── dns-host.c │ │ └── dns-network.c │ ├── res-close.c │ ├── res-state.c │ ├── res_comp.c │ ├── res_data.c │ ├── res_debug.c │ ├── res_enable_icmp.c │ ├── res_hconf.c │ ├── res_hconf.h │ ├── res_init.c │ ├── res_libc.c │ ├── res_mkquery.c │ ├── res_query.c │ ├── res_randomid.c │ ├── res_send.c │ ├── resolv-internal.h │ ├── resolv.h │ ├── resolv_conf.c │ ├── resolv_conf.h │ ├── resolv_context.c │ ├── resolv_context.h │ ├── rpc │ │ └── netdb.h │ ├── sys │ │ └── bitypes.h │ ├── tst-aton.c │ ├── tst-bug18665-tcp.c │ ├── tst-bug18665.c │ ├── tst-inet_aton_exact.c │ ├── tst-inet_ntop.c │ ├── tst-inet_pton.c │ ├── tst-leaks.c │ ├── tst-leaks2.c │ ├── tst-no-libidn2.c │ ├── tst-ns_name.c │ ├── tst-ns_name.data │ ├── tst-ns_name_compress.c │ ├── tst-ns_name_pton.c │ ├── tst-p_secstodate.c │ ├── tst-res_hconf_reorder.c │ ├── tst-res_hnok.c │ ├── tst-resolv-ai_idn-common.c │ ├── tst-resolv-ai_idn-latin1.c │ ├── tst-resolv-ai_idn-nolibidn2.c │ ├── tst-resolv-ai_idn.c │ ├── tst-resolv-basic.c │ ├── tst-resolv-binary.c │ ├── tst-resolv-canonname.c │ ├── tst-resolv-edns.c │ ├── tst-resolv-network.c │ ├── tst-resolv-nondecimal.c │ ├── tst-resolv-qtypes.c │ ├── tst-resolv-res_init-multi.c │ ├── tst-resolv-res_init-skeleton.c │ ├── tst-resolv-res_init-thread.c │ ├── tst-resolv-res_init.c │ ├── tst-resolv-res_ninit.c │ ├── tst-resolv-rotate.c │ ├── tst-resolv-search.c │ ├── tst-resolv-threads.c │ └── tst-resolv-trailing.c ├── resource │ ├── Makefile │ ├── Versions │ ├── bits │ │ └── types │ │ │ └── struct_rusage.h │ ├── bug-ulimit1.c │ ├── getpriority.c │ ├── getrlimit.c │ ├── getrlimit64.c │ ├── getrusage.c │ ├── nice.c │ ├── setpriority.c │ ├── setrlimit.c │ ├── setrlimit64.c │ ├── sys │ │ ├── resource.h │ │ ├── vlimit.h │ │ └── vtimes.h │ ├── tst-getrlimit.c │ ├── ulimit.c │ ├── ulimit.h │ ├── vlimit.c │ └── vtimes.c ├── rt │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── aio.h │ ├── aio_cancel.c │ ├── aio_error.c │ ├── aio_fsync.c │ ├── aio_misc.c │ ├── aio_notify.c │ ├── aio_read.c │ ├── aio_read64.c │ ├── aio_return.c │ ├── aio_sigqueue.c │ ├── aio_suspend.c │ ├── aio_write.c │ ├── aio_write64.c │ ├── bits │ │ └── mqueue2.h │ ├── clock-compat.c │ ├── clock_getcpuclockid.c │ ├── clock_getres.c │ ├── clock_gettime.c │ ├── clock_nanosleep.c │ ├── clock_settime.c │ ├── lio_listio.c │ ├── lio_listio64.c │ ├── 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 │ ├── mq_unlink.c │ ├── mqueue.h │ ├── shm_open.c │ ├── shm_unlink.c │ ├── timer_create.c │ ├── timer_delete.c │ ├── timer_getoverr.c │ ├── timer_gettime.c │ ├── timer_settime.c │ ├── tst-aio.c │ ├── tst-aio10.c │ ├── tst-aio2.c │ ├── tst-aio3.c │ ├── tst-aio4.c │ ├── tst-aio5.c │ ├── tst-aio6.c │ ├── tst-aio64.c │ ├── tst-aio7.c │ ├── tst-aio8.c │ ├── tst-aio9.c │ ├── tst-clock.c │ ├── tst-clock2.c │ ├── tst-clock_nanosleep.c │ ├── tst-cpuclock1.c │ ├── tst-cpuclock2.c │ ├── tst-cputimer1.c │ ├── tst-cputimer2.c │ ├── tst-cputimer3.c │ ├── tst-mqueue.h │ ├── 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-shm-cancel.c │ ├── tst-shm.c │ ├── tst-timer.c │ ├── tst-timer2.c │ ├── tst-timer3.c │ ├── tst-timer4.c │ └── tst-timer5.c ├── scripts │ ├── abi-versions.awk │ ├── abilist.awk │ ├── backport-support.sh │ ├── build-many-glibcs.py │ ├── check-c++-types.sh │ ├── check-execstack.awk │ ├── check-initfini.awk │ ├── check-installed-headers.sh │ ├── check-local-headers.sh │ ├── check-localplt.awk │ ├── check-obsolete-constructs.py │ ├── check-textrel.awk │ ├── check-wrapper-headers.py │ ├── config-uname.sh │ ├── config.guess │ ├── config.sub │ ├── cpp │ ├── cross-test-ssh.sh │ ├── documented.sh │ ├── evaluate-test.sh │ ├── firstversions.awk │ ├── gen-as-const.py │ ├── gen-libc-abis │ ├── gen-libc-modules.awk │ ├── gen-posix-conf-vars.awk │ ├── gen-rrtypes.py │ ├── gen-sorted.awk │ ├── gen-tunables.awk │ ├── glibcextract.py │ ├── haveversions.awk │ ├── install-sh │ ├── lib-names.awk │ ├── list-fixed-bugs.py │ ├── list-sources.sh │ ├── localplt.awk │ ├── merge-test-results.sh │ ├── mkinstalldirs │ ├── move-if-change │ ├── output-format.sed │ ├── pylint │ ├── pylintrc │ ├── rellns-sh │ ├── soversions.awk │ ├── sysd-rules.awk │ ├── test-installation.pl │ ├── test_printers_common.py │ ├── test_printers_exceptions.py │ ├── update-abilist.sh │ ├── update-copyrights │ ├── versionlist.awk │ └── versions.awk ├── setjmp │ ├── Makefile │ ├── Versions │ ├── __longjmp.c │ ├── bits │ │ └── setjmp2.h │ ├── bsd-_setjmp.c │ ├── bsd-setjmp.c │ ├── bug269-setjmp.c │ ├── jmp-unwind.c │ ├── jmpbug.c │ ├── longjmp.c │ ├── setjmp.c │ ├── setjmp.h │ ├── sigjmp.c │ ├── tst-setjmp-fp.c │ ├── tst-setjmp-static.c │ ├── tst-setjmp.c │ └── tst-sigsetjmp.c ├── shadow │ ├── Makefile │ ├── Versions │ ├── fgetspent.c │ ├── fgetspent_r.c │ ├── getspent.c │ ├── getspent_r.c │ ├── getspnam.c │ ├── getspnam_r.c │ ├── lckpwdf.c │ ├── putspent.c │ ├── sgetspent.c │ ├── sgetspent_r.c │ ├── shadow.h │ ├── tst-putspent.c │ └── tst-shadow.c ├── shlib-versions ├── signal │ ├── Makefile │ ├── Versions │ ├── allocrtsig.c │ ├── bits │ │ └── types │ │ │ ├── __sigval_t.h │ │ │ ├── sig_atomic_t.h │ │ │ ├── sigset_t.h │ │ │ ├── sigval_t.h │ │ │ └── struct_sigstack.h │ ├── kill.c │ ├── killpg.c │ ├── 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 │ ├── sigstack.c │ ├── sigsuspend.c │ ├── sigtimedwait.c │ ├── sigvec.c │ ├── sigwait.c │ ├── sigwaitinfo.c │ ├── sys │ │ └── signal.h │ ├── sysv_signal.c │ ├── tst-minsigstksz-1.c │ ├── tst-minsigstksz-2.c │ ├── tst-minsigstksz-3.c │ ├── tst-minsigstksz-3a.c │ ├── tst-minsigstksz-4.c │ ├── tst-raise.c │ ├── tst-sigaction.c │ ├── tst-signal.c │ ├── tst-sigset.c │ ├── tst-sigset2.c │ ├── tst-sigsimple.c │ └── tst-sigwait-eintr.c ├── socket │ ├── Makefile │ ├── Versions │ ├── accept.c │ ├── accept4.c │ ├── bind.c │ ├── bits │ │ ├── socket2.h │ │ └── types │ │ │ └── struct_osockaddr.h │ ├── connect.c │ ├── getpeername.c │ ├── getsockname.c │ ├── getsockopt.c │ ├── isfdtype.c │ ├── listen.c │ ├── opensock.c │ ├── recv.c │ ├── recvfrom.c │ ├── recvmmsg.c │ ├── recvmsg.c │ ├── sa_len.c │ ├── send.c │ ├── sendmmsg.c │ ├── sendmsg.c │ ├── sendto.c │ ├── setsockopt.c │ ├── shutdown.c │ ├── sockatmark.c │ ├── socket.c │ ├── socketpair.c │ ├── sys │ │ ├── socket.h │ │ └── un.h │ └── tst-accept4.c ├── soft-fp │ ├── Makefile │ ├── adddf3.c │ ├── addsf3.c │ ├── addtf3.c │ ├── divdf3.c │ ├── divsf3.c │ ├── divtf3.c │ ├── double.h │ ├── eqdf2.c │ ├── eqsf2.c │ ├── eqtf2.c │ ├── extenddftf2.c │ ├── extended.h │ ├── extendhftf2.c │ ├── extendsfdf2.c │ ├── extendsftf2.c │ ├── extendxftf2.c │ ├── fixdfdi.c │ ├── fixdfsi.c │ ├── fixdfti.c │ ├── fixhfti.c │ ├── fixsfdi.c │ ├── fixsfsi.c │ ├── fixsfti.c │ ├── fixtfdi.c │ ├── fixtfsi.c │ ├── fixtfti.c │ ├── fixunsdfdi.c │ ├── fixunsdfsi.c │ ├── fixunsdfti.c │ ├── fixunshfti.c │ ├── fixunssfdi.c │ ├── fixunssfsi.c │ ├── fixunssfti.c │ ├── fixunstfdi.c │ ├── fixunstfsi.c │ ├── fixunstfti.c │ ├── floatdidf.c │ ├── floatdisf.c │ ├── floatditf.c │ ├── floatsidf.c │ ├── floatsisf.c │ ├── floatsitf.c │ ├── floattidf.c │ ├── floattihf.c │ ├── floattisf.c │ ├── floattitf.c │ ├── floatundidf.c │ ├── floatundisf.c │ ├── floatunditf.c │ ├── floatunsidf.c │ ├── floatunsisf.c │ ├── floatunsitf.c │ ├── floatuntidf.c │ ├── floatuntihf.c │ ├── floatuntisf.c │ ├── floatuntitf.c │ ├── gedf2.c │ ├── gesf2.c │ ├── getf2.c │ ├── half.h │ ├── ledf2.c │ ├── lesf2.c │ ├── letf2.c │ ├── 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 │ ├── subdf3.c │ ├── subsf3.c │ ├── subtf3.c │ ├── testit.c │ ├── truncdfsf2.c │ ├── trunctfdf2.c │ ├── trunctfhf2.c │ ├── trunctfsf2.c │ ├── trunctfxf2.c │ ├── unorddf2.c │ ├── unordsf2.c │ └── unordtf2.c ├── stdio-common │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── _i18n_number.h │ ├── _itoa.c │ ├── _itowa.c │ ├── _itowa.h │ ├── asprintf.c │ ├── bits │ │ └── printf-ldbl.h │ ├── bug-vfprintf-nargs.c │ ├── bug1.c │ ├── bug1.input │ ├── bug10.c │ ├── bug11.c │ ├── bug12.c │ ├── bug13.c │ ├── bug14.c │ ├── bug16.c │ ├── bug17.c │ ├── bug18.c │ ├── bug18a.c │ ├── bug19.c │ ├── bug19a.c │ ├── bug2.c │ ├── bug20.c │ ├── bug21.c │ ├── bug22.c │ ├── bug23-2.c │ ├── bug23-3.c │ ├── bug23-4.c │ ├── bug23.c │ ├── bug24.c │ ├── bug25.c │ ├── bug26.c │ ├── bug3.c │ ├── bug4.c │ ├── bug5.c │ ├── bug6.c │ ├── bug6.input │ ├── bug7.c │ ├── bug8.c │ ├── bug9.c │ ├── ctermid.c │ ├── cuserid.c │ ├── dprintf.c │ ├── errlist.c │ ├── errnobug.c │ ├── flockfile.c │ ├── fprintf.c │ ├── fscanf.c │ ├── ftrylockfile.c │ ├── funlockfile.c │ ├── fxprintf.c │ ├── gentempfd.c │ ├── getline.c │ ├── getw.c │ ├── iovfscanf.c │ ├── iovfwscanf.c │ ├── isoc99_fscanf.c │ ├── isoc99_scanf.c │ ├── isoc99_sscanf.c │ ├── isoc99_vfscanf.c │ ├── isoc99_vscanf.c │ ├── isoc99_vsscanf.c │ ├── itoa-digits.c │ ├── itoa-udigits.c │ ├── itowa-digits.c │ ├── perror.c │ ├── printf-parse.h │ ├── printf-parsemb.c │ ├── printf-parsewc.c │ ├── printf-prs.c │ ├── printf.c │ ├── printf.h │ ├── printf_fp.c │ ├── printf_fphex.c │ ├── printf_size.c │ ├── psiginfo-data.h │ ├── psiginfo-define.h │ ├── psiginfo.c │ ├── psignal.c │ ├── putw.c │ ├── reg-modifier.c │ ├── reg-printf.c │ ├── reg-type.c │ ├── remove.c │ ├── rename.c │ ├── renameat.c │ ├── renameat2.c │ ├── scanf.c │ ├── scanf1.c │ ├── scanf10.c │ ├── scanf11.c │ ├── scanf12.c │ ├── scanf12.input │ ├── scanf13.c │ ├── scanf14.c │ ├── scanf14a.c │ ├── scanf15.c │ ├── scanf16.c │ ├── scanf16a.c │ ├── scanf17.c │ ├── scanf2.c │ ├── scanf3.c │ ├── scanf4.c │ ├── scanf5.c │ ├── scanf7.c │ ├── scanf8.c │ ├── scanf9.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-vfprintf.c │ ├── test_rdwr.c │ ├── tfformat.c │ ├── tiformat.c │ ├── tllformat.c │ ├── tmpfile.c │ ├── tmpfile64.c │ ├── tmpnam.c │ ├── tmpnam_r.c │ ├── tst-bz11319-fortify2.c │ ├── tst-bz11319.c │ ├── tst-cookie.c │ ├── tst-fdopen.c │ ├── tst-ferror.c │ ├── tst-ferror.input │ ├── tst-fgets.c │ ├── tst-fileno.c │ ├── tst-fmemopen.c │ ├── tst-fmemopen2.c │ ├── tst-fmemopen3.c │ ├── tst-fmemopen4.c │ ├── tst-fphex-wide.c │ ├── tst-fphex.c │ ├── tst-fseek.c │ ├── tst-fwrite.c │ ├── tst-gets.c │ ├── tst-gets.input │ ├── tst-grouping.c │ ├── tst-long-dbl-fphex.c │ ├── tst-obprintf.c │ ├── tst-perror.c │ ├── tst-popen.c │ ├── tst-popen2.c │ ├── tst-printf-bz18872.sh │ ├── tst-printf-round.c │ ├── tst-printf.c │ ├── tst-printf.sh │ ├── tst-printfsz-islongdouble.c │ ├── tst-printfsz-islongdouble.sh │ ├── tst-printfsz.c │ ├── tst-put-error.c │ ├── tst-renameat2.c │ ├── tst-rndseek.c │ ├── tst-scanf-round.c │ ├── tst-setvbuf1.c │ ├── tst-setvbuf1.expect │ ├── tst-sprintf.c │ ├── tst-sprintf2.c │ ├── tst-sprintf3.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-vfprintf-mbs-prec.c │ ├── tst-vfprintf-user-type.c │ ├── tst-vfprintf-width-prec.c │ ├── tst-wc-printf.c │ ├── tstdiomisc.c │ ├── tstgetln.c │ ├── tstgetln.input │ ├── tstscanf.c │ ├── tstscanf.input │ ├── vfprintf-internal.c │ ├── vfprintf.c │ ├── vfscanf-internal.c │ ├── vfscanf.c │ ├── vfwprintf-internal.c │ ├── vfwprintf.c │ ├── vfwscanf-internal.c │ ├── vfwscanf.c │ ├── vprintf.c │ └── xbug.c ├── stdlib │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── a64l.c │ ├── abort.c │ ├── abs.c │ ├── add_n.c │ ├── addmul_1.c │ ├── alloca.h │ ├── at_quick_exit.c │ ├── atexit.c │ ├── atof.c │ ├── atoi.c │ ├── atol.c │ ├── atoll.c │ ├── bits │ │ ├── monetary-ldbl.h │ │ ├── stdlib-float.h │ │ ├── stdlib-ldbl.h │ │ └── stdlib.h │ ├── bsearch.c │ ├── bug-fmtmsg1.c │ ├── bug-getcontext.c │ ├── bug-strtod.c │ ├── bug-strtod2.c │ ├── canonicalize.c │ ├── cmp.c │ ├── cxa_at_quick_exit.c │ ├── cxa_atexit.c │ ├── cxa_finalize.c │ ├── cxa_thread_atexit_impl.c │ ├── dbl2mpn.c │ ├── div.c │ ├── divmod_1.c │ ├── divrem.c │ ├── drand48-iter.c │ ├── drand48.c │ ├── drand48_r.c │ ├── erand48.c │ ├── erand48_r.c │ ├── errno.h │ ├── exit.c │ ├── exit.h │ ├── fmtmsg.c │ ├── fmtmsg.h │ ├── fpioconst.c │ ├── fpioconst.h │ ├── gen-fpioconst.c │ ├── gen-tst-strtod-round.c │ ├── getcontext.c │ ├── getentropy.c │ ├── getenv.c │ ├── getrandom.c │ ├── getsubopt.c │ ├── gmp-impl.h │ ├── gmp.h │ ├── grouping.c │ ├── grouping.h │ ├── groupingwc.c │ ├── inlines.c │ ├── inttypes.h │ ├── 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 │ ├── 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.c │ ├── mul_1.c │ ├── mul_n.c │ ├── nrand48.c │ ├── nrand48_r.c │ ├── old_atexit.c │ ├── on_exit.c │ ├── putenv.c │ ├── qsort.c │ ├── quick_exit.c │ ├── rand.c │ ├── rand_r.c │ ├── random.c │ ├── random_r.c │ ├── rpmatch.c │ ├── rshift.c │ ├── secure-getenv.c │ ├── seed48.c │ ├── seed48_r.c │ ├── setcontext.c │ ├── setenv.c │ ├── srand48.c │ ├── srand48_r.c │ ├── stdint.h │ ├── stdlib.h │ ├── strfmon.c │ ├── strfmon_l.c │ ├── strfrom-skeleton.c │ ├── strfromd.c │ ├── strfromf.c │ ├── strfroml.c │ ├── strtod.c │ ├── strtod_l.c │ ├── strtod_nan.c │ ├── strtod_nan_main.c │ ├── strtod_nan_narrow.h │ ├── strtod_nan_wide.h │ ├── strtof.c │ ├── strtof_l.c │ ├── strtof_nan.c │ ├── strtoimax.c │ ├── strtol.c │ ├── strtol_l.c │ ├── strtold.c │ ├── strtold_l.c │ ├── strtold_nan.c │ ├── strtoll.c │ ├── strtoll_l.c │ ├── strtoul.c │ ├── strtoul_l.c │ ├── strtoull.c │ ├── strtoull_l.c │ ├── strtoumax.c │ ├── sub_n.c │ ├── submul_1.c │ ├── swapcontext.c │ ├── sys │ │ ├── errno.h │ │ └── random.h │ ├── system.c │ ├── tens_in_limb.c │ ├── test-a64l.c │ ├── test-at_quick_exit-race.c │ ├── test-atexit-race-common.c │ ├── test-atexit-race.c │ ├── test-bz22786.c │ ├── test-canon.c │ ├── test-canon2.c │ ├── test-cxa_atexit-race.c │ ├── test-dlclose-exit-race-helper.c │ ├── test-dlclose-exit-race.c │ ├── test-on_exit-race.c │ ├── testdiv.c │ ├── testdiv.input │ ├── testmb.c │ ├── testmb2.c │ ├── testrand.c │ ├── testsort.c │ ├── tst-at_quick_exit.c │ ├── tst-atexit-common.c │ ├── tst-atexit.c │ ├── tst-atof1.c │ ├── tst-atof2.c │ ├── tst-bsearch.c │ ├── tst-bz20544.c │ ├── tst-cxa_atexit.c │ ├── tst-empty-env.c │ ├── tst-environ.c │ ├── tst-fmtmsg.c │ ├── tst-fmtmsg.sh │ ├── tst-getrandom.c │ ├── tst-limits.c │ ├── tst-makecontext-align.c │ ├── tst-makecontext.c │ ├── tst-makecontext2.c │ ├── tst-makecontext3.c │ ├── tst-on_exit.c │ ├── tst-putenv.c │ ├── tst-putenvmod.c │ ├── tst-qsort.c │ ├── tst-qsort2.c │ ├── tst-quick_exit.cc │ ├── tst-rand48-2.c │ ├── tst-rand48.c │ ├── tst-random.c │ ├── tst-random2.c │ ├── tst-secure-getenv.c │ ├── tst-setcontext.c │ ├── tst-setcontext2.c │ ├── tst-setcontext3.c │ ├── tst-setcontext3.sh │ ├── tst-setcontext4.c │ ├── tst-setcontext5.c │ ├── tst-setcontext6.c │ ├── tst-setcontext7.c │ ├── tst-setcontext8.c │ ├── tst-setcontext9.c │ ├── tst-strfmon_l.c │ ├── tst-strfrom-locale.c │ ├── tst-strfrom.c │ ├── tst-strfrom.h │ ├── tst-strtod-nan-locale-main.c │ ├── tst-strtod-nan-locale.c │ ├── tst-strtod-nan-sign-main.c │ ├── tst-strtod-nan-sign.c │ ├── tst-strtod-overflow.c │ ├── tst-strtod-round-data │ ├── tst-strtod-round-data.h │ ├── tst-strtod-round-skeleton.c │ ├── tst-strtod-round.c │ ├── tst-strtod-underflow.c │ ├── tst-strtod.c │ ├── tst-strtod.h │ ├── tst-strtod1i.c │ ├── tst-strtod2.c │ ├── tst-strtod3.c │ ├── tst-strtod4.c │ ├── tst-strtod5.c │ ├── tst-strtod5i.c │ ├── tst-strtod6.c │ ├── tst-strtol-locale-main.c │ ├── tst-strtol-locale.c │ ├── tst-strtol.c │ ├── tst-strtoll.c │ ├── tst-swapcontext1.c │ ├── tst-system.c │ ├── tst-thread-quick_exit.cc │ ├── tst-tininess.c │ ├── tst-tls-atexit-lib.c │ ├── tst-tls-atexit-nodelete.c │ ├── tst-tls-atexit.c │ ├── tst-unsetenv1.c │ ├── tst-width-stdint.c │ ├── tst-width.c │ ├── tst-xpg-basename.c │ ├── ucontext.h │ ├── udiv_qrnnd.c │ ├── wcstoimax.c │ ├── wcstombs.c │ ├── wcstoumax.c │ ├── wctomb.c │ └── xpg_basename.c ├── string │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── _strerror.c │ ├── argz-addsep.c │ ├── argz-append.c │ ├── argz-count.c │ ├── argz-create.c │ ├── argz-ctsep.c │ ├── argz-delete.c │ ├── argz-extract.c │ ├── argz-insert.c │ ├── argz-next.c │ ├── argz-replace.c │ ├── argz-stringify.c │ ├── argz.h │ ├── basename.c │ ├── bcopy.c │ ├── bits │ │ ├── string_fortified.h │ │ └── strings_fortified.h │ ├── bug-envz1.c │ ├── bug-strcoll1.c │ ├── bug-strcoll2.c │ ├── bug-strncat1.c │ ├── bug-strpbrk1.c │ ├── bug-strspn1.c │ ├── bug-strtok1.c │ ├── byteswap.h │ ├── bzero.c │ ├── endian.h │ ├── envz.c │ ├── envz.h │ ├── explicit_bzero.c │ ├── ffs.c │ ├── ffsll.c │ ├── inl-tester.c │ ├── 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 │ ├── str-two-way.h │ ├── 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_l.c │ ├── strfry.c │ ├── string-inlines.c │ ├── string.h │ ├── 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 │ ├── strverscmp.c │ ├── strxfrm.c │ ├── strxfrm_l.c │ ├── swab.c │ ├── test-bcopy.c │ ├── test-bzero.c │ ├── test-endian-file-scope.c │ ├── test-endian-sign-conversion.c │ ├── test-endian-types.c │ ├── test-explicit_bzero.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-memrchr.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-strerror-errno.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 │ ├── testcopy.c │ ├── tester.c │ ├── tst-bswap.c │ ├── tst-cmp.c │ ├── tst-endian.c │ ├── tst-inlcall.c │ ├── tst-strcoll-overflow.c │ ├── tst-strfry.c │ ├── tst-strlen.c │ ├── tst-strtok.c │ ├── tst-strtok_r.c │ ├── tst-strxfrm.c │ ├── tst-strxfrm2.c │ ├── tst-svc.c │ ├── tst-svc.expect │ ├── tst-svc.input │ ├── tst-svc2.c │ ├── tst-xbzero-opt.c │ ├── wordcopy.c │ └── xpg-strerror.c ├── sunrpc │ ├── Makefile │ ├── Versions │ ├── auth_des.c │ ├── auth_none.c │ ├── auth_unix.c │ ├── authdes_prot.c │ ├── authuxprot.c │ ├── bindrsvprt.c │ ├── bug20790.x │ ├── 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 │ ├── getrpcbyname.c │ ├── getrpcbyname_r.c │ ├── getrpcbynumber.c │ ├── getrpcbynumber_r.c │ ├── getrpcent.c │ ├── getrpcent_r.c │ ├── getrpcport.c │ ├── key_call.c │ ├── key_prot.c │ ├── netname.c │ ├── openchild.c │ ├── pm_getmaps.c │ ├── pm_getport.c │ ├── pmap_clnt.c │ ├── pmap_prot.c │ ├── pmap_prot2.c │ ├── pmap_rmt.c │ ├── proto.h │ ├── publickey.c │ ├── rpc │ │ ├── auth.h │ │ ├── auth_des.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_des.h │ │ ├── rpc_msg.h │ │ ├── svc.h │ │ ├── svc_auth.h │ │ ├── types.h │ │ └── xdr.h │ ├── rpc_clntout.c │ ├── rpc_cmsg.c │ ├── rpc_common.c │ ├── rpc_cout.c │ ├── rpc_dtable.c │ ├── rpc_gethostbyname.c │ ├── rpc_hout.c │ ├── rpc_main.c │ ├── rpc_parse.c │ ├── rpc_parse.h │ ├── rpc_prot.c │ ├── rpc_sample.c │ ├── rpc_scan.c │ ├── rpc_scan.h │ ├── rpc_svcout.c │ ├── rpc_tblout.c │ ├── rpc_thread.c │ ├── rpc_util.c │ ├── rpc_util.h │ ├── rpcgen.c │ ├── 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 │ ├── rtime.c │ ├── svc.c │ ├── svc_auth.c │ ├── svc_authux.c │ ├── svc_raw.c │ ├── svc_run.c │ ├── svc_simple.c │ ├── svc_tcp.c │ ├── svc_udp.c │ ├── svc_unix.c │ ├── svcauth_des.c │ ├── test-rpcent.c │ ├── thrsvc.c │ ├── tst-getmyaddr.c │ ├── tst-svc_register.c │ ├── tst-udp-error.c │ ├── tst-udp-garbage.c │ ├── tst-udp-nonblocking.c │ ├── tst-udp-timeout.c │ ├── tst-xdrmem.c │ ├── tst-xdrmem2.c │ ├── xcrypt.c │ ├── xdr.c │ ├── xdr_array.c │ ├── xdr_float.c │ ├── xdr_intXX_t.c │ ├── xdr_mem.c │ ├── xdr_rec.c │ ├── xdr_ref.c │ ├── xdr_sizeof.c │ └── xdr_stdio.c ├── support │ ├── Makefile │ ├── README │ ├── README-testing.c │ ├── blob_repeat.c │ ├── blob_repeat.h │ ├── capture_subprocess.h │ ├── check.c │ ├── check.h │ ├── check_addrinfo.c │ ├── check_dns_packet.c │ ├── check_hostent.c │ ├── check_netent.c │ ├── check_nss.h │ ├── delayed_exit.c │ ├── descriptors.h │ ├── echo-container.c │ ├── format_nss.h │ ├── ignore_stderr.c │ ├── links-dso-program-c.c │ ├── links-dso-program.cc │ ├── namespace.h │ ├── next_to_fault.c │ ├── next_to_fault.h │ ├── oom_error.c │ ├── resolv_test.c │ ├── resolv_test.h │ ├── run_diff.h │ ├── set_fortify_handler.c │ ├── shell-container.c │ ├── subprocess.h │ ├── support-xfstat.c │ ├── support-xstat.c │ ├── support.h │ ├── support_become_root.c │ ├── support_can_chroot.c │ ├── support_capture_subprocess.c │ ├── support_capture_subprocess_check.c │ ├── support_chroot.c │ ├── support_copy_file_range.c │ ├── support_descriptor_supports_holes.c │ ├── support_descriptors.c │ ├── support_enter_mount_namespace.c │ ├── support_enter_network_namespace.c │ ├── support_format_address_family.c │ ├── support_format_addrinfo.c │ ├── support_format_dns_packet.c │ ├── support_format_herrno.c │ ├── support_format_hostent.c │ ├── support_format_netent.c │ ├── support_isolate_in_subprocess.c │ ├── support_openpty.c │ ├── support_paths.c │ ├── support_quote_blob.c │ ├── support_quote_string.c │ ├── support_record_failure.c │ ├── support_run_diff.c │ ├── support_shared_allocate.c │ ├── support_subprocess.c │ ├── support_test_compare_blob.c │ ├── support_test_compare_failure.c │ ├── support_test_compare_string.c │ ├── support_test_main.c │ ├── support_test_verify_impl.c │ ├── support_write_file_string.c │ ├── temp_file-internal.h │ ├── temp_file.c │ ├── temp_file.h │ ├── test-container.c │ ├── test-driver.c │ ├── test-driver.h │ ├── timespec-add.c │ ├── timespec-sub.c │ ├── timespec.c │ ├── timespec.h │ ├── true-container.c │ ├── tst-support-namespace.c │ ├── tst-support_blob_repeat.c │ ├── tst-support_capture_subprocess.c │ ├── tst-support_descriptors.c │ ├── tst-support_format_dns_packet.c │ ├── tst-support_quote_blob.c │ ├── tst-support_quote_string.c │ ├── tst-support_record_failure-2.sh │ ├── tst-support_record_failure.c │ ├── tst-test_compare.c │ ├── tst-test_compare_blob.c │ ├── tst-test_compare_string.c │ ├── tst-xreadlink.c │ ├── tst-xsigstack.c │ ├── tty.h │ ├── write_message.c │ ├── xaccept.c │ ├── xaccept4.c │ ├── xasprintf.c │ ├── xbind.c │ ├── xcalloc.c │ ├── xchroot.c │ ├── xclock_gettime.c │ ├── xclose.c │ ├── xconnect.c │ ├── xcopy_file_range.c │ ├── xdlfcn.c │ ├── xdlfcn.h │ ├── xdlmopen.c │ ├── xdup2.c │ ├── xfclose.c │ ├── xfopen.c │ ├── xfork.c │ ├── xftruncate.c │ ├── xgetsockname.c │ ├── xlisten.c │ ├── xlseek.c │ ├── xmalloc.c │ ├── xmemstream.c │ ├── xmemstream.h │ ├── xmkdir.c │ ├── xmkdirp.c │ ├── xmmap.c │ ├── xmprotect.c │ ├── xmunmap.c │ ├── xopen.c │ ├── xpipe.c │ ├── xpoll.c │ ├── xposix_memalign.c │ ├── xposix_spawn.c │ ├── xposix_spawn_file_actions_addclose.c │ ├── xposix_spawn_file_actions_adddup2.c │ ├── xpthread_attr_destroy.c │ ├── xpthread_attr_init.c │ ├── xpthread_attr_setdetachstate.c │ ├── xpthread_attr_setguardsize.c │ ├── xpthread_attr_setstack.c │ ├── xpthread_attr_setstacksize.c │ ├── xpthread_barrier_destroy.c │ ├── xpthread_barrier_init.c │ ├── xpthread_barrier_wait.c │ ├── xpthread_barrierattr_destroy.c │ ├── xpthread_barrierattr_init.c │ ├── xpthread_barrierattr_setpshared.c │ ├── xpthread_cancel.c │ ├── xpthread_check_return.c │ ├── xpthread_cond_wait.c │ ├── xpthread_create.c │ ├── xpthread_detach.c │ ├── xpthread_join.c │ ├── xpthread_mutex_consistent.c │ ├── xpthread_mutex_destroy.c │ ├── xpthread_mutex_init.c │ ├── xpthread_mutex_lock.c │ ├── xpthread_mutex_unlock.c │ ├── xpthread_mutexattr_destroy.c │ ├── xpthread_mutexattr_init.c │ ├── xpthread_mutexattr_setprotocol.c │ ├── xpthread_mutexattr_setpshared.c │ ├── xpthread_mutexattr_setrobust.c │ ├── xpthread_mutexattr_settype.c │ ├── xpthread_once.c │ ├── xpthread_rwlock_destroy.c │ ├── xpthread_rwlock_init.c │ ├── xpthread_rwlock_rdlock.c │ ├── xpthread_rwlock_unlock.c │ ├── xpthread_rwlock_wrlock.c │ ├── xpthread_rwlockattr_init.c │ ├── xpthread_rwlockattr_setkind_np.c │ ├── xpthread_sigmask.c │ ├── xpthread_spin_lock.c │ ├── xpthread_spin_unlock.c │ ├── xraise.c │ ├── xreadlink.c │ ├── xrealloc.c │ ├── xrecvfrom.c │ ├── xsendto.c │ ├── xsetsockopt.c │ ├── xsigaction.c │ ├── xsignal.c │ ├── xsignal.h │ ├── xsigstack.c │ ├── xsocket.c │ ├── xsocket.h │ ├── xspawn.h │ ├── xstdio.h │ ├── xstrdup.c │ ├── xstrndup.c │ ├── xsymlink.c │ ├── xsysconf.c │ ├── xthread.h │ ├── xtime.h │ ├── xunistd.h │ ├── xunlink.c │ ├── xwaitpid.c │ └── xwrite.c ├── sysdeps │ ├── aarch64 │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── __longjmp.S │ │ ├── abort-instr.h │ │ ├── atomic-machine.h │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fenv.h │ │ │ ├── fp-fast.h │ │ │ ├── link.h │ │ │ ├── setjmp.h │ │ │ └── wordsize.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── configure │ │ ├── configure.ac │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-dtprocnum.h │ │ ├── dl-irel.h │ │ ├── dl-link.sym │ │ ├── dl-machine.h │ │ ├── dl-sysdep.h │ │ ├── dl-tls.h │ │ ├── dl-tlsdesc.S │ │ ├── dl-tlsdesc.h │ │ ├── dl-trampoline.S │ │ ├── dl-tunables.list │ │ ├── e_sqrtl.c │ │ ├── fpu │ │ │ ├── Makefile │ │ │ ├── e_sqrt.c │ │ │ ├── e_sqrtf.c │ │ │ ├── fclrexcpt.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetmode.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fenv_private.h │ │ │ ├── fesetenv.c │ │ │ ├── fesetexcept.c │ │ │ ├── fesetmode.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fpu_control.h │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ ├── ftestexcept.c │ │ │ ├── get-rounding-mode.h │ │ │ ├── math-barriers.h │ │ │ ├── math_private.h │ │ │ ├── s_ceil.c │ │ │ ├── s_ceilf.c │ │ │ ├── s_floor.c │ │ │ ├── s_floorf.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmaf.c │ │ │ ├── s_fmax.c │ │ │ ├── s_fmaxf.c │ │ │ ├── s_fmin.c │ │ │ ├── s_fminf.c │ │ │ ├── s_llrint.c │ │ │ ├── s_llrintf.c │ │ │ ├── s_llround.c │ │ │ ├── s_llroundf.c │ │ │ ├── s_lrint.c │ │ │ ├── s_lrintf.c │ │ │ ├── s_lround.c │ │ │ ├── s_lroundf.c │ │ │ ├── s_nearbyint.c │ │ │ ├── s_nearbyintf.c │ │ │ ├── s_rint.c │ │ │ ├── s_rintf.c │ │ │ ├── s_round.c │ │ │ ├── s_roundf.c │ │ │ ├── s_trunc.c │ │ │ └── s_truncf.c │ │ ├── jmpbuf-offsets.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldsodefs.h │ │ ├── libc-tls.c │ │ ├── libm-test-ulps │ │ ├── libm-test-ulps-name │ │ ├── linkmap.h │ │ ├── machine-gmon.h │ │ ├── math-tests-trap.h │ │ ├── mcount.c │ │ ├── memchr.S │ │ ├── memcmp.S │ │ ├── memcpy.S │ │ ├── memmove.S │ │ ├── memset-reg.h │ │ ├── memset.S │ │ ├── memusage.h │ │ ├── multiarch │ │ │ ├── Makefile │ │ │ ├── ifunc-impl-list.c │ │ │ ├── init-arch.h │ │ │ ├── memchr.c │ │ │ ├── memchr_generic.S │ │ │ ├── memchr_nosimd.S │ │ │ ├── memcpy.c │ │ │ ├── memcpy_falkor.S │ │ │ ├── memcpy_generic.S │ │ │ ├── memcpy_thunderx.S │ │ │ ├── memcpy_thunderx2.S │ │ │ ├── memmove.c │ │ │ ├── memmove_falkor.S │ │ │ ├── memset.c │ │ │ ├── memset_base64.S │ │ │ ├── memset_emag.S │ │ │ ├── memset_falkor.S │ │ │ ├── memset_generic.S │ │ │ ├── rtld-memset.S │ │ │ ├── strlen.c │ │ │ ├── strlen_asimd.S │ │ │ └── strlen_generic.S │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── pthreadtypes-arch.h │ │ │ │ └── semaphore.h │ │ │ ├── pthread-offsets.h │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── preconfigure │ │ ├── rawmemchr.S │ │ ├── setjmp.S │ │ ├── sfp-machine.h │ │ ├── sotruss-lib.c │ │ ├── stackinfo.h │ │ ├── start.S │ │ ├── stpcpy.S │ │ ├── strchr.S │ │ ├── strchrnul.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── string_private.h │ │ ├── strlen.S │ │ ├── strncmp.S │ │ ├── strnlen.S │ │ ├── strrchr.S │ │ ├── sys │ │ │ └── ifunc.h │ │ ├── sysdep.h │ │ ├── tls-macros.h │ │ ├── tlsdesc.c │ │ ├── tlsdesc.sym │ │ ├── tst-audit.h │ │ ├── tst-ifunc-arg-1.c │ │ └── tst-ifunc-arg-2.c │ ├── alpha │ │ ├── Implies │ │ ├── Makefile │ │ ├── Subdirs │ │ ├── Versions │ │ ├── __longjmp.S │ │ ├── _mcount.S │ │ ├── add_n.S │ │ ├── addmul_1.S │ │ ├── alphaev5 │ │ │ ├── add_n.S │ │ │ ├── lshift.S │ │ │ ├── rshift.S │ │ │ └── sub_n.S │ │ ├── alphaev6 │ │ │ ├── Implies │ │ │ ├── addmul_1.S │ │ │ ├── fpu │ │ │ │ ├── e_sqrt.S │ │ │ │ └── e_sqrtf.S │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── stxcpy.S │ │ │ └── stxncpy.S │ │ ├── alphaev67 │ │ │ ├── Implies │ │ │ ├── ffs.S │ │ │ ├── ffsll.S │ │ │ ├── fpu │ │ │ │ └── Implies │ │ │ ├── rawmemchr.S │ │ │ ├── stpcpy.S │ │ │ ├── stpncpy.S │ │ │ ├── strcat.S │ │ │ ├── strchr.S │ │ │ ├── strlen.S │ │ │ ├── strncat.S │ │ │ └── strrchr.S │ │ ├── atomic-machine.h │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── link.h │ │ │ ├── mathdef.h │ │ │ └── setjmp.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── bzero.S │ │ ├── configure │ │ ├── configure.ac │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── div.S │ │ ├── div_libc.h │ │ ├── divl.S │ │ ├── divlu.S │ │ ├── divq.S │ │ ├── divqu.S │ │ ├── dl-dtprocnum.h │ │ ├── dl-machine.h │ │ ├── dl-procinfo.c │ │ ├── dl-procinfo.h │ │ ├── dl-sysdep.h │ │ ├── dl-tls.h │ │ ├── dl-trampoline.S │ │ ├── e_sqrtl.c │ │ ├── ffs.S │ │ ├── ffsll.S │ │ ├── fpu │ │ │ ├── Versions │ │ │ ├── bits │ │ │ │ └── fenv.h │ │ │ ├── cabsf.c │ │ │ ├── cargf.c │ │ │ ├── cfloat-compat.h │ │ │ ├── cimagf.c │ │ │ ├── conjf.c │ │ │ ├── crealf.c │ │ │ ├── e_sqrt.c │ │ │ ├── e_sqrtf.c │ │ │ ├── fclrexcpt.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetmode.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fenv_libc.h │ │ │ ├── fesetenv.c │ │ │ ├── fesetexcept.c │ │ │ ├── fesetmode.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fpu_control.h │ │ │ ├── fsetexcptflg.c │ │ │ ├── ftestexcept.c │ │ │ ├── get-rounding-mode.h │ │ │ ├── libm-test-ulps │ │ │ ├── libm-test-ulps-name │ │ │ ├── math-barriers.h │ │ │ ├── s_cacosf.c │ │ │ ├── s_cacoshf.c │ │ │ ├── s_casinf.c │ │ │ ├── s_casinhf.c │ │ │ ├── s_catanf.c │ │ │ ├── s_catanhf.c │ │ │ ├── s_ccosf.c │ │ │ ├── s_ccoshf.c │ │ │ ├── s_cexpf.c │ │ │ ├── s_clog10f.c │ │ │ ├── s_clogf.c │ │ │ ├── s_copysign.c │ │ │ ├── s_copysignf.c │ │ │ ├── s_cpowf.c │ │ │ ├── s_cprojf.c │ │ │ ├── s_csinf.c │ │ │ ├── s_csinhf.c │ │ │ ├── s_csqrtf.c │ │ │ ├── s_ctanf.c │ │ │ ├── s_ctanhf.c │ │ │ ├── s_fabs.c │ │ │ ├── s_fabsf.c │ │ │ ├── s_fma.c │ │ │ ├── s_isnan.c │ │ │ ├── s_isnanf.c │ │ │ ├── s_llrint.c │ │ │ ├── s_llrintf.c │ │ │ ├── s_llround.c │ │ │ ├── s_llroundf.c │ │ │ ├── s_lrint.c │ │ │ ├── s_lrintf.c │ │ │ ├── s_lround.c │ │ │ ├── s_lroundf.c │ │ │ ├── s_rint.c │ │ │ └── s_rintf.c │ │ ├── gccframe.h │ │ ├── hp-timing.h │ │ ├── htonl.S │ │ ├── htons.S │ │ ├── jmpbuf-offsets.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldiv.S │ │ ├── ldsodefs.h │ │ ├── libc-tls.c │ │ ├── lldiv.S │ │ ├── local-soft-fp.h │ │ ├── lshift.S │ │ ├── machine-gmon.h │ │ ├── memchr.c │ │ ├── memset.S │ │ ├── memusage.h │ │ ├── mul_1.S │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ └── pthreadtypes-arch.h │ │ │ ├── pthread-offsets.h │ │ │ ├── pthread_spin_lock.S │ │ │ ├── pthread_spin_trylock.S │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── nscd-types.h │ │ ├── ots_add.c │ │ ├── ots_cmp.c │ │ ├── ots_cmpe.c │ │ ├── ots_cvtqux.c │ │ ├── ots_cvtqx.c │ │ ├── ots_cvttx.c │ │ ├── ots_cvtxq.c │ │ ├── ots_cvtxt.c │ │ ├── ots_div.c │ │ ├── ots_mul.c │ │ ├── ots_nintxq.c │ │ ├── ots_sub.c │ │ ├── preconfigure │ │ ├── rawmemchr.S │ │ ├── reml.S │ │ ├── remlu.S │ │ ├── remq.S │ │ ├── remqu.S │ │ ├── rshift.S │ │ ├── setjmp.S │ │ ├── sfp-machine.h │ │ ├── sotruss-lib.c │ │ ├── stackinfo.h │ │ ├── start.S │ │ ├── stpcpy.S │ │ ├── stpncpy.S │ │ ├── strcat.S │ │ ├── strchr.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strlen.S │ │ ├── strncat.S │ │ ├── strncmp.S │ │ ├── strncpy.S │ │ ├── strrchr.S │ │ ├── stxcpy.S │ │ ├── stxncpy.S │ │ ├── sub_n.S │ │ ├── submul_1.S │ │ ├── tininess.h │ │ ├── tls-macros.h │ │ ├── tst-audit.h │ │ └── udiv_qrnnd.S │ ├── arm │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── __longjmp.S │ │ ├── abi-note.S │ │ ├── add_n.S │ │ ├── addmul_1.S │ │ ├── aeabi_assert.c │ │ ├── aeabi_atexit.c │ │ ├── aeabi_errno_addr.c │ │ ├── aeabi_lcsts.c │ │ ├── aeabi_localeconv.c │ │ ├── aeabi_math.c │ │ ├── aeabi_mb_cur_max.c │ │ ├── aeabi_memclr.c │ │ ├── aeabi_memcpy.c │ │ ├── aeabi_memmove.c │ │ ├── aeabi_memset.c │ │ ├── aeabi_sighandlers.S │ │ ├── aeabi_unwind_cpp_pr1.c │ │ ├── arm-features.h │ │ ├── arm-ifunc.h │ │ ├── arm-mcount.S │ │ ├── arm-unwind-resume.S │ │ ├── armv6 │ │ │ ├── rawmemchr.S │ │ │ ├── stpcpy.S │ │ │ ├── strchr.S │ │ │ ├── strcpy.S │ │ │ ├── strlen.S │ │ │ └── strrchr.S │ │ ├── armv6t2 │ │ │ ├── Implies │ │ │ ├── ffs.S │ │ │ ├── ffsll.S │ │ │ ├── memchr.S │ │ │ └── strlen.S │ │ ├── armv7 │ │ │ ├── Implies │ │ │ ├── multiarch │ │ │ │ ├── Makefile │ │ │ │ ├── aeabi_memcpy.c │ │ │ │ ├── ifunc-impl-list.c │ │ │ │ ├── ifunc-memchr.h │ │ │ │ ├── ifunc-memcpy.h │ │ │ │ ├── memchr.c │ │ │ │ ├── memchr_neon.S │ │ │ │ ├── memchr_noneon.S │ │ │ │ ├── memcpy.c │ │ │ │ ├── memcpy_arm.S │ │ │ │ ├── memcpy_impl.S │ │ │ │ ├── memcpy_neon.S │ │ │ │ ├── memcpy_vfp.S │ │ │ │ ├── rtld-memchr.S │ │ │ │ └── rtld-memcpy.S │ │ │ └── strcmp.S │ │ ├── atomic-machine.h │ │ ├── backtrace.c │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fenv.h │ │ │ ├── link.h │ │ │ └── setjmp.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── configure │ │ ├── configure.ac │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-irel.h │ │ ├── dl-lookupcfg.h │ │ ├── dl-machine.h │ │ ├── dl-sysdep.h │ │ ├── dl-tls.h │ │ ├── dl-tlsdesc.S │ │ ├── dl-tlsdesc.h │ │ ├── dl-trampoline.S │ │ ├── e_sqrt.c │ │ ├── e_sqrtf.c │ │ ├── fclrexcpt.c │ │ ├── fedisblxcpt.c │ │ ├── feenablxcpt.c │ │ ├── fegetenv.c │ │ ├── fegetexcept.c │ │ ├── fegetmode.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fenv_private.h │ │ ├── fesetenv.c │ │ ├── fesetexcept.c │ │ ├── fesetmode.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── find_exidx.c │ │ ├── fix-fp-int-convert-overflow.h │ │ ├── fpu_control.h │ │ ├── fraiseexcpt.c │ │ ├── framestate.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── gcc-compat.h │ │ ├── gccframe.h │ │ ├── get-rounding-mode.h │ │ ├── gmp-mparam.h │ │ ├── include │ │ │ └── bits │ │ │ │ └── setjmp.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldbl-classify-compat.h │ │ ├── ldsodefs.h │ │ ├── libc-aeabi_read_tp.S │ │ ├── libc-tls.c │ │ ├── libm-test-ulps │ │ ├── libm-test-ulps-name │ │ ├── linkmap.h │ │ ├── machine-gmon.h │ │ ├── math-tests-trap.h │ │ ├── memcpy.S │ │ ├── memmove.S │ │ ├── memset.S │ │ ├── memusage.h │ │ ├── nofpu │ │ │ ├── Implies │ │ │ ├── math-tests-exceptions.h │ │ │ └── math-tests-rounding.h │ │ ├── nptl-aeabi_unwind_cpp_pr1.c │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── pthreadtypes-arch.h │ │ │ │ └── semaphore.h │ │ │ ├── pthread-offsets.h │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── preconfigure │ │ ├── preconfigure.ac │ │ ├── pt-arm-unwind-resume.S │ │ ├── rt-aeabi_unwind_cpp_pr1.c │ │ ├── rt-arm-unwind-resume.S │ │ ├── rtld-global-offsets.sym │ │ ├── setfpucw.c │ │ ├── setjmp.S │ │ ├── sfp-machine.h │ │ ├── sotruss-lib.c │ │ ├── stackinfo.h │ │ ├── stap-probe-machine.h │ │ ├── start.S │ │ ├── static-stubs.c │ │ ├── strlen.S │ │ ├── sub_n.S │ │ ├── submul_1.S │ │ ├── sys │ │ │ └── ucontext.h │ │ ├── sysdep.h │ │ ├── test-fpucw.c │ │ ├── tls-macros.h │ │ ├── tlsdesc.c │ │ ├── tlsdesc.sym │ │ ├── tst-armtlsdescextlazy.c │ │ ├── tst-armtlsdescextlazymod.c │ │ ├── tst-armtlsdescextnow.c │ │ ├── tst-armtlsdescextnowmod.c │ │ ├── tst-armtlsdescloc.c │ │ ├── tst-armtlsdesclocmod.c │ │ ├── tst-audit.h │ │ ├── unwind-dw2-fde-glibc.c │ │ ├── unwind-pe.c │ │ ├── unwind-resume.h │ │ └── unwind.h │ ├── csky │ │ ├── Implies │ │ ├── Makefile │ │ ├── abiv2 │ │ │ ├── __longjmp.S │ │ │ ├── csky-mcount.S │ │ │ ├── dl-trampoline.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ ├── setjmp.S │ │ │ ├── start.S │ │ │ ├── strcmp.S │ │ │ ├── strcpy.S │ │ │ ├── strlen.S │ │ │ └── tls-macros.h │ │ ├── abort-instr.h │ │ ├── atomic-machine.h │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fenv.h │ │ │ ├── link.h │ │ │ └── setjmp.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── configure │ │ ├── configure.ac │ │ ├── dl-machine.h │ │ ├── dl-procinfo.c │ │ ├── dl-procinfo.h │ │ ├── dl-sysdep.h │ │ ├── dl-tls.h │ │ ├── fpu │ │ │ ├── fclrexcpt.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetmode.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fenv_libc.h │ │ │ ├── fenv_private.h │ │ │ ├── fesetenv.c │ │ │ ├── fesetexcept.c │ │ │ ├── fesetmode.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fix-fp-int-convert-overflow.h │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ ├── ftestexcept.c │ │ │ ├── libm-test-ulps │ │ │ └── libm-test-ulps-name │ │ ├── fpu_control.h │ │ ├── gccframe.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldsodefs.h │ │ ├── libc-tls.c │ │ ├── linkmap.h │ │ ├── machine-gmon.h │ │ ├── memusage.h │ │ ├── nofpu │ │ │ ├── Implies │ │ │ ├── libm-test-ulps │ │ │ └── libm-test-ulps-name │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── pthreadtypes-arch.h │ │ │ │ └── semaphore.h │ │ │ ├── pthread-offsets.h │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── preconfigure │ │ ├── sfp-machine.h │ │ ├── sotruss-lib.c │ │ ├── stackinfo.h │ │ ├── sysdep.h │ │ ├── tininess.h │ │ └── tst-audit.h │ ├── generic │ │ ├── Makefile │ │ ├── _G_config.h │ │ ├── _itoa.h │ │ ├── a.out.h │ │ ├── abort-instr.h │ │ ├── adaptive_spin_count.h │ │ ├── aio_misc.h │ │ ├── allocalim.h │ │ ├── asm-syntax.h │ │ ├── atomic-machine.h │ │ ├── c++-types.data │ │ ├── confstr.h │ │ ├── device-nrs.h │ │ ├── dirstream.h │ │ ├── dl-cache.h │ │ ├── dl-dtprocnum.h │ │ ├── dl-dtv.h │ │ ├── dl-fcntl.h │ │ ├── dl-fileid.h │ │ ├── dl-fptr.h │ │ ├── dl-hash.h │ │ ├── dl-irel.h │ │ ├── dl-librecon.h │ │ ├── dl-lookupcfg.h │ │ ├── dl-machine.h │ │ ├── dl-mman.h │ │ ├── dl-osinfo.h │ │ ├── dl-procinfo.c │ │ ├── dl-procinfo.h │ │ ├── dl-procruntime.c │ │ ├── dl-prop.h │ │ ├── dl-sysdep.h │ │ ├── dl-tls.h │ │ ├── dl-unistd.h │ │ ├── dwarf2.h │ │ ├── elide.h │ │ ├── eloop-threshold.h │ │ ├── entry.h │ │ ├── errqueue.h │ │ ├── exit-thread.h │ │ ├── fd_to_filename.h │ │ ├── fenv_private.h │ │ ├── fips-private.h │ │ ├── fix-fp-int-compare-invalid.h │ │ ├── fix-fp-int-convert-overflow.h │ │ ├── fix-int-fp-convert-zero.h │ │ ├── float128-abi.h │ │ ├── fork.h │ │ ├── fpu_control.h │ │ ├── framestate.c │ │ ├── gcc-compat.h │ │ ├── gccframe.h │ │ ├── get-rounding-mode.h │ │ ├── gmp-mparam.h │ │ ├── hp-timing-common.h │ │ ├── hp-timing.h │ │ ├── ifreq.h │ │ ├── ifunc-init.h │ │ ├── ifunc-sel.h │ │ ├── internal-signals.h │ │ ├── intr-msg.h │ │ ├── ld.abilist │ │ ├── ldbl-classify-compat.h │ │ ├── ldconfig.h │ │ ├── ldsodefs.h │ │ ├── libBrokenLocale.abilist │ │ ├── libanl.abilist │ │ ├── libc-lock.h │ │ ├── libc-mmap.h │ │ ├── libc-start.h │ │ ├── libc-tsd.h │ │ ├── libc.abilist │ │ ├── libcrypt.abilist │ │ ├── libdl.abilist │ │ ├── libm-alias-double.h │ │ ├── libm-alias-float.h │ │ ├── libm-alias-float128.h │ │ ├── libm-alias-ldouble.h │ │ ├── libm-test-ulps │ │ ├── libm-test-ulps-name │ │ ├── libm.abilist │ │ ├── libnsl.abilist │ │ ├── libnss_compat.abilist │ │ ├── libnss_db.abilist │ │ ├── libnss_dns.abilist │ │ ├── libnss_files.abilist │ │ ├── libnss_hesiod.abilist │ │ ├── libnss_nis.abilist │ │ ├── libnss_nisplus.abilist │ │ ├── libpthread.abilist │ │ ├── libresolv.abilist │ │ ├── librt.abilist │ │ ├── libutil.abilist │ │ ├── link_map.h │ │ ├── linkmap.h │ │ ├── local-setxid.h │ │ ├── localplt.data │ │ ├── machine-gmon.h │ │ ├── machine-lock.h │ │ ├── machine-sp.h │ │ ├── malloc-alignment.h │ │ ├── malloc-machine.h │ │ ├── malloc-sysdep.h │ │ ├── math-barriers.h │ │ ├── math-nan-payload-double.h │ │ ├── math-nan-payload-float.h │ │ ├── math-tests-arch.h │ │ ├── math-tests-exceptions.h │ │ ├── math-tests-rounding.h │ │ ├── math-tests-snan-cast.h │ │ ├── math-tests-snan-payload.h │ │ ├── math-tests-snan.h │ │ ├── math-tests-trap-force.h │ │ ├── math-tests-trap.h │ │ ├── math-tests.h │ │ ├── math-type-macros-double.h │ │ ├── math-type-macros-float.h │ │ ├── math-type-macros-float128.h │ │ ├── math-type-macros-ldouble.h │ │ ├── math-type-macros.h │ │ ├── math_ldbl.h │ │ ├── math_ldbl_opt.h │ │ ├── math_private.h │ │ ├── math_private_calls.h │ │ ├── memcopy.h │ │ ├── memusage.h │ │ ├── mmap_info.h │ │ ├── nan-high-order-bit.h │ │ ├── net │ │ │ └── if.h │ │ ├── netinet │ │ │ ├── if_ether.h │ │ │ ├── in_systm.h │ │ │ ├── ip.h │ │ │ └── tcp.h │ │ ├── nfs │ │ │ └── nfs.h │ │ ├── not-cancel.h │ │ ├── not-errno.h │ │ ├── nscd-types.h │ │ ├── pagecopy.h │ │ ├── paths.h │ │ ├── profil-counter.h │ │ ├── pty-private.h │ │ ├── register-dump.h │ │ ├── rtld-lowlevel.h │ │ ├── safe-fatal.h │ │ ├── setjmpP.h │ │ ├── sigcontextinfo.h │ │ ├── siglist.h │ │ ├── sigset-cvt-mask.h │ │ ├── sigsetops.h │ │ ├── single-thread.h │ │ ├── stackguard-macros.h │ │ ├── stackinfo.h │ │ ├── stap-probe-machine.h │ │ ├── startup.h │ │ ├── stdio-lock.h │ │ ├── string_private.h │ │ ├── symbol-hacks.h │ │ ├── sys │ │ │ ├── ptrace.h │ │ │ ├── reboot.h │ │ │ ├── socketvar.h │ │ │ ├── swap.h │ │ │ ├── syscall.h │ │ │ ├── sysinfo.h │ │ │ ├── ttydefaults.h │ │ │ └── ucontext.h │ │ ├── sysdep-cancel.h │ │ ├── sysdep.h │ │ ├── thread_state.h │ │ ├── tininess.h │ │ ├── tls-macros.h │ │ ├── tls-setup.h │ │ ├── tls.h │ │ ├── tst-audit.h │ │ ├── tst-stack-align.h │ │ ├── unsecvars.h │ │ ├── unwind-dw2-fde-glibc.c │ │ ├── unwind-dw2-fde.c │ │ ├── unwind-dw2-fde.h │ │ ├── unwind-dw2.c │ │ ├── unwind-pe.c │ │ ├── unwind-pe.h │ │ ├── unwind-resume.h │ │ ├── unwind.h │ │ └── utmp-equal.h │ ├── gnu │ │ ├── Makefile │ │ ├── bits │ │ │ ├── ipc.h │ │ │ ├── msq.h │ │ │ ├── sem.h │ │ │ ├── shm.h │ │ │ ├── utmp.h │ │ │ └── utmpx.h │ │ ├── configure │ │ ├── configure.ac │ │ ├── errlist-compat.awk │ │ ├── errlist.awk │ │ ├── errlist.c │ │ ├── getutmp.c │ │ ├── getutmpx.c │ │ ├── glob-lstat-compat.c │ │ ├── glob64-lstat-compat.c │ │ ├── glob64.c │ │ ├── globfree64.c │ │ ├── ifaddrs.c │ │ ├── ldsodefs.h │ │ ├── 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 │ ├── hppa │ │ ├── Makefile │ │ ├── Versions │ │ ├── __longjmp.c │ │ ├── abort-instr.h │ │ ├── add_n.S │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── link.h │ │ │ └── setjmp.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── configure │ │ ├── configure.ac │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-fptr.c │ │ ├── dl-fptr.h │ │ ├── dl-irel.h │ │ ├── dl-lookupcfg.h │ │ ├── dl-machine.h │ │ ├── dl-symaddr.c │ │ ├── dl-tls.h │ │ ├── dl-trampoline.S │ │ ├── entry.h │ │ ├── fpu │ │ │ ├── bits │ │ │ │ └── fenv.h │ │ │ ├── fclrexcpt.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetmode.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fesetenv.c │ │ │ ├── fesetexcept.c │ │ │ ├── fesetmode.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fpu_control.h │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ ├── ftestexcept.c │ │ │ ├── libm-test-ulps │ │ │ └── libm-test-ulps-name │ │ ├── gccframe.h │ │ ├── get-rounding-mode.h │ │ ├── hppa1.1 │ │ │ ├── Implies │ │ │ ├── addmul_1.S │ │ │ ├── mul_1.S │ │ │ ├── s_signbit.c │ │ │ ├── submul_1.S │ │ │ └── udiv_qrnnd.S │ │ ├── jmpbuf-offsets.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldsodefs.h │ │ ├── libc-tls.c │ │ ├── libgcc-compat.c │ │ ├── linkmap.h │ │ ├── lshift.S │ │ ├── machine-gmon.h │ │ ├── math-tests-snan-payload.h │ │ ├── memusage.h │ │ ├── mp_clz_tab.c │ │ ├── nan-high-order-bit.h │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── pthreadtypes-arch.h │ │ │ │ └── semaphore.h │ │ │ ├── jmpbuf-unwind.h │ │ │ ├── pthread-offsets.h │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_unlock.c │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ ├── tls.h │ │ │ └── tst-oddstacklimit.c │ │ ├── preconfigure │ │ ├── rshift.S │ │ ├── setjmp.S │ │ ├── shlib-versions │ │ ├── sotruss-lib.c │ │ ├── stackinfo.h │ │ ├── start.S │ │ ├── sub_n.S │ │ ├── sysdep.h │ │ ├── tininess.h │ │ ├── tls-macros.h │ │ ├── tst-audit.h │ │ └── udiv_qrnnd.S │ ├── htl │ │ ├── Implies │ │ ├── Makeconfig │ │ ├── Makefile │ │ ├── Subdirs │ │ ├── Versions │ │ ├── bits │ │ │ ├── cancelation.h │ │ │ ├── pthread-np.h │ │ │ ├── pthread.h │ │ │ ├── pthreadtypes.h │ │ │ ├── semaphore.h │ │ │ ├── thread-shared-types.h │ │ │ └── types │ │ │ │ ├── __pthread_key.h │ │ │ │ ├── struct___pthread_attr.h │ │ │ │ ├── struct___pthread_barrier.h │ │ │ │ ├── struct___pthread_barrierattr.h │ │ │ │ ├── struct___pthread_cond.h │ │ │ │ ├── struct___pthread_condattr.h │ │ │ │ ├── struct___pthread_mutex.h │ │ │ │ ├── struct___pthread_mutexattr.h │ │ │ │ ├── struct___pthread_once.h │ │ │ │ ├── struct___pthread_rwlock.h │ │ │ │ └── struct___pthread_rwlockattr.h │ │ ├── flockfile.c │ │ ├── fork.h │ │ ├── ftrylockfile.c │ │ ├── funlockfile.c │ │ ├── libc-lockP.h │ │ ├── old_pt-atfork.c │ │ ├── pt-atfork.c │ │ ├── pt-attr-destroy.c │ │ ├── pt-attr-getdetachstate.c │ │ ├── pt-attr-getguardsize.c │ │ ├── pt-attr-getinheritsched.c │ │ ├── pt-attr-getschedparam.c │ │ ├── pt-attr-getschedpolicy.c │ │ ├── pt-attr-getscope.c │ │ ├── pt-attr-getstack.c │ │ ├── pt-attr-getstackaddr.c │ │ ├── pt-attr-getstacksize.c │ │ ├── pt-attr-init.c │ │ ├── pt-attr-setdetachstate.c │ │ ├── pt-attr-setguardsize.c │ │ ├── pt-attr-setinheritsched.c │ │ ├── pt-attr-setschedparam.c │ │ ├── pt-attr-setschedpolicy.c │ │ ├── pt-attr-setscope.c │ │ ├── pt-attr-setstack.c │ │ ├── pt-attr-setstackaddr.c │ │ ├── pt-attr-setstacksize.c │ │ ├── pt-attr.c │ │ ├── pt-barrier-destroy.c │ │ ├── pt-barrier-init.c │ │ ├── pt-barrier-wait.c │ │ ├── pt-barrier.c │ │ ├── pt-barrierattr-destroy.c │ │ ├── pt-barrierattr-getpshared.c │ │ ├── pt-barrierattr-init.c │ │ ├── pt-barrierattr-setpshared.c │ │ ├── pt-cond-brdcast.c │ │ ├── pt-cond-destroy.c │ │ ├── pt-cond-init.c │ │ ├── pt-cond-signal.c │ │ ├── pt-cond-timedwait.c │ │ ├── pt-cond-wait.c │ │ ├── pt-cond.c │ │ ├── pt-condattr-destroy.c │ │ ├── pt-condattr-getclock.c │ │ ├── pt-condattr-getpshared.c │ │ ├── pt-condattr-init.c │ │ ├── pt-condattr-setclock.c │ │ ├── pt-condattr-setpshared.c │ │ ├── pt-destroy-specific.c │ │ ├── pt-equal.c │ │ ├── pt-getconcurrency.c │ │ ├── pt-getcpuclockid.c │ │ ├── pt-getschedparam.c │ │ ├── pt-getspecific.c │ │ ├── pt-init-specific.c │ │ ├── pt-key-create.c │ │ ├── pt-key-delete.c │ │ ├── pt-key.h │ │ ├── pt-kill.c │ │ ├── pt-mutex-destroy.c │ │ ├── pt-mutex-getprioceiling.c │ │ ├── pt-mutex-init.c │ │ ├── pt-mutex-lock.c │ │ ├── pt-mutex-setprioceiling.c │ │ ├── pt-mutex-timedlock.c │ │ ├── pt-mutex-transfer-np.c │ │ ├── pt-mutex-trylock.c │ │ ├── pt-mutex-unlock.c │ │ ├── pt-mutexattr-destroy.c │ │ ├── pt-mutexattr-getprioceiling.c │ │ ├── pt-mutexattr-getprotocol.c │ │ ├── pt-mutexattr-getpshared.c │ │ ├── pt-mutexattr-gettype.c │ │ ├── pt-mutexattr-init.c │ │ ├── pt-mutexattr-setprioceiling.c │ │ ├── pt-mutexattr-setprotocol.c │ │ ├── pt-mutexattr-setpshared.c │ │ ├── pt-mutexattr-settype.c │ │ ├── pt-mutexattr.c │ │ ├── pt-once.c │ │ ├── pt-rwlock-attr.c │ │ ├── pt-rwlock-destroy.c │ │ ├── pt-rwlock-init.c │ │ ├── pt-rwlock-rdlock.c │ │ ├── pt-rwlock-timedrdlock.c │ │ ├── pt-rwlock-timedwrlock.c │ │ ├── pt-rwlock-tryrdlock.c │ │ ├── pt-rwlock-trywrlock.c │ │ ├── pt-rwlock-unlock.c │ │ ├── pt-rwlock-wrlock.c │ │ ├── pt-rwlockattr-destroy.c │ │ ├── pt-rwlockattr-getpshared.c │ │ ├── pt-rwlockattr-init.c │ │ ├── pt-rwlockattr-setpshared.c │ │ ├── pt-setconcurrency.c │ │ ├── pt-setschedparam.c │ │ ├── pt-setschedprio.c │ │ ├── pt-setspecific.c │ │ ├── pt-spin.c │ │ ├── pt-startup.c │ │ ├── pthread-functions.h │ │ ├── pthread.h │ │ ├── pthreadP.h │ │ ├── raise.c │ │ ├── sem-close.c │ │ ├── sem-destroy.c │ │ ├── sem-getvalue.c │ │ ├── sem-init.c │ │ ├── sem-open.c │ │ ├── sem-post.c │ │ ├── sem-timedwait.c │ │ ├── sem-trywait.c │ │ ├── sem-unlink.c │ │ ├── sem-wait.c │ │ ├── shm-directory.h │ │ ├── threads.h │ │ └── timer_routines.h │ ├── hurd │ │ ├── htl │ │ │ └── pt-kill.c │ │ ├── include │ │ │ ├── hurd.h │ │ │ └── hurd │ │ │ │ ├── fd.h │ │ │ │ ├── port.h │ │ │ │ └── signal.h │ │ └── stdc-predef.h │ ├── i386 │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── ____longjmp_chk.S │ │ ├── __longjmp.S │ │ ├── abort-instr.h │ │ ├── add_n.S │ │ ├── addmul_1.S │ │ ├── asm-syntax.h │ │ ├── backtrace.c │ │ ├── bcopy.S │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── bzero.S │ │ ├── cacheinfo.c │ │ ├── configure │ │ ├── configure.ac │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-irel.h │ │ ├── dl-machine.h │ │ ├── dl-procinfo.c │ │ ├── dl-tls.h │ │ ├── dl-tlsdesc.S │ │ ├── dl-tlsdesc.h │ │ ├── dl-trampoline.S │ │ ├── ffs.c │ │ ├── fpu │ │ │ ├── Implies │ │ │ ├── Versions │ │ │ ├── doasin.c │ │ │ ├── e_acos.S │ │ │ ├── e_acosf.S │ │ │ ├── e_acosh.S │ │ │ ├── e_acoshf.S │ │ │ ├── e_acoshl.S │ │ │ ├── e_acosl.c │ │ │ ├── e_asin.S │ │ │ ├── e_asinf.S │ │ │ ├── e_atan2.S │ │ │ ├── e_atan2f.S │ │ │ ├── e_atan2l.c │ │ │ ├── e_atanh.S │ │ │ ├── e_atanhf.S │ │ │ ├── e_atanhl.S │ │ │ ├── e_exp.S │ │ │ ├── e_exp10.S │ │ │ ├── e_exp10f.S │ │ │ ├── e_exp10l.S │ │ │ ├── e_exp2.S │ │ │ ├── e_exp2l.S │ │ │ ├── e_exp_data.c │ │ │ ├── e_expl.S │ │ │ ├── e_fmod.S │ │ │ ├── e_fmodf.S │ │ │ ├── e_fmodl.c │ │ │ ├── e_hypot.S │ │ │ ├── e_hypotf.S │ │ │ ├── e_ilogb.S │ │ │ ├── e_ilogbf.S │ │ │ ├── e_ilogbl.S │ │ │ ├── e_log.S │ │ │ ├── e_log10.S │ │ │ ├── e_log10f.S │ │ │ ├── e_log10l.S │ │ │ ├── e_log2.S │ │ │ ├── e_log2_data.c │ │ │ ├── e_log2l.S │ │ │ ├── e_log_data.c │ │ │ ├── e_logl.S │ │ │ ├── e_pow.S │ │ │ ├── e_pow_log_data.c │ │ │ ├── e_powl.S │ │ │ ├── e_remainder.S │ │ │ ├── e_remainderf.S │ │ │ ├── e_remainderl.S │ │ │ ├── e_scalb.S │ │ │ ├── e_scalbf.S │ │ │ ├── e_scalbl.S │ │ │ ├── e_sqrt.S │ │ │ ├── e_sqrtf.S │ │ │ ├── e_sqrtl.c │ │ │ ├── fclrexcpt.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetmode.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fesetenv.c │ │ │ ├── fesetexcept.c │ │ │ ├── fesetmode.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ ├── ftestexcept.c │ │ │ ├── i386-math-asm.h │ │ │ ├── libm-test-ulps │ │ │ ├── libm-test-ulps-name │ │ │ ├── math-tests-snan.h │ │ │ ├── math_err.c │ │ │ ├── mpatan.c │ │ │ ├── mpatan2.c │ │ │ ├── mpsqrt.c │ │ │ ├── s_asinh.S │ │ │ ├── s_asinhf.S │ │ │ ├── s_asinhl.S │ │ │ ├── s_atan.S │ │ │ ├── s_atanf.S │ │ │ ├── s_atanl.c │ │ │ ├── s_cbrt.S │ │ │ ├── s_cbrtf.S │ │ │ ├── s_cbrtl.S │ │ │ ├── s_ceil.S │ │ │ ├── s_ceilf.S │ │ │ ├── s_ceill.S │ │ │ ├── s_copysign.S │ │ │ ├── s_copysignf.S │ │ │ ├── s_copysignl.S │ │ │ ├── s_expm1.S │ │ │ ├── s_expm1f.S │ │ │ ├── s_expm1l.S │ │ │ ├── s_f32xaddf64.c │ │ │ ├── s_f32xdivf64.c │ │ │ ├── s_f32xmulf64.c │ │ │ ├── s_f32xsubf64.c │ │ │ ├── s_fabs.S │ │ │ ├── s_fabsf.S │ │ │ ├── s_fabsl.S │ │ │ ├── s_fdim.c │ │ │ ├── s_finite.S │ │ │ ├── s_finitef.S │ │ │ ├── s_finitel.S │ │ │ ├── s_floor.S │ │ │ ├── s_floorf.S │ │ │ ├── s_floorl.S │ │ │ ├── s_fmax.S │ │ │ ├── s_fmaxf.S │ │ │ ├── s_fmaxl.S │ │ │ ├── s_fmin.S │ │ │ ├── s_fminf.S │ │ │ ├── s_fminl.S │ │ │ ├── s_fpclassifyl.c │ │ │ ├── s_frexp.S │ │ │ ├── s_frexpf.S │ │ │ ├── s_frexpl.S │ │ │ ├── s_isinfl.c │ │ │ ├── s_isnanl.c │ │ │ ├── s_llrint.S │ │ │ ├── s_llrintf.S │ │ │ ├── s_llrintl.S │ │ │ ├── s_log1p.S │ │ │ ├── s_log1pf.S │ │ │ ├── s_log1pl.S │ │ │ ├── s_logb.S │ │ │ ├── s_logbf.S │ │ │ ├── s_logbl.c │ │ │ ├── s_lrint.S │ │ │ ├── s_lrintf.S │ │ │ ├── s_lrintl.S │ │ │ ├── s_nearbyint.S │ │ │ ├── s_nearbyintf.S │ │ │ ├── s_nearbyintl.S │ │ │ ├── s_nextafterl.c │ │ │ ├── s_nexttoward.c │ │ │ ├── s_nexttowardf.c │ │ │ ├── s_remquo.S │ │ │ ├── s_remquof.S │ │ │ ├── s_remquol.S │ │ │ ├── s_rint.S │ │ │ ├── s_rintf.S │ │ │ ├── s_rintl.c │ │ │ ├── s_scalbln.c │ │ │ ├── s_scalblnf.c │ │ │ ├── s_scalblnl.c │ │ │ ├── s_scalbn.S │ │ │ ├── s_scalbnf.S │ │ │ ├── s_scalbnl.S │ │ │ ├── s_significand.S │ │ │ ├── s_significandf.S │ │ │ ├── s_significandl.c │ │ │ ├── s_trunc.S │ │ │ ├── s_truncf.S │ │ │ ├── s_truncl.S │ │ │ ├── w_exp.c │ │ │ ├── w_exp2.c │ │ │ ├── w_log.c │ │ │ ├── w_log2.c │ │ │ ├── w_pow.c │ │ │ ├── w_sqrt.c │ │ │ └── w_sqrt_compat.c │ │ ├── gccframe.h │ │ ├── gmp-mparam.h │ │ ├── htl │ │ │ ├── bits │ │ │ │ └── pthreadtypes-arch.h │ │ │ ├── machine-sp.h │ │ │ └── pt-machdep.h │ │ ├── htonl.S │ │ ├── htons.S │ │ ├── i386-mcount.S │ │ ├── i586 │ │ │ ├── add_n.S │ │ │ ├── addmul_1.S │ │ │ ├── bzero.S │ │ │ ├── isa.h │ │ │ ├── lshift.S │ │ │ ├── memcopy.h │ │ │ ├── memcpy.S │ │ │ ├── mempcpy.S │ │ │ ├── memset.S │ │ │ ├── memusage.h │ │ │ ├── mul_1.S │ │ │ ├── rshift.S │ │ │ ├── stpcpy.S │ │ │ ├── strchr.S │ │ │ ├── strcpy.S │ │ │ ├── strlen.S │ │ │ ├── sub_n.S │ │ │ └── submul_1.S │ │ ├── i686 │ │ │ ├── Makefile │ │ │ ├── add_n.S │ │ │ ├── bcopy.S │ │ │ ├── bzero.S │ │ │ ├── dl-hash.h │ │ │ ├── ffs.c │ │ │ ├── fpu │ │ │ │ ├── e_log.S │ │ │ │ ├── e_logl.S │ │ │ │ ├── multiarch │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── e_exp2f-sse2.c │ │ │ │ │ ├── e_exp2f.c │ │ │ │ │ ├── e_expf-sse2.c │ │ │ │ │ ├── e_expf.c │ │ │ │ │ ├── e_log2f-sse2.c │ │ │ │ │ ├── e_log2f.c │ │ │ │ │ ├── e_logf-sse2.c │ │ │ │ │ ├── e_logf.c │ │ │ │ │ ├── e_powf-sse2.c │ │ │ │ │ ├── e_powf.c │ │ │ │ │ ├── libm-test-ulps │ │ │ │ │ ├── libm-test-ulps-name │ │ │ │ │ ├── s_cosf-sse2.S │ │ │ │ │ ├── s_cosf.c │ │ │ │ │ ├── s_sincosf-sse2.S │ │ │ │ │ ├── s_sincosf.c │ │ │ │ │ ├── s_sinf-sse2.S │ │ │ │ │ └── s_sinf.c │ │ │ │ ├── s_fmax.S │ │ │ │ ├── s_fmaxf.S │ │ │ │ ├── s_fmaxl.S │ │ │ │ ├── s_fmin.S │ │ │ │ ├── s_fminf.S │ │ │ │ └── s_fminl.S │ │ │ ├── isa.h │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── mempcpy.S │ │ │ ├── memset.S │ │ │ ├── memusage.h │ │ │ ├── multiarch │ │ │ │ ├── Makefile │ │ │ │ ├── bcopy-ia32.S │ │ │ │ ├── bcopy-sse2-unaligned.S │ │ │ │ ├── bcopy-ssse3-rep.S │ │ │ │ ├── bcopy-ssse3.S │ │ │ │ ├── bcopy.c │ │ │ │ ├── bzero-ia32.S │ │ │ │ ├── bzero-sse2-rep.S │ │ │ │ ├── bzero-sse2.S │ │ │ │ ├── bzero.c │ │ │ │ ├── ifunc-impl-list.c │ │ │ │ ├── ifunc-memmove.h │ │ │ │ ├── ifunc-memset.h │ │ │ │ ├── ifunc-sse2-bsf.h │ │ │ │ ├── ifunc-sse2-ssse3.h │ │ │ │ ├── ifunc-sse2.h │ │ │ │ ├── ifunc-sse4_2.h │ │ │ │ ├── ifunc-ssse3-sse4_2.h │ │ │ │ ├── locale-defines.sym │ │ │ │ ├── memchr-ia32.S │ │ │ │ ├── memchr-sse2-bsf.S │ │ │ │ ├── memchr-sse2.S │ │ │ │ ├── memchr.c │ │ │ │ ├── memcmp-ia32.S │ │ │ │ ├── memcmp-sse4.S │ │ │ │ ├── memcmp-ssse3.S │ │ │ │ ├── memcmp.c │ │ │ │ ├── memcpy-ia32.S │ │ │ │ ├── memcpy-sse2-unaligned.S │ │ │ │ ├── memcpy-ssse3-rep.S │ │ │ │ ├── memcpy-ssse3.S │ │ │ │ ├── memcpy.c │ │ │ │ ├── memcpy_chk-nonshared.S │ │ │ │ ├── memcpy_chk.c │ │ │ │ ├── memmove-ia32.S │ │ │ │ ├── memmove-sse2-unaligned.S │ │ │ │ ├── memmove-ssse3-rep.S │ │ │ │ ├── memmove-ssse3.S │ │ │ │ ├── memmove.c │ │ │ │ ├── memmove_chk-nonshared.S │ │ │ │ ├── memmove_chk.c │ │ │ │ ├── mempcpy-ia32.S │ │ │ │ ├── mempcpy-sse2-unaligned.S │ │ │ │ ├── mempcpy-ssse3-rep.S │ │ │ │ ├── mempcpy-ssse3.S │ │ │ │ ├── mempcpy.c │ │ │ │ ├── mempcpy_chk-nonshared.S │ │ │ │ ├── mempcpy_chk.c │ │ │ │ ├── memrchr-c.c │ │ │ │ ├── memrchr-sse2-bsf.S │ │ │ │ ├── memrchr-sse2.S │ │ │ │ ├── memrchr.c │ │ │ │ ├── memset-ia32.S │ │ │ │ ├── memset-sse2-rep.S │ │ │ │ ├── memset-sse2.S │ │ │ │ ├── memset.c │ │ │ │ ├── memset_chk-nonshared.S │ │ │ │ ├── memset_chk.c │ │ │ │ ├── rawmemchr-ia32.S │ │ │ │ ├── rawmemchr-sse2-bsf.S │ │ │ │ ├── rawmemchr-sse2.S │ │ │ │ ├── rawmemchr.c │ │ │ │ ├── rtld-strnlen.c │ │ │ │ ├── s_fma-fma.c │ │ │ │ ├── s_fma.c │ │ │ │ ├── s_fmaf-fma.c │ │ │ │ ├── s_fmaf.c │ │ │ │ ├── sched_cpucount.c │ │ │ │ ├── stpcpy-ia32.S │ │ │ │ ├── stpcpy-sse2.S │ │ │ │ ├── stpcpy-ssse3.S │ │ │ │ ├── stpcpy.c │ │ │ │ ├── stpncpy-ia32.S │ │ │ │ ├── stpncpy-sse2.S │ │ │ │ ├── stpncpy-ssse3.S │ │ │ │ ├── stpncpy.c │ │ │ │ ├── strcasecmp-c.c │ │ │ │ ├── strcasecmp.c │ │ │ │ ├── strcasecmp_l-c.c │ │ │ │ ├── strcasecmp_l-sse4.S │ │ │ │ ├── strcasecmp_l-ssse3.S │ │ │ │ ├── strcasecmp_l.c │ │ │ │ ├── strcat-ia32.S │ │ │ │ ├── strcat-sse2.S │ │ │ │ ├── strcat-ssse3.S │ │ │ │ ├── strcat.c │ │ │ │ ├── strchr-ia32.S │ │ │ │ ├── strchr-sse2-bsf.S │ │ │ │ ├── strchr-sse2.S │ │ │ │ ├── strchr.c │ │ │ │ ├── strcmp-ia32.S │ │ │ │ ├── strcmp-sse4.S │ │ │ │ ├── strcmp-ssse3.S │ │ │ │ ├── strcmp.c │ │ │ │ ├── strcpy-ia32.S │ │ │ │ ├── strcpy-sse2.S │ │ │ │ ├── strcpy-ssse3.S │ │ │ │ ├── strcpy.c │ │ │ │ ├── strcspn-c.c │ │ │ │ ├── strcspn-ia32.S │ │ │ │ ├── strcspn.c │ │ │ │ ├── strlen-ia32.S │ │ │ │ ├── strlen-sse2-bsf.S │ │ │ │ ├── strlen-sse2.S │ │ │ │ ├── strlen.c │ │ │ │ ├── strncase-c.c │ │ │ │ ├── strncase.c │ │ │ │ ├── strncase_l-c.c │ │ │ │ ├── strncase_l-sse4.S │ │ │ │ ├── strncase_l-ssse3.S │ │ │ │ ├── strncase_l.c │ │ │ │ ├── strncat-c.c │ │ │ │ ├── strncat-sse2.S │ │ │ │ ├── strncat-ssse3.S │ │ │ │ ├── strncat.c │ │ │ │ ├── strncmp-c.c │ │ │ │ ├── strncmp-sse4.S │ │ │ │ ├── strncmp-ssse3.S │ │ │ │ ├── strncmp.c │ │ │ │ ├── strncpy-c.c │ │ │ │ ├── strncpy-sse2.S │ │ │ │ ├── strncpy-ssse3.S │ │ │ │ ├── strncpy.c │ │ │ │ ├── strnlen-c.c │ │ │ │ ├── strnlen-sse2.S │ │ │ │ ├── strnlen.c │ │ │ │ ├── strpbrk-c.c │ │ │ │ ├── strpbrk-ia32.S │ │ │ │ ├── strpbrk.c │ │ │ │ ├── strrchr-ia32.S │ │ │ │ ├── strrchr-sse2-bsf.S │ │ │ │ ├── strrchr-sse2.S │ │ │ │ ├── strrchr.c │ │ │ │ ├── strspn-c.c │ │ │ │ ├── strspn-ia32.S │ │ │ │ ├── strspn.c │ │ │ │ ├── test-multiarch.c │ │ │ │ ├── varshift.c │ │ │ │ ├── varshift.h │ │ │ │ ├── wcschr-c.c │ │ │ │ ├── wcschr-sse2.S │ │ │ │ ├── wcschr.c │ │ │ │ ├── wcscmp-c.c │ │ │ │ ├── wcscmp-sse2.S │ │ │ │ ├── wcscmp.c │ │ │ │ ├── wcscpy-c.c │ │ │ │ ├── wcscpy-ssse3.S │ │ │ │ ├── wcscpy.c │ │ │ │ ├── wcslen-c.c │ │ │ │ ├── wcslen-sse2.S │ │ │ │ ├── wcslen.c │ │ │ │ ├── wcsrchr-c.c │ │ │ │ ├── wcsrchr-sse2.S │ │ │ │ ├── wcsrchr.c │ │ │ │ ├── wmemcmp-c.c │ │ │ │ ├── wmemcmp-sse4.S │ │ │ │ ├── wmemcmp-ssse3.S │ │ │ │ └── wmemcmp.c │ │ │ ├── nptl │ │ │ │ └── tls.h │ │ │ ├── pthread_spin_trylock.S │ │ │ ├── stack-aliasing.h │ │ │ ├── strcmp.S │ │ │ └── tst-stack-align.h │ │ ├── i786 │ │ │ └── Implies │ │ ├── isa.h │ │ ├── jmpbuf-offsets.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldbl2mpn.c │ │ ├── link-defines.sym │ │ ├── lshift.S │ │ ├── machine-gmon.h │ │ ├── malloc-alignment.h │ │ ├── memchr.S │ │ ├── memcmp.S │ │ ├── memcopy.h │ │ ├── memcpy.S │ │ ├── memcpy_chk.S │ │ ├── memmove.S │ │ ├── memmove_chk.S │ │ ├── mempcpy.S │ │ ├── mempcpy_chk.S │ │ ├── memset.S │ │ ├── memset_chk.S │ │ ├── memusage.h │ │ ├── mp_clz_tab.c │ │ ├── mul_1.S │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── pthread-offsets.h │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_lock.S │ │ │ ├── pthread_spin_unlock.S │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── preconfigure │ │ ├── pthread_spin_trylock.S │ │ ├── rawmemchr.S │ │ ├── rshift.S │ │ ├── setfpucw.c │ │ ├── setjmp.S │ │ ├── stackguard-macros.h │ │ ├── stackinfo.h │ │ ├── start.S │ │ ├── stpcpy.S │ │ ├── stpncpy.S │ │ ├── strcat.S │ │ ├── strchr.S │ │ ├── strchrnul.S │ │ ├── strcspn.S │ │ ├── string-inlines.c │ │ ├── strlen.S │ │ ├── strlen.c │ │ ├── strpbrk.S │ │ ├── strrchr.S │ │ ├── strspn.S │ │ ├── sub_n.S │ │ ├── submul_1.S │ │ ├── symbol-hacks.h │ │ ├── sys │ │ │ └── ucontext.h │ │ ├── sysdep.h │ │ ├── tls-macros.h │ │ ├── tlsdesc.c │ │ ├── tlsdesc.sym │ │ ├── tst-audit.h │ │ ├── tst-audit3.c │ │ ├── tst-audit3.h │ │ ├── tst-auditmod3a.c │ │ ├── tst-auditmod3b.c │ │ ├── tst-ld-sse-use.sh │ │ └── tst-stack-align.h │ ├── ia64 │ │ ├── Implies │ │ ├── Makeconfig │ │ ├── Makefile │ │ ├── Versions │ │ ├── _mcount.S │ │ ├── abort-instr.h │ │ ├── atomic-machine.h │ │ ├── bcopy.S │ │ ├── bits │ │ │ ├── fenv.h │ │ │ ├── floatn.h │ │ │ ├── fp-logb.h │ │ │ └── link.h │ │ ├── bzero.S │ │ ├── configure │ │ ├── configure.ac │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-dtprocnum.h │ │ ├── dl-fptr.h │ │ ├── dl-lookupcfg.h │ │ ├── dl-machine.h │ │ ├── dl-sysdep.h │ │ ├── dl-tls.h │ │ ├── dl-trampoline.S │ │ ├── entry.h │ │ ├── float128-abi.h │ │ ├── fpu │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── Versions │ │ │ ├── bits │ │ │ │ └── math-finite.h │ │ │ ├── branred.c │ │ │ ├── doasin.c │ │ │ ├── dosincos.c │ │ │ ├── e_acos.S │ │ │ ├── e_acosf.S │ │ │ ├── e_acosh.S │ │ │ ├── e_acoshf.S │ │ │ ├── e_acoshl.S │ │ │ ├── e_acosl.S │ │ │ ├── e_asin.S │ │ │ ├── e_asinf.S │ │ │ ├── e_asinl.S │ │ │ ├── e_atan2.S │ │ │ ├── e_atan2f.S │ │ │ ├── e_atan2l.c │ │ │ ├── e_atanh.S │ │ │ ├── e_atanhf.S │ │ │ ├── e_atanhl.S │ │ │ ├── e_cosh.S │ │ │ ├── e_coshf.S │ │ │ ├── e_coshl.S │ │ │ ├── e_exp.S │ │ │ ├── e_exp10.S │ │ │ ├── e_exp10f.S │ │ │ ├── e_exp10l.S │ │ │ ├── e_exp2.S │ │ │ ├── e_exp2f.S │ │ │ ├── e_exp2f_data.c │ │ │ ├── e_exp2l.S │ │ │ ├── e_exp_data.c │ │ │ ├── e_expf.S │ │ │ ├── e_expl.c │ │ │ ├── e_fmod.S │ │ │ ├── e_fmodf.S │ │ │ ├── e_fmodl.S │ │ │ ├── e_gamma_r.c │ │ │ ├── e_gammaf_r.c │ │ │ ├── e_gammal_r.c │ │ │ ├── e_hypot.S │ │ │ ├── e_hypotf.S │ │ │ ├── e_hypotl.S │ │ │ ├── e_ilogbl.S │ │ │ ├── e_lgamma_r.c │ │ │ ├── e_lgammaf_r.c │ │ │ ├── e_lgammal_r.c │ │ │ ├── e_log.S │ │ │ ├── e_log10.c │ │ │ ├── e_log10f.c │ │ │ ├── e_log10l.c │ │ │ ├── e_log2.S │ │ │ ├── e_log2_data.c │ │ │ ├── e_log2f.S │ │ │ ├── e_log2f_data.c │ │ │ ├── e_log2l.S │ │ │ ├── e_log_data.c │ │ │ ├── e_logf.S │ │ │ ├── e_logf_data.c │ │ │ ├── e_logl.S │ │ │ ├── e_pow.S │ │ │ ├── e_pow_log_data.c │ │ │ ├── e_powf.S │ │ │ ├── e_powf_log2_data.c │ │ │ ├── e_powl.S │ │ │ ├── e_rem_pio2l.c │ │ │ ├── e_remainder.S │ │ │ ├── e_remainderf.S │ │ │ ├── e_remainderl.S │ │ │ ├── e_scalb.S │ │ │ ├── e_scalbf.S │ │ │ ├── e_scalbl.S │ │ │ ├── e_sinh.S │ │ │ ├── e_sinhf.S │ │ │ ├── e_sinhl.S │ │ │ ├── e_sqrt.S │ │ │ ├── e_sqrtf.S │ │ │ ├── e_sqrtf128.c │ │ │ ├── e_sqrtl.S │ │ │ ├── fclrexcpt.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetmode.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fesetenv.c │ │ │ ├── fesetexcept.c │ │ │ ├── fesetmode.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ ├── ftestexcept.c │ │ │ ├── gen_import_file_list │ │ │ ├── get-rounding-mode.h │ │ │ ├── import_check │ │ │ ├── import_diffs │ │ │ ├── import_file.awk │ │ │ ├── import_intel_libm │ │ │ ├── lgamma-compat.h │ │ │ ├── libc_libm_error.c │ │ │ ├── libm-symbols.h │ │ │ ├── libm-test-ulps │ │ │ ├── libm-test-ulps-name │ │ │ ├── libm_cpu_defs.h │ │ │ ├── libm_error.c │ │ │ ├── libm_error_codes.h │ │ │ ├── libm_frexp.S │ │ │ ├── libm_frexp4.S │ │ │ ├── libm_frexp4f.S │ │ │ ├── libm_frexp4l.S │ │ │ ├── libm_frexpf.S │ │ │ ├── libm_frexpl.S │ │ │ ├── libm_lgamma.S │ │ │ ├── libm_lgammaf.S │ │ │ ├── libm_lgammal.S │ │ │ ├── libm_reduce.S │ │ │ ├── libm_scalblnf.S │ │ │ ├── libm_sincos.S │ │ │ ├── libm_sincos_large.S │ │ │ ├── libm_sincosf.S │ │ │ ├── libm_sincosl.S │ │ │ ├── libm_support.h │ │ │ ├── libm_tan.S │ │ │ ├── math_err.c │ │ │ ├── math_errf.c │ │ │ ├── math_ldbl.h │ │ │ ├── mpa.c │ │ │ ├── mpatan.c │ │ │ ├── mpatan2.c │ │ │ ├── mpsqrt.c │ │ │ ├── mptan.c │ │ │ ├── printf_fphex.c │ │ │ ├── s_asinh.S │ │ │ ├── s_asinhf.S │ │ │ ├── s_asinhl.S │ │ │ ├── s_atan.S │ │ │ ├── s_atanf.S │ │ │ ├── s_atanl.S │ │ │ ├── s_cbrt.S │ │ │ ├── s_cbrtf.S │ │ │ ├── s_cbrtl.S │ │ │ ├── s_ceil.S │ │ │ ├── s_ceilf.S │ │ │ ├── s_ceill.S │ │ │ ├── s_copysign.S │ │ │ ├── s_copysignf.S │ │ │ ├── s_copysignl.S │ │ │ ├── s_cos.S │ │ │ ├── s_cosf.S │ │ │ ├── s_cosl.S │ │ │ ├── s_erf.S │ │ │ ├── s_erfc.S │ │ │ ├── s_erfcf.S │ │ │ ├── s_erfcl.S │ │ │ ├── s_erff.S │ │ │ ├── s_erfl.S │ │ │ ├── s_expm1.S │ │ │ ├── s_expm1f.S │ │ │ ├── s_expm1l.S │ │ │ ├── s_fabs.S │ │ │ ├── s_fabsf.S │ │ │ ├── s_fabsl.S │ │ │ ├── s_fdim.S │ │ │ ├── s_fdimf.S │ │ │ ├── s_fdiml.S │ │ │ ├── s_finite.S │ │ │ ├── s_finitef.S │ │ │ ├── s_finitel.S │ │ │ ├── s_floor.S │ │ │ ├── s_floorf.S │ │ │ ├── s_floorl.S │ │ │ ├── s_fma.S │ │ │ ├── s_fmaf.S │ │ │ ├── s_fmal.S │ │ │ ├── s_fmax.S │ │ │ ├── s_fmaxf.S │ │ │ ├── s_fmaxl.S │ │ │ ├── s_fpclassify.S │ │ │ ├── s_fpclassifyf.S │ │ │ ├── s_fpclassifyl.S │ │ │ ├── s_frexp.c │ │ │ ├── s_frexpf.c │ │ │ ├── s_frexpl.c │ │ │ ├── s_ilogb.S │ │ │ ├── s_ilogbf.S │ │ │ ├── s_isinf.S │ │ │ ├── s_isinff.S │ │ │ ├── s_isinfl.S │ │ │ ├── s_isnan.S │ │ │ ├── s_isnanf.S │ │ │ ├── s_isnanl.S │ │ │ ├── s_ldexp.c │ │ │ ├── s_ldexpf.c │ │ │ ├── s_ldexpl.c │ │ │ ├── s_libm_ldexp.S │ │ │ ├── s_libm_ldexpf.S │ │ │ ├── s_libm_ldexpl.S │ │ │ ├── s_libm_scalbn.S │ │ │ ├── s_libm_scalbnf.S │ │ │ ├── s_libm_scalbnl.S │ │ │ ├── s_log1p.S │ │ │ ├── s_log1pf.S │ │ │ ├── s_log1pl.S │ │ │ ├── s_logb.S │ │ │ ├── s_logbf.S │ │ │ ├── s_logbl.S │ │ │ ├── s_matherrf.c │ │ │ ├── s_matherrl.c │ │ │ ├── s_modf.S │ │ │ ├── s_modff.S │ │ │ ├── s_modfl.S │ │ │ ├── s_nearbyint.S │ │ │ ├── s_nearbyintf.S │ │ │ ├── s_nearbyintl.S │ │ │ ├── s_nextafter.S │ │ │ ├── s_nextafterf.S │ │ │ ├── s_nextafterl.S │ │ │ ├── s_nexttoward.S │ │ │ ├── s_nexttowardf.S │ │ │ ├── s_nexttowardl.S │ │ │ ├── s_rint.S │ │ │ ├── s_rintf.S │ │ │ ├── s_rintl.S │ │ │ ├── s_round.S │ │ │ ├── s_roundf.S │ │ │ ├── s_roundl.S │ │ │ ├── s_scalblnf.c │ │ │ ├── s_scalbn.c │ │ │ ├── s_scalbnf.c │ │ │ ├── s_scalbnl.c │ │ │ ├── s_signbit.S │ │ │ ├── s_signbitf.S │ │ │ ├── s_signbitl.S │ │ │ ├── s_significand.S │ │ │ ├── s_significandf.S │ │ │ ├── s_significandl.S │ │ │ ├── s_sin.c │ │ │ ├── s_sincos.c │ │ │ ├── s_sincosf.c │ │ │ ├── s_sincosf_data.c │ │ │ ├── s_sincosl.c │ │ │ ├── s_sinf.c │ │ │ ├── s_sinl.c │ │ │ ├── s_tan.S │ │ │ ├── s_tanf.S │ │ │ ├── s_tanh.S │ │ │ ├── s_tanhf.S │ │ │ ├── s_tanhl.S │ │ │ ├── s_tanl.S │ │ │ ├── s_trunc.S │ │ │ ├── s_truncf.S │ │ │ ├── s_truncl.S │ │ │ ├── sfp-machine.h │ │ │ ├── sincos32.c │ │ │ ├── w_acos.c │ │ │ ├── w_acos_compat.c │ │ │ ├── w_acosf.c │ │ │ ├── w_acosf_compat.c │ │ │ ├── w_acosh.c │ │ │ ├── w_acosh_compat.c │ │ │ ├── w_acoshf.c │ │ │ ├── w_acoshf_compat.c │ │ │ ├── w_acoshl.c │ │ │ ├── w_acoshl_compat.c │ │ │ ├── w_acosl.c │ │ │ ├── w_acosl_compat.c │ │ │ ├── w_asin.c │ │ │ ├── w_asin_compat.c │ │ │ ├── w_asinf.c │ │ │ ├── w_asinf_compat.c │ │ │ ├── w_asinl.c │ │ │ ├── w_asinl_compat.c │ │ │ ├── w_atan2.c │ │ │ ├── w_atan2_compat.c │ │ │ ├── w_atan2f.c │ │ │ ├── w_atan2f_compat.c │ │ │ ├── w_atan2l.c │ │ │ ├── w_atan2l_compat.c │ │ │ ├── w_atanh.c │ │ │ ├── w_atanh_compat.c │ │ │ ├── w_atanhf.c │ │ │ ├── w_atanhf_compat.c │ │ │ ├── w_atanhl.c │ │ │ ├── w_atanhl_compat.c │ │ │ ├── w_cosh.c │ │ │ ├── w_cosh_compat.c │ │ │ ├── w_coshf.c │ │ │ ├── w_coshf_compat.c │ │ │ ├── w_coshl.c │ │ │ ├── w_coshl_compat.c │ │ │ ├── w_exp.c │ │ │ ├── w_exp10.c │ │ │ ├── w_exp10_compat.c │ │ │ ├── w_exp10f.c │ │ │ ├── w_exp10f_compat.c │ │ │ ├── w_exp10l.c │ │ │ ├── w_exp10l_compat.c │ │ │ ├── w_exp2.c │ │ │ ├── w_exp2_compat.c │ │ │ ├── w_exp2f.c │ │ │ ├── w_exp2f_compat.c │ │ │ ├── w_exp2l.c │ │ │ ├── w_exp2l_compat.c │ │ │ ├── w_exp_compat.c │ │ │ ├── w_expf.c │ │ │ ├── w_expf_compat.c │ │ │ ├── w_expl.c │ │ │ ├── w_expl_compat.c │ │ │ ├── w_fmod.c │ │ │ ├── w_fmod_compat.c │ │ │ ├── w_fmodf.c │ │ │ ├── w_fmodf_compat.c │ │ │ ├── w_fmodl.c │ │ │ ├── w_fmodl_compat.c │ │ │ ├── w_hypot.c │ │ │ ├── w_hypot_compat.c │ │ │ ├── w_hypotf.c │ │ │ ├── w_hypotf_compat.c │ │ │ ├── w_hypotl.c │ │ │ ├── w_hypotl_compat.c │ │ │ ├── w_lgamma_main.c │ │ │ ├── w_lgamma_r.c │ │ │ ├── w_lgamma_r_compat.c │ │ │ ├── w_lgammaf_main.c │ │ │ ├── w_lgammaf_r.c │ │ │ ├── w_lgammaf_r_compat.c │ │ │ ├── w_lgammal_main.c │ │ │ ├── w_lgammal_r.c │ │ │ ├── w_lgammal_r_compat.c │ │ │ ├── w_log.c │ │ │ ├── w_log10.c │ │ │ ├── w_log10_compat.c │ │ │ ├── w_log10f.c │ │ │ ├── w_log10f_compat.c │ │ │ ├── w_log10l.c │ │ │ ├── w_log10l_compat.c │ │ │ ├── w_log1p.c │ │ │ ├── w_log1pf.c │ │ │ ├── w_log1pl.c │ │ │ ├── w_log2.c │ │ │ ├── w_log2_compat.c │ │ │ ├── w_log2f.c │ │ │ ├── w_log2f_compat.c │ │ │ ├── w_log2l.c │ │ │ ├── w_log2l_compat.c │ │ │ ├── w_log_compat.c │ │ │ ├── w_logf.c │ │ │ ├── w_logf_compat.c │ │ │ ├── w_logl.c │ │ │ ├── w_logl_compat.c │ │ │ ├── w_pow.c │ │ │ ├── w_pow_compat.c │ │ │ ├── w_powf.c │ │ │ ├── w_powf_compat.c │ │ │ ├── w_powl.c │ │ │ ├── w_powl_compat.c │ │ │ ├── w_remainder.c │ │ │ ├── w_remainder_compat.c │ │ │ ├── w_remainderf.c │ │ │ ├── w_remainderf_compat.c │ │ │ ├── w_remainderl.c │ │ │ ├── w_remainderl_compat.c │ │ │ ├── w_scalb_compat.c │ │ │ ├── w_scalbf_compat.c │ │ │ ├── w_scalbl_compat.c │ │ │ ├── w_scalblnf.c │ │ │ ├── w_sinh.c │ │ │ ├── w_sinh_compat.c │ │ │ ├── w_sinhf.c │ │ │ ├── w_sinhf_compat.c │ │ │ ├── w_sinhl.c │ │ │ ├── w_sinhl_compat.c │ │ │ ├── w_sqrt.c │ │ │ ├── w_sqrt_compat.c │ │ │ ├── w_sqrtf.c │ │ │ ├── w_sqrtf_compat.c │ │ │ ├── w_sqrtl.c │ │ │ ├── w_sqrtl_compat.c │ │ │ ├── w_tgamma.c │ │ │ ├── w_tgamma_compat.S │ │ │ ├── w_tgammaf.c │ │ │ ├── w_tgammaf_compat.S │ │ │ ├── w_tgammal.c │ │ │ └── w_tgammal_compat.S │ │ ├── gccframe.h │ │ ├── hp-timing.h │ │ ├── htonl.S │ │ ├── htons.S │ │ ├── ia64libgcc.S │ │ ├── ieee754.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldbl2mpn.c │ │ ├── ldsodefs.h │ │ ├── libc-tls.c │ │ ├── linkmap.h │ │ ├── machine-gmon.h │ │ ├── math-tests-snan.h │ │ ├── memccpy.S │ │ ├── memchr.S │ │ ├── memcmp.S │ │ ├── memcpy.S │ │ ├── memmove.S │ │ ├── memset.S │ │ ├── memusage.h │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── pthreadtypes-arch.h │ │ │ │ └── semaphore.h │ │ │ ├── pthread-offsets.h │ │ │ ├── pthread_spin_lock.c │ │ │ ├── pthread_spin_trylock.c │ │ │ ├── pthread_spin_unlock.c │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── sched_cpucount.c │ │ ├── softpipe.h │ │ ├── sotruss-lib.c │ │ ├── stackguard-macros.h │ │ ├── stackinfo.h │ │ ├── start.S │ │ ├── strchr.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strlen.S │ │ ├── strncmp.S │ │ ├── strncpy.S │ │ ├── sysdep.h │ │ ├── tininess.h │ │ ├── tls-macros.h │ │ └── tst-audit.h │ ├── ieee754 │ │ ├── Makefile │ │ ├── dbl-64 │ │ │ ├── Makefile │ │ │ ├── MathLib.h │ │ │ ├── asincos.tbl │ │ │ ├── atnat.h │ │ │ ├── atnat2.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_exp.c │ │ │ ├── e_exp10.c │ │ │ ├── e_exp2.c │ │ │ ├── e_exp_data.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_log.c │ │ │ ├── e_log10.c │ │ │ ├── e_log2.c │ │ │ ├── e_log2_data.c │ │ │ ├── e_log_data.c │ │ │ ├── e_pow.c │ │ │ ├── e_pow_log_data.c │ │ │ ├── e_remainder.c │ │ │ ├── e_sinh.c │ │ │ ├── e_sqrt.c │ │ │ ├── gamma_product.c │ │ │ ├── gamma_productf.c │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_tan.c │ │ │ ├── lgamma_neg.c │ │ │ ├── lgamma_product.c │ │ │ ├── math_config.h │ │ │ ├── math_err.c │ │ │ ├── mpa-arch.h │ │ │ ├── mpa.c │ │ │ ├── mpa.h │ │ │ ├── mpatan.c │ │ │ ├── mpatan.h │ │ │ ├── mpatan2.c │ │ │ ├── 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_f32xaddf64.c │ │ │ ├── s_f32xdivf64.c │ │ │ ├── s_f32xmulf64.c │ │ │ ├── s_f32xsubf64.c │ │ │ ├── s_fabs.c │ │ │ ├── s_fadd.c │ │ │ ├── s_fdiv.c │ │ │ ├── s_finite.c │ │ │ ├── s_floor.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmaf.c │ │ │ ├── s_fmul.c │ │ │ ├── s_fpclassify.c │ │ │ ├── s_frexp.c │ │ │ ├── s_fromfp.c │ │ │ ├── s_fromfp_main.c │ │ │ ├── s_fromfpx.c │ │ │ ├── s_fsub.c │ │ │ ├── s_getpayload.c │ │ │ ├── s_isinf.c │ │ │ ├── s_isnan.c │ │ │ ├── s_issignaling.c │ │ │ ├── s_llrint.c │ │ │ ├── s_llround.c │ │ │ ├── s_log1p.c │ │ │ ├── s_logb.c │ │ │ ├── s_lrint.c │ │ │ ├── s_lround.c │ │ │ ├── s_modf.c │ │ │ ├── s_nearbyint.c │ │ │ ├── s_nexttoward.c │ │ │ ├── s_nextup.c │ │ │ ├── s_remquo.c │ │ │ ├── s_rint.c │ │ │ ├── s_round.c │ │ │ ├── s_roundeven.c │ │ │ ├── s_scalbln.c │ │ │ ├── s_scalbn.c │ │ │ ├── s_setpayload.c │ │ │ ├── s_setpayload_main.c │ │ │ ├── s_setpayloadsig.c │ │ │ ├── s_signbit.c │ │ │ ├── s_sin.c │ │ │ ├── s_sincos.c │ │ │ ├── s_tan.c │ │ │ ├── s_tanh.c │ │ │ ├── s_totalorder.c │ │ │ ├── s_totalordermag.c │ │ │ ├── s_trunc.c │ │ │ ├── s_ufromfp.c │ │ │ ├── s_ufromfpx.c │ │ │ ├── sincos32.c │ │ │ ├── sincos32.h │ │ │ ├── sincostab.c │ │ │ ├── uasncs.h │ │ │ ├── uatan.tbl │ │ │ ├── urem.h │ │ │ ├── usncs.h │ │ │ ├── utan.h │ │ │ ├── utan.tbl │ │ │ ├── w_exp.c │ │ │ ├── w_exp2.c │ │ │ ├── w_log.c │ │ │ ├── w_log2.c │ │ │ ├── w_pow.c │ │ │ ├── wordsize-64 │ │ │ │ ├── e_acosh.c │ │ │ │ ├── e_cosh.c │ │ │ │ ├── e_fmod.c │ │ │ │ ├── e_log10.c │ │ │ │ ├── s_ceil.c │ │ │ │ ├── s_floor.c │ │ │ │ ├── s_frexp.c │ │ │ │ ├── s_getpayload.c │ │ │ │ ├── s_issignaling.c │ │ │ │ ├── s_llround.c │ │ │ │ ├── s_lround.c │ │ │ │ ├── s_modf.c │ │ │ │ ├── s_nearbyint.c │ │ │ │ ├── s_remquo.c │ │ │ │ ├── s_rint.c │ │ │ │ ├── s_round.c │ │ │ │ ├── s_roundeven.c │ │ │ │ ├── s_scalbln.c │ │ │ │ ├── s_scalbn.c │ │ │ │ ├── s_setpayload_main.c │ │ │ │ ├── s_totalorder.c │ │ │ │ ├── s_totalordermag.c │ │ │ │ └── s_trunc.c │ │ │ ├── x2y2m1.c │ │ │ └── x2y2m1f.c │ │ ├── float128 │ │ │ ├── Makeconfig │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── e_acosf128.c │ │ │ ├── e_acoshf128.c │ │ │ ├── e_asinf128.c │ │ │ ├── e_atan2f128.c │ │ │ ├── e_atanhf128.c │ │ │ ├── e_coshf128.c │ │ │ ├── e_exp10f128.c │ │ │ ├── e_expf128.c │ │ │ ├── e_fmodf128.c │ │ │ ├── e_gammaf128_r.c │ │ │ ├── e_hypotf128.c │ │ │ ├── e_ilogbf128.c │ │ │ ├── e_j0f128.c │ │ │ ├── e_j1f128.c │ │ │ ├── e_jnf128.c │ │ │ ├── e_lgammaf128_r.c │ │ │ ├── e_log10f128.c │ │ │ ├── e_log2f128.c │ │ │ ├── e_logf128.c │ │ │ ├── e_powf128.c │ │ │ ├── e_rem_pio2f128.c │ │ │ ├── e_remainderf128.c │ │ │ ├── e_scalbf128.c │ │ │ ├── e_sinhf128.c │ │ │ ├── float1282mpn.c │ │ │ ├── float128_private.h │ │ │ ├── gamma_productf128.c │ │ │ ├── ieee754_float128.h │ │ │ ├── k_cosf128.c │ │ │ ├── k_sincosf128.c │ │ │ ├── k_sinf128.c │ │ │ ├── k_tanf128.c │ │ │ ├── lgamma_negf128.c │ │ │ ├── lgamma_productf128.c │ │ │ ├── math-nan-payload-float128.h │ │ │ ├── mpn2float128.c │ │ │ ├── s_asinhf128.c │ │ │ ├── s_atanf128.c │ │ │ ├── s_cbrtf128.c │ │ │ ├── s_ceilf128.c │ │ │ ├── s_copysignf128.c │ │ │ ├── s_cosf128.c │ │ │ ├── s_erff128.c │ │ │ ├── s_expm1f128.c │ │ │ ├── s_f32addf128.c │ │ │ ├── s_f32divf128.c │ │ │ ├── s_f32mulf128.c │ │ │ ├── s_f32subf128.c │ │ │ ├── s_f64addf128.c │ │ │ ├── s_f64divf128.c │ │ │ ├── s_f64mulf128.c │ │ │ ├── s_f64subf128.c │ │ │ ├── s_f64xaddf128.c │ │ │ ├── s_f64xdivf128.c │ │ │ ├── s_f64xmulf128.c │ │ │ ├── s_f64xsubf128.c │ │ │ ├── s_fabsf128.c │ │ │ ├── s_finitef128.c │ │ │ ├── s_floorf128.c │ │ │ ├── s_fmaf128.c │ │ │ ├── s_fpclassifyf128.c │ │ │ ├── s_frexpf128.c │ │ │ ├── s_fromfpf128.c │ │ │ ├── s_fromfpxf128.c │ │ │ ├── s_getpayloadf128.c │ │ │ ├── s_isinff128.c │ │ │ ├── s_isnanf128.c │ │ │ ├── s_issignalingf128.c │ │ │ ├── s_llrintf128.c │ │ │ ├── s_llroundf128.c │ │ │ ├── s_log1pf128.c │ │ │ ├── s_logbf128.c │ │ │ ├── s_lrintf128.c │ │ │ ├── s_lroundf128.c │ │ │ ├── s_modff128.c │ │ │ ├── s_nearbyintf128.c │ │ │ ├── s_nextafterf128.c │ │ │ ├── s_nexttowardf128.c │ │ │ ├── s_nextupf128.c │ │ │ ├── s_remquof128.c │ │ │ ├── s_rintf128.c │ │ │ ├── s_roundevenf128.c │ │ │ ├── s_roundf128.c │ │ │ ├── s_scalblnf128.c │ │ │ ├── s_scalbnf128.c │ │ │ ├── s_setpayloadf128.c │ │ │ ├── s_setpayloadsigf128.c │ │ │ ├── s_signbitf128.c │ │ │ ├── s_significandf128.c │ │ │ ├── s_sincosf128.c │ │ │ ├── s_sinf128.c │ │ │ ├── s_tanf128.c │ │ │ ├── s_tanhf128.c │ │ │ ├── s_totalorderf128.c │ │ │ ├── s_totalordermagf128.c │ │ │ ├── s_truncf128.c │ │ │ ├── s_ufromfpf128.c │ │ │ ├── s_ufromfpxf128.c │ │ │ ├── strfromf128.c │ │ │ ├── strtof128.c │ │ │ ├── strtof128_l.c │ │ │ ├── strtof128_nan.c │ │ │ ├── t_sincosf128.c │ │ │ ├── wcstof128.c │ │ │ ├── wcstof128_l.c │ │ │ ├── wcstof128_nan.c │ │ │ └── x2y2m1f128.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_exp2f_data.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_log2f_data.c │ │ │ ├── e_logf.c │ │ │ ├── e_logf_data.c │ │ │ ├── e_powf.c │ │ │ ├── e_powf_log2_data.c │ │ │ ├── e_remainderf.c │ │ │ ├── e_sinhf.c │ │ │ ├── e_sqrtf.c │ │ │ ├── k_tanf.c │ │ │ ├── lgamma_negf.c │ │ │ ├── lgamma_productf.c │ │ │ ├── math_config.h │ │ │ ├── math_errf.c │ │ │ ├── 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_fromfpf.c │ │ │ ├── s_fromfpf_main.c │ │ │ ├── s_fromfpxf.c │ │ │ ├── s_getpayloadf.c │ │ │ ├── s_isinff.c │ │ │ ├── s_isnanf.c │ │ │ ├── s_issignalingf.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_nextupf.c │ │ │ ├── s_remquof.c │ │ │ ├── s_rintf.c │ │ │ ├── s_roundevenf.c │ │ │ ├── s_roundf.c │ │ │ ├── s_scalblnf.c │ │ │ ├── s_scalbnf.c │ │ │ ├── s_setpayloadf.c │ │ │ ├── s_setpayloadf_main.c │ │ │ ├── s_setpayloadsigf.c │ │ │ ├── s_signbitf.c │ │ │ ├── s_sincosf.c │ │ │ ├── s_sincosf.h │ │ │ ├── s_sincosf_data.c │ │ │ ├── s_sinf.c │ │ │ ├── s_tanf.c │ │ │ ├── s_tanhf.c │ │ │ ├── s_totalorderf.c │ │ │ ├── s_totalordermagf.c │ │ │ ├── s_truncf.c │ │ │ ├── s_ufromfpf.c │ │ │ ├── s_ufromfpxf.c │ │ │ ├── sincosf_poly.h │ │ │ ├── w_exp2f.c │ │ │ ├── w_expf.c │ │ │ ├── w_log2f.c │ │ │ ├── w_logf.c │ │ │ └── w_powf.c │ │ ├── ieee754.h │ │ ├── k_standard.c │ │ ├── k_standardf.c │ │ ├── k_standardl.c │ │ ├── ldbl-128 │ │ │ ├── Makeconfig │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── floatn.h │ │ │ │ └── long-double.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_rem_pio2l.c │ │ │ ├── e_remainderl.c │ │ │ ├── e_sinhl.c │ │ │ ├── float128-abi.h │ │ │ ├── gamma_productl.c │ │ │ ├── ieee754.h │ │ │ ├── k_cosl.c │ │ │ ├── k_sincosl.c │ │ │ ├── k_sinl.c │ │ │ ├── k_tanl.c │ │ │ ├── ldbl2mpn.c │ │ │ ├── lgamma_negl.c │ │ │ ├── lgamma_productl.c │ │ │ ├── math-nan-payload-ldouble.h │ │ │ ├── math_ldbl.h │ │ │ ├── mpn2ldbl.c │ │ │ ├── printf_fphex.c │ │ │ ├── printf_fphex_macros.h │ │ │ ├── s_asinhl.c │ │ │ ├── s_atanl.c │ │ │ ├── s_cbrtl.c │ │ │ ├── s_ceill.c │ │ │ ├── s_copysignl.c │ │ │ ├── s_cosl.c │ │ │ ├── s_daddl.c │ │ │ ├── s_ddivl.c │ │ │ ├── s_dmull.c │ │ │ ├── s_dsubl.c │ │ │ ├── s_erfl.c │ │ │ ├── s_expm1l.c │ │ │ ├── s_f64xaddf128.c │ │ │ ├── s_f64xdivf128.c │ │ │ ├── s_f64xmulf128.c │ │ │ ├── s_f64xsubf128.c │ │ │ ├── s_fabsl.c │ │ │ ├── s_faddl.c │ │ │ ├── s_fdivl.c │ │ │ ├── s_finitel.c │ │ │ ├── s_floorl.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmal.c │ │ │ ├── s_fmull.c │ │ │ ├── s_fpclassifyl.c │ │ │ ├── s_frexpl.c │ │ │ ├── s_fromfpl.c │ │ │ ├── s_fromfpl_main.c │ │ │ ├── s_fromfpxl.c │ │ │ ├── s_fsubl.c │ │ │ ├── s_getpayloadl.c │ │ │ ├── s_isinfl.c │ │ │ ├── s_isnanl.c │ │ │ ├── s_issignalingl.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_nextupl.c │ │ │ ├── s_remquol.c │ │ │ ├── s_rintl.c │ │ │ ├── s_roundevenl.c │ │ │ ├── s_roundl.c │ │ │ ├── s_scalblnl.c │ │ │ ├── s_scalbnl.c │ │ │ ├── s_setpayloadl.c │ │ │ ├── s_setpayloadl_main.c │ │ │ ├── s_setpayloadsigl.c │ │ │ ├── s_signbitl.c │ │ │ ├── s_sincosl.c │ │ │ ├── s_sinl.c │ │ │ ├── s_tanhl.c │ │ │ ├── s_tanl.c │ │ │ ├── s_totalorderl.c │ │ │ ├── s_totalordermagl.c │ │ │ ├── s_truncl.c │ │ │ ├── s_ufromfpl.c │ │ │ ├── s_ufromfpxl.c │ │ │ ├── strtold_l.c │ │ │ ├── t_expl.h │ │ │ ├── t_sincosl.c │ │ │ └── x2y2m1l.c │ │ ├── ldbl-128ibm-compat │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── ieee128-printf_size.c │ │ │ ├── libm-alias-float128.h │ │ │ ├── strfromf128.c │ │ │ ├── strtof128.c │ │ │ ├── strtof128_l.c │ │ │ ├── test-printf-size-ibm128.c │ │ │ ├── test-printf-size-ieee128.c │ │ │ ├── wcstof128.c │ │ │ └── wcstof128_l.c │ │ ├── ldbl-128ibm │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ └── iscanonical.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_rem_pio2l.c │ │ │ ├── e_remainderl.c │ │ │ ├── e_sinhl.c │ │ │ ├── e_sqrtl.c │ │ │ ├── gamma_productl.c │ │ │ ├── ieee754.h │ │ │ ├── include │ │ │ │ └── bits │ │ │ │ │ └── iscanonical.h │ │ │ ├── k_cosl.c │ │ │ ├── k_sincosl.c │ │ │ ├── k_sinl.c │ │ │ ├── k_tanl.c │ │ │ ├── ldbl2mpn.c │ │ │ ├── lgamma_negl.c │ │ │ ├── lgamma_productl.c │ │ │ ├── math-nan-payload-ldouble.h │ │ │ ├── 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_daddl.c │ │ │ ├── s_ddivl.c │ │ │ ├── s_dmull.c │ │ │ ├── s_dsubl.c │ │ │ ├── s_erfl.c │ │ │ ├── s_expm1l.c │ │ │ ├── s_fabsl.c │ │ │ ├── s_faddl.c │ │ │ ├── s_fdivl.c │ │ │ ├── s_finitel.c │ │ │ ├── s_floorl.c │ │ │ ├── s_fmal.c │ │ │ ├── s_fmull.c │ │ │ ├── s_fpclassifyl.c │ │ │ ├── s_frexpl.c │ │ │ ├── s_fromfpl.c │ │ │ ├── s_fromfpl_main.c │ │ │ ├── s_fromfpxl.c │ │ │ ├── s_fsubl.c │ │ │ ├── s_getpayloadl.c │ │ │ ├── s_iscanonicall.c │ │ │ ├── s_isinfl.c │ │ │ ├── s_isnanl.c │ │ │ ├── s_issignalingl.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_nextupl.c │ │ │ ├── s_remquol.c │ │ │ ├── s_rintl.c │ │ │ ├── s_roundevenl.c │ │ │ ├── s_roundl.c │ │ │ ├── s_scalblnl.c │ │ │ ├── s_scalbnl.c │ │ │ ├── s_setpayloadl.c │ │ │ ├── s_setpayloadl_main.c │ │ │ ├── s_setpayloadsigl.c │ │ │ ├── s_signbitl.c │ │ │ ├── s_sincosl.c │ │ │ ├── s_sinl.c │ │ │ ├── s_tanhl.c │ │ │ ├── s_tanl.c │ │ │ ├── s_totalorderl.c │ │ │ ├── s_totalordermagl.c │ │ │ ├── s_truncl.c │ │ │ ├── s_ufromfpl.c │ │ │ ├── s_ufromfpxl.c │ │ │ ├── strtold_l.c │ │ │ ├── t_expl.h │ │ │ ├── t_sincosl.c │ │ │ ├── test-canonical-ldbl-128ibm.c │ │ │ ├── test-fmodl-ldbl-128ibm.c │ │ │ ├── test-fmodrem-ldbl-128ibm.c │ │ │ ├── test-remainderl-ldbl-128ibm.c │ │ │ ├── test-remquol-ldbl-128ibm.c │ │ │ ├── test-totalorderl-ldbl-128ibm.c │ │ │ ├── tst-strtold-ldbl-128ibm.c │ │ │ └── x2y2m1l.c │ │ ├── ldbl-64-128 │ │ │ ├── s_copysignl.c │ │ │ ├── s_finitel.c │ │ │ ├── s_fpclassifyl.c │ │ │ ├── s_frexpl.c │ │ │ ├── s_isinfl.c │ │ │ ├── s_isnanl.c │ │ │ ├── s_modfl.c │ │ │ ├── s_nextafterl.c │ │ │ ├── s_nexttoward.c │ │ │ ├── s_nexttowardf.c │ │ │ ├── s_signbitl.c │ │ │ └── strtold_l.c │ │ ├── ldbl-96 │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── iscanonical.h │ │ │ │ └── long-double.h │ │ │ ├── e_acoshl.c │ │ │ ├── e_asinl.c │ │ │ ├── e_atanhl.c │ │ │ ├── e_coshl.c │ │ │ ├── e_gammal_r.c │ │ │ ├── e_hypotl.c │ │ │ ├── e_j0l.c │ │ │ ├── e_j1l.c │ │ │ ├── e_jnl.c │ │ │ ├── e_lgammal_r.c │ │ │ ├── e_rem_pio2l.c │ │ │ ├── e_sinhl.c │ │ │ ├── gamma_product.c │ │ │ ├── gamma_productl.c │ │ │ ├── include │ │ │ │ └── bits │ │ │ │ │ └── iscanonical.h │ │ │ ├── k_cosl.c │ │ │ ├── k_sinl.c │ │ │ ├── k_tanl.c │ │ │ ├── ldbl2mpn.c │ │ │ ├── lgamma_negl.c │ │ │ ├── lgamma_product.c │ │ │ ├── lgamma_productl.c │ │ │ ├── math-nan-payload-ldouble.h │ │ │ ├── math_ldbl.h │ │ │ ├── mpn2ldbl.c │ │ │ ├── printf_fphex.c │ │ │ ├── s_asinhl.c │ │ │ ├── s_cbrtl.c │ │ │ ├── s_copysignl.c │ │ │ ├── s_cosl.c │ │ │ ├── s_daddl.c │ │ │ ├── s_ddivl.c │ │ │ ├── s_dmull.c │ │ │ ├── s_dsubl.c │ │ │ ├── s_erfl.c │ │ │ ├── s_faddl.c │ │ │ ├── s_fdivl.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmal.c │ │ │ ├── s_fmull.c │ │ │ ├── s_frexpl.c │ │ │ ├── s_fromfpl.c │ │ │ ├── s_fromfpl_main.c │ │ │ ├── s_fromfpxl.c │ │ │ ├── s_fsubl.c │ │ │ ├── s_getpayloadl.c │ │ │ ├── s_iscanonicall.c │ │ │ ├── s_issignalingl.c │ │ │ ├── s_llrintl.c │ │ │ ├── s_llroundl.c │ │ │ ├── s_lrintl.c │ │ │ ├── s_lroundl.c │ │ │ ├── s_modfl.c │ │ │ ├── s_nexttoward.c │ │ │ ├── s_nexttowardf.c │ │ │ ├── s_nextupl.c │ │ │ ├── s_remquol.c │ │ │ ├── s_roundevenl.c │ │ │ ├── s_roundl.c │ │ │ ├── s_scalblnl.c │ │ │ ├── s_setpayloadl.c │ │ │ ├── s_setpayloadl_main.c │ │ │ ├── s_setpayloadsigl.c │ │ │ ├── s_signbitl.c │ │ │ ├── s_sincosl.c │ │ │ ├── s_sinl.c │ │ │ ├── s_tanhl.c │ │ │ ├── s_tanl.c │ │ │ ├── s_totalorderl.c │ │ │ ├── s_totalordermagl.c │ │ │ ├── s_ufromfpl.c │ │ │ ├── s_ufromfpxl.c │ │ │ ├── strtold_l.c │ │ │ ├── t_sincosl.c │ │ │ ├── test-canonical-ldbl-96.c │ │ │ ├── test-totalorderl-ldbl-96.c │ │ │ ├── x2y2m1.c │ │ │ └── x2y2m1l.c │ │ ├── ldbl-opt │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── bits │ │ │ │ └── long-double.h │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── libm-alias-double.h │ │ │ ├── libm-alias-ldouble.h │ │ │ ├── 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-atan.c │ │ │ ├── nldbl-atan2.c │ │ │ ├── nldbl-atanh.c │ │ │ ├── nldbl-cabs.c │ │ │ ├── nldbl-cacos.c │ │ │ ├── nldbl-cacosh.c │ │ │ ├── nldbl-canonicalize.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-clog.c │ │ │ ├── nldbl-clog10.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-dadd.c │ │ │ ├── nldbl-ddiv.c │ │ │ ├── nldbl-dmul.c │ │ │ ├── nldbl-dprintf.c │ │ │ ├── nldbl-dprintf_chk.c │ │ │ ├── nldbl-dsub.c │ │ │ ├── nldbl-erf.c │ │ │ ├── nldbl-erfc.c │ │ │ ├── nldbl-exp.c │ │ │ ├── nldbl-exp10.c │ │ │ ├── nldbl-exp2.c │ │ │ ├── nldbl-expm1.c │ │ │ ├── nldbl-fabs.c │ │ │ ├── nldbl-fadd.c │ │ │ ├── nldbl-fdim.c │ │ │ ├── nldbl-fdiv.c │ │ │ ├── nldbl-finite.c │ │ │ ├── nldbl-floor.c │ │ │ ├── nldbl-fma.c │ │ │ ├── nldbl-fmax.c │ │ │ ├── nldbl-fmaxmag.c │ │ │ ├── nldbl-fmin.c │ │ │ ├── nldbl-fminmag.c │ │ │ ├── nldbl-fmod.c │ │ │ ├── nldbl-fmul.c │ │ │ ├── nldbl-fprintf.c │ │ │ ├── nldbl-fprintf_chk.c │ │ │ ├── nldbl-frexp.c │ │ │ ├── nldbl-fromfp.c │ │ │ ├── nldbl-fromfpx.c │ │ │ ├── nldbl-fscanf.c │ │ │ ├── nldbl-fsub.c │ │ │ ├── nldbl-fwprintf.c │ │ │ ├── nldbl-fwprintf_chk.c │ │ │ ├── nldbl-fwscanf.c │ │ │ ├── nldbl-gamma.c │ │ │ ├── nldbl-getpayload.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-llogb.c │ │ │ ├── nldbl-llrint.c │ │ │ ├── nldbl-llround.c │ │ │ ├── nldbl-log.c │ │ │ ├── nldbl-log10.c │ │ │ ├── nldbl-log1p.c │ │ │ ├── nldbl-log2.c │ │ │ ├── nldbl-logb.c │ │ │ ├── nldbl-lrint.c │ │ │ ├── nldbl-lround.c │ │ │ ├── nldbl-modf.c │ │ │ ├── nldbl-nan.c │ │ │ ├── nldbl-nearbyint.c │ │ │ ├── nldbl-nextafter.c │ │ │ ├── nldbl-nextdown.c │ │ │ ├── nldbl-nexttoward.c │ │ │ ├── nldbl-nexttowardf.c │ │ │ ├── nldbl-nextup.c │ │ │ ├── nldbl-obstack_printf.c │ │ │ ├── nldbl-obstack_printf_chk.c │ │ │ ├── nldbl-obstack_vprintf.c │ │ │ ├── nldbl-obstack_vprintf_chk.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-roundeven.c │ │ │ ├── nldbl-scalb.c │ │ │ ├── nldbl-scalbln.c │ │ │ ├── nldbl-scalbn.c │ │ │ ├── nldbl-scanf.c │ │ │ ├── nldbl-setpayload.c │ │ │ ├── nldbl-setpayloadsig.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-strfroml.c │ │ │ ├── nldbl-strtold.c │ │ │ ├── nldbl-strtold_l.c │ │ │ ├── nldbl-strtoldint.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-totalorder.c │ │ │ ├── nldbl-totalordermag.c │ │ │ ├── nldbl-trunc.c │ │ │ ├── nldbl-ufromfp.c │ │ │ ├── nldbl-ufromfpx.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-wcstold_l.c │ │ │ ├── nldbl-wcstoldint.c │ │ │ ├── nldbl-wprintf.c │ │ │ ├── nldbl-wprintf_chk.c │ │ │ ├── nldbl-wscanf.c │ │ │ ├── nldbl-y0.c │ │ │ ├── nldbl-y1.c │ │ │ ├── nldbl-yn.c │ │ │ ├── s_clog10.c │ │ │ ├── s_clog10l.c │ │ │ ├── s_copysign.c │ │ │ ├── s_finite.c │ │ │ ├── s_frexp.c │ │ │ ├── s_isinf.c │ │ │ ├── s_isnan.c │ │ │ ├── s_ldexp.c │ │ │ ├── s_ldexpl.c │ │ │ ├── s_modf.c │ │ │ ├── s_nextafter.c │ │ │ ├── s_nexttowardfd.c │ │ │ ├── test-narrow-macros-ldbl-64.c │ │ │ ├── test-nldbl-redirect.c │ │ │ ├── w_exp10_compat.c │ │ │ ├── w_exp10l_compat.c │ │ │ ├── w_lgamma_compat.c │ │ │ ├── w_lgamma_compatl.c │ │ │ ├── w_remainder_compat.c │ │ │ ├── w_remainderl_compat.c │ │ │ ├── w_scalb_compat.c │ │ │ └── w_scalbl_compat.c │ │ ├── s_lib_version.c │ │ ├── s_matherr.c │ │ ├── s_signgam.c │ │ └── soft-fp │ │ │ ├── Makefile │ │ │ ├── s_daddl.c │ │ │ ├── s_ddivl.c │ │ │ ├── s_dmull.c │ │ │ ├── s_dsubl.c │ │ │ ├── s_fadd.c │ │ │ ├── s_faddl.c │ │ │ ├── s_fdiv.c │ │ │ ├── s_fdivl.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmaf.c │ │ │ ├── s_fmal.c │ │ │ ├── s_fmul.c │ │ │ ├── s_fmull.c │ │ │ ├── s_fsub.c │ │ │ └── s_fsubl.c │ ├── init_array │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── elf-init.c │ │ ├── gmon-start.c │ │ └── pt-crti.S │ ├── m68k │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── __longjmp.c │ │ ├── abort-instr.h │ │ ├── asm-syntax.h │ │ ├── backtrace.c │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fenv.h │ │ │ ├── link.h │ │ │ └── setjmp.h │ │ ├── bsd-_setjmp.c │ │ ├── bsd-setjmp.c │ │ ├── coldfire │ │ │ ├── atomic-machine.h │ │ │ ├── fpu │ │ │ │ ├── e_sqrt.c │ │ │ │ ├── e_sqrtf.c │ │ │ │ ├── fraiseexcpt.c │ │ │ │ ├── libm-test-ulps │ │ │ │ ├── libm-test-ulps-name │ │ │ │ ├── s_fabs.c │ │ │ │ ├── s_fabsf.c │ │ │ │ ├── s_lrint.c │ │ │ │ ├── s_lrintf.c │ │ │ │ ├── s_rint.c │ │ │ │ └── s_rintf.c │ │ │ ├── ldbl-classify-compat.h │ │ │ ├── nofpu │ │ │ │ ├── Implies │ │ │ │ └── sfp-machine.h │ │ │ └── sysdep.h │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-machine.h │ │ ├── dl-tls.h │ │ ├── dl-trampoline.S │ │ ├── ffs.c │ │ ├── fpu │ │ │ ├── fclrexcpt.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetmode.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fesetenv.c │ │ │ ├── fesetexcept.c │ │ │ ├── fesetmode.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fsetexcptflg.c │ │ │ └── ftestexcept.c │ │ ├── fpu_control.h │ │ ├── gccframe.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldsodefs.h │ │ ├── libc-tls.c │ │ ├── m680x0 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── add_n.S │ │ │ ├── bits │ │ │ │ ├── flt-eval-method.h │ │ │ │ └── fp-logb.h │ │ │ ├── fpu │ │ │ │ ├── bits │ │ │ │ │ └── mathinline.h │ │ │ │ ├── branred.c │ │ │ │ ├── doasin.c │ │ │ │ ├── dosincos.c │ │ │ │ ├── e_acos.c │ │ │ │ ├── e_acosf.c │ │ │ │ ├── e_acosl.c │ │ │ │ ├── e_asin.c │ │ │ │ ├── e_asinf.c │ │ │ │ ├── e_asinl.c │ │ │ │ ├── e_atan2.c │ │ │ │ ├── e_atan2f.c │ │ │ │ ├── e_atan2l.c │ │ │ │ ├── e_atanh.c │ │ │ │ ├── e_atanhf.c │ │ │ │ ├── e_atanhl.c │ │ │ │ ├── e_cosh.c │ │ │ │ ├── e_coshf.c │ │ │ │ ├── e_coshl.c │ │ │ │ ├── e_exp.c │ │ │ │ ├── e_exp10.c │ │ │ │ ├── e_exp10f.c │ │ │ │ ├── e_exp10l.c │ │ │ │ ├── e_exp2.c │ │ │ │ ├── e_exp2f.c │ │ │ │ ├── e_exp2f_data.c │ │ │ │ ├── e_exp2l.c │ │ │ │ ├── e_exp_data.c │ │ │ │ ├── e_expf.c │ │ │ │ ├── e_expl.c │ │ │ │ ├── e_fmod.c │ │ │ │ ├── e_fmodf.c │ │ │ │ ├── e_fmodl.c │ │ │ │ ├── e_ilogb.c │ │ │ │ ├── e_ilogbf.c │ │ │ │ ├── e_ilogbl.c │ │ │ │ ├── e_log.c │ │ │ │ ├── e_log10.c │ │ │ │ ├── e_log10f.c │ │ │ │ ├── e_log10l.c │ │ │ │ ├── e_log2.c │ │ │ │ ├── e_log2_data.c │ │ │ │ ├── e_log2f.c │ │ │ │ ├── e_log2f_data.c │ │ │ │ ├── e_log2l.c │ │ │ │ ├── e_log_data.c │ │ │ │ ├── e_logf.c │ │ │ │ ├── e_logf_data.c │ │ │ │ ├── e_logl.c │ │ │ │ ├── e_pow.c │ │ │ │ ├── e_pow_log_data.c │ │ │ │ ├── e_powf.c │ │ │ │ ├── e_powf_log2_data.c │ │ │ │ ├── e_powl.c │ │ │ │ ├── e_rem_pio2l.c │ │ │ │ ├── e_remainder.c │ │ │ │ ├── e_remainderf.c │ │ │ │ ├── e_remainderl.c │ │ │ │ ├── e_scalb.c │ │ │ │ ├── e_scalbf.c │ │ │ │ ├── e_scalbl.c │ │ │ │ ├── e_sinh.c │ │ │ │ ├── e_sinhf.c │ │ │ │ ├── e_sinhl.c │ │ │ │ ├── e_sqrt.c │ │ │ │ ├── e_sqrtf.c │ │ │ │ ├── e_sqrtl.c │ │ │ │ ├── fraiseexcpt.c │ │ │ │ ├── k_cosl.c │ │ │ │ ├── k_rem_pio2.c │ │ │ │ ├── k_sinl.c │ │ │ │ ├── k_tanf.c │ │ │ │ ├── k_tanl.c │ │ │ │ ├── libm-test-ulps │ │ │ │ ├── libm-test-ulps-name │ │ │ │ ├── math-barriers.h │ │ │ │ ├── math_err.c │ │ │ │ ├── math_errf.c │ │ │ │ ├── mathimpl.h │ │ │ │ ├── mpa.c │ │ │ │ ├── mpatan.c │ │ │ │ ├── mpatan2.c │ │ │ │ ├── mpsqrt.c │ │ │ │ ├── mptan.c │ │ │ │ ├── s_atan.c │ │ │ │ ├── s_atan_template.c │ │ │ │ ├── s_atanf.c │ │ │ │ ├── s_atanl.c │ │ │ │ ├── s_ccosh_template.c │ │ │ │ ├── s_ceil.c │ │ │ │ ├── s_ceil_template.c │ │ │ │ ├── s_ceilf.c │ │ │ │ ├── s_ceill.c │ │ │ │ ├── s_cexp_template.c │ │ │ │ ├── s_cos.c │ │ │ │ ├── s_cos_template.c │ │ │ │ ├── s_cosf.c │ │ │ │ ├── s_cosl.c │ │ │ │ ├── s_csin_template.c │ │ │ │ ├── s_csinh_template.c │ │ │ │ ├── s_expm1.c │ │ │ │ ├── s_expm1_template.c │ │ │ │ ├── s_expm1f.c │ │ │ │ ├── s_expm1l.c │ │ │ │ ├── s_fabs.c │ │ │ │ ├── s_fabs_template.c │ │ │ │ ├── s_fabsf.c │ │ │ │ ├── s_fabsl.c │ │ │ │ ├── s_finite.c │ │ │ │ ├── s_finitef.c │ │ │ │ ├── s_finitel.c │ │ │ │ ├── s_floor.c │ │ │ │ ├── s_floor_template.c │ │ │ │ ├── s_floorf.c │ │ │ │ ├── s_floorl.c │ │ │ │ ├── s_fpclassifyl.c │ │ │ │ ├── s_frexp.c │ │ │ │ ├── s_frexp_template.c │ │ │ │ ├── s_frexpf.c │ │ │ │ ├── s_frexpl.c │ │ │ │ ├── s_isinf.c │ │ │ │ ├── s_isinff.c │ │ │ │ ├── s_isinfl.c │ │ │ │ ├── s_isnan.c │ │ │ │ ├── s_isnanf.c │ │ │ │ ├── s_isnanl.c │ │ │ │ ├── s_llrint.c │ │ │ │ ├── s_llrintf.c │ │ │ │ ├── s_llrintl.c │ │ │ │ ├── s_log1p.c │ │ │ │ ├── s_log1pf.c │ │ │ │ ├── s_log1pl.c │ │ │ │ ├── s_logbl.c │ │ │ │ ├── s_lrint.c │ │ │ │ ├── s_lrint_template.c │ │ │ │ ├── s_lrintf.c │ │ │ │ ├── s_lrintl.c │ │ │ │ ├── s_modf.c │ │ │ │ ├── s_modf_template.c │ │ │ │ ├── s_modff.c │ │ │ │ ├── s_modfl.c │ │ │ │ ├── s_nearbyint.c │ │ │ │ ├── s_nearbyint_template.c │ │ │ │ ├── s_nearbyintf.c │ │ │ │ ├── s_nearbyintl.c │ │ │ │ ├── s_nextafterl.c │ │ │ │ ├── s_remquo.c │ │ │ │ ├── s_remquo_template.c │ │ │ │ ├── s_remquof.c │ │ │ │ ├── s_remquol.c │ │ │ │ ├── s_rint.c │ │ │ │ ├── s_rint_template.c │ │ │ │ ├── s_rintf.c │ │ │ │ ├── s_rintl.c │ │ │ │ ├── s_scalbln.c │ │ │ │ ├── s_scalblnf.c │ │ │ │ ├── s_scalblnl.c │ │ │ │ ├── s_scalbn.c │ │ │ │ ├── s_scalbnf.c │ │ │ │ ├── s_scalbnl.c │ │ │ │ ├── s_significand.c │ │ │ │ ├── s_significandf.c │ │ │ │ ├── s_significandl.c │ │ │ │ ├── s_sin.c │ │ │ │ ├── s_sin_template.c │ │ │ │ ├── s_sincos.c │ │ │ │ ├── s_sincos_template.c │ │ │ │ ├── s_sincosf.c │ │ │ │ ├── s_sincosf_data.c │ │ │ │ ├── s_sincosl.c │ │ │ │ ├── s_sinf.c │ │ │ │ ├── s_sinl.c │ │ │ │ ├── s_tan.c │ │ │ │ ├── s_tan_template.c │ │ │ │ ├── s_tanf.c │ │ │ │ ├── s_tanh.c │ │ │ │ ├── s_tanh_template.c │ │ │ │ ├── s_tanhf.c │ │ │ │ ├── s_tanhl.c │ │ │ │ ├── s_tanl.c │ │ │ │ ├── s_trunc.c │ │ │ │ ├── s_trunc_template.c │ │ │ │ ├── s_truncf.c │ │ │ │ ├── s_truncl.c │ │ │ │ ├── sincos32.c │ │ │ │ ├── sincostab.c │ │ │ │ ├── w_exp.c │ │ │ │ ├── w_exp2.c │ │ │ │ ├── w_exp2f.c │ │ │ │ ├── w_expf.c │ │ │ │ ├── w_log.c │ │ │ │ ├── w_log2.c │ │ │ │ ├── w_log2f.c │ │ │ │ ├── w_logf.c │ │ │ │ ├── w_pow.c │ │ │ │ └── w_powf.c │ │ │ ├── lshift.S │ │ │ ├── m68020 │ │ │ │ ├── Makefile │ │ │ │ ├── addmul_1.S │ │ │ │ ├── atomic-machine.h │ │ │ │ ├── mul_1.S │ │ │ │ ├── string_private.h │ │ │ │ ├── submul_1.S │ │ │ │ └── wordcopy.S │ │ │ ├── printf_fphex.c │ │ │ ├── rshift.S │ │ │ ├── strtold_l.c │ │ │ ├── sub_n.S │ │ │ └── sysdep.h │ │ ├── memchr.S │ │ ├── memcopy.h │ │ ├── memusage.h │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── pthreadtypes-arch.h │ │ │ │ └── semaphore.h │ │ │ ├── pthread-offsets.h │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── preconfigure │ │ ├── rawmemchr.S │ │ ├── setjmp.c │ │ ├── shlib-versions │ │ ├── sotruss-lib.c │ │ ├── stackinfo.h │ │ ├── start.S │ │ ├── strchr.S │ │ ├── strchrnul.S │ │ ├── symbol-hacks.h │ │ ├── sys │ │ │ └── ucontext.h │ │ ├── sysdep.h │ │ ├── tls-macros.h │ │ ├── tst-audit.h │ │ └── wcpcpy_chk.c │ ├── mach │ │ ├── Makefile │ │ ├── Subdirs │ │ ├── _strerror.c │ │ ├── adjtime.c │ │ ├── configure │ │ ├── configure.ac │ │ ├── getloadavg.c │ │ ├── getpagesize.c │ │ ├── getsysstats.c │ │ ├── gettimeofday.c │ │ ├── htl │ │ │ ├── Implies │ │ │ ├── bits │ │ │ │ ├── spin-lock-inline.h │ │ │ │ └── types │ │ │ │ │ └── __pthread_spinlock_t.h │ │ │ ├── pt-block.c │ │ │ ├── pt-spin.c │ │ │ ├── pt-stack-alloc.c │ │ │ ├── pt-thread-alloc.c │ │ │ ├── pt-thread-start.c │ │ │ ├── pt-thread-terminate.c │ │ │ ├── pt-timedblock.c │ │ │ └── pt-wakeup.c │ │ ├── hurd │ │ │ ├── Implies │ │ │ ├── Makeconfig │ │ │ ├── Makefile │ │ │ ├── Subdirs │ │ │ ├── Versions │ │ │ ├── _exit.c │ │ │ ├── accept.c │ │ │ ├── accept4.c │ │ │ ├── access.c │ │ │ ├── adjtime.c │ │ │ ├── bind.c │ │ │ ├── bits │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── local_lim.h │ │ │ │ ├── param.h │ │ │ │ ├── posix_opt.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── statvfs.h │ │ │ │ ├── sysmacros.h │ │ │ │ ├── types │ │ │ │ │ └── error_t.h │ │ │ │ └── typesizes.h │ │ │ ├── brk.c │ │ │ ├── chdir.c │ │ │ ├── check_fds.c │ │ │ ├── check_native.c │ │ │ ├── check_pf.c │ │ │ ├── chflags.c │ │ │ ├── chmod.c │ │ │ ├── chown.c │ │ │ ├── chroot.c │ │ │ ├── clock.c │ │ │ ├── close.c │ │ │ ├── closedir.c │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── connect.c │ │ │ ├── cthreads.c │ │ │ ├── device-nrs.h │ │ │ ├── dirfd.c │ │ │ ├── dirstream.h │ │ │ ├── dl-execstack.c │ │ │ ├── dl-fcntl.h │ │ │ ├── dl-mman.h │ │ │ ├── dl-sysdep.c │ │ │ ├── dl-sysdep.h │ │ │ ├── dl-unistd.h │ │ │ ├── dup2.c │ │ │ ├── dup3.c │ │ │ ├── eloop-threshold.h │ │ │ ├── enbl-secure.c │ │ │ ├── err_hurd.sub │ │ │ ├── errlist.c │ │ │ ├── errno-loc.c │ │ │ ├── errnos.awk │ │ │ ├── euidaccess.c │ │ │ ├── execve.c │ │ │ ├── f_setlk.c │ │ │ ├── f_setlk.h │ │ │ ├── faccessat.c │ │ │ ├── fchdir.c │ │ │ ├── fchflags.c │ │ │ ├── fchmod.c │ │ │ ├── fchmodat.c │ │ │ ├── fchown.c │ │ │ ├── fchownat.c │ │ │ ├── fcntl.c │ │ │ ├── fcntl64.c │ │ │ ├── fdatasync.c │ │ │ ├── fdopendir.c │ │ │ ├── fexecve.c │ │ │ ├── fgetxattr.c │ │ │ ├── flistxattr.c │ │ │ ├── flock.c │ │ │ ├── fork.c │ │ │ ├── fpathconf.c │ │ │ ├── fremovexattr.c │ │ │ ├── fsetxattr.c │ │ │ ├── fstatfs.c │ │ │ ├── fstatfs64.c │ │ │ ├── fstatvfs.c │ │ │ ├── fstatvfs64.c │ │ │ ├── fsync.c │ │ │ ├── ftruncate.c │ │ │ ├── ftruncate64.c │ │ │ ├── futimens.c │ │ │ ├── futimes.c │ │ │ ├── futimesat.c │ │ │ ├── fxstat.c │ │ │ ├── fxstat64.c │ │ │ ├── fxstatat.c │ │ │ ├── fxstatat64.c │ │ │ ├── gai_misc.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 │ │ │ ├── hp-timing.h │ │ │ ├── htl │ │ │ │ ├── Implies │ │ │ │ ├── bits │ │ │ │ │ ├── pthread-np.h │ │ │ │ │ └── types │ │ │ │ │ │ └── struct___pthread_mutex.h │ │ │ │ ├── pt-attr-setstackaddr.c │ │ │ │ ├── pt-attr-setstacksize.c │ │ │ │ ├── pt-docancel.c │ │ │ │ ├── pt-hurd-cond-timedwait.c │ │ │ │ ├── pt-hurd-cond-wait.c │ │ │ │ ├── pt-mutex-consistent.c │ │ │ │ ├── pt-mutex-destroy.c │ │ │ │ ├── pt-mutex-getprioceiling.c │ │ │ │ ├── pt-mutex-init.c │ │ │ │ ├── pt-mutex-lock.c │ │ │ │ ├── pt-mutex-setprioceiling.c │ │ │ │ ├── pt-mutex-timedlock.c │ │ │ │ ├── pt-mutex-transfer-np.c │ │ │ │ ├── pt-mutex-trylock.c │ │ │ │ ├── pt-mutex-unlock.c │ │ │ │ ├── pt-mutex.h │ │ │ │ ├── pt-mutexattr-destroy.c │ │ │ │ ├── pt-mutexattr-getprioceiling.c │ │ │ │ ├── pt-mutexattr-getprotocol.c │ │ │ │ ├── pt-mutexattr-getpshared.c │ │ │ │ ├── pt-mutexattr-getrobust.c │ │ │ │ ├── pt-mutexattr-gettype.c │ │ │ │ ├── pt-mutexattr-init.c │ │ │ │ ├── pt-mutexattr-setprioceiling.c │ │ │ │ ├── pt-mutexattr-setprotocol.c │ │ │ │ ├── pt-mutexattr-setpshared.c │ │ │ │ ├── pt-mutexattr-setrobust.c │ │ │ │ ├── pt-mutexattr-settype.c │ │ │ │ ├── pt-mutexattr.c │ │ │ │ ├── pt-sigstate-destroy.c │ │ │ │ ├── pt-sigstate-init.c │ │ │ │ ├── pt-sigstate.c │ │ │ │ ├── pt-sysdep.c │ │ │ │ └── pt-sysdep.h │ │ │ ├── i386 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── bits │ │ │ │ │ └── sigcontext.h │ │ │ │ ├── c++-types.data │ │ │ │ ├── dl-machine.h │ │ │ │ ├── exc2signal.c │ │ │ │ ├── htl │ │ │ │ │ ├── Implies │ │ │ │ │ ├── pt-machdep.c │ │ │ │ │ └── pt-setup.c │ │ │ │ ├── init-first.c │ │ │ │ ├── intr-msg.h │ │ │ │ ├── ioperm.c │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── longjmp-ts.c │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── signal-defines.sym │ │ │ │ ├── sigreturn.c │ │ │ │ ├── static-start.S │ │ │ │ ├── sys │ │ │ │ │ └── io.h │ │ │ │ ├── tls.h │ │ │ │ ├── tlsdesc.sym │ │ │ │ └── trampoline.c │ │ │ ├── if_index.c │ │ │ ├── ifreq.c │ │ │ ├── ifreq.h │ │ │ ├── init-posix.c │ │ │ ├── ioctl.c │ │ │ ├── isatty.c │ │ │ ├── jmp-unwind.c │ │ │ ├── kernel-features.h │ │ │ ├── kill.c │ │ │ ├── lchmod.c │ │ │ ├── lchown.c │ │ │ ├── lgetxattr.c │ │ │ ├── libc-ldscript │ │ │ ├── libc-start.h │ │ │ ├── libc_p-ldscript │ │ │ ├── libhurduser.abilist │ │ │ ├── link.c │ │ │ ├── linkat.c │ │ │ ├── listen.c │ │ │ ├── listxattr.c │ │ │ ├── llistxattr.c │ │ │ ├── lremovexattr.c │ │ │ ├── lseek.c │ │ │ ├── lseek64.c │ │ │ ├── lsetxattr.c │ │ │ ├── lutimes.c │ │ │ ├── lxstat.c │ │ │ ├── lxstat64.c │ │ │ ├── malloc-machine.h │ │ │ ├── mig-reply.c │ │ │ ├── mkdir.c │ │ │ ├── mkdirat.c │ │ │ ├── mlock.c │ │ │ ├── mlockall.c │ │ │ ├── mmap.c │ │ │ ├── mmap64.c │ │ │ ├── msync.c │ │ │ ├── munlock.c │ │ │ ├── munlockall.c │ │ │ ├── net │ │ │ │ ├── ethernet.h │ │ │ │ ├── if_arp.h │ │ │ │ ├── if_ether.h │ │ │ │ └── route.h │ │ │ ├── not-errno.h │ │ │ ├── open.c │ │ │ ├── open64.c │ │ │ ├── openat.c │ │ │ ├── openat64.c │ │ │ ├── opendir.c │ │ │ ├── pathconf.c │ │ │ ├── pipe.c │ │ │ ├── pipe2.c │ │ │ ├── poll.c │ │ │ ├── ppoll.c │ │ │ ├── pread.c │ │ │ ├── pread64.c │ │ │ ├── prof-freq.c │ │ │ ├── profil.c │ │ │ ├── pselect.c │ │ │ ├── ptrace.c │ │ │ ├── ptsname.c │ │ │ ├── pwrite.c │ │ │ ├── pwrite64.c │ │ │ ├── read.c │ │ │ ├── readdir.c │ │ │ ├── readdir64.c │ │ │ ├── readdir64_r.c │ │ │ ├── readdir_r.c │ │ │ ├── readlink.c │ │ │ ├── readlinkat.c │ │ │ ├── reboot.c │ │ │ ├── recv.c │ │ │ ├── recvfrom.c │ │ │ ├── recvmsg.c │ │ │ ├── removexattr.c │ │ │ ├── rename.c │ │ │ ├── renameat.c │ │ │ ├── renameat2.c │ │ │ ├── res_enable_icmp.c │ │ │ ├── revoke.c │ │ │ ├── rewinddir.c │ │ │ ├── rmdir.c │ │ │ ├── sbrk.c │ │ │ ├── seekdir.c │ │ │ ├── select.c │ │ │ ├── send.c │ │ │ ├── sendfile.c │ │ │ ├── sendfile64.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 │ │ │ ├── shlib-versions │ │ │ ├── shutdown.c │ │ │ ├── sigaction.c │ │ │ ├── sigaltstack.c │ │ │ ├── siglist.h │ │ │ ├── sigpending.c │ │ │ ├── sigprocmask.c │ │ │ ├── sigstack.c │ │ │ ├── sigsuspend.c │ │ │ ├── sigwait.c │ │ │ ├── socket.c │ │ │ ├── socketpair.c │ │ │ ├── spawni.c │ │ │ ├── statfs.c │ │ │ ├── statfs64.c │ │ │ ├── statfsconv.c │ │ │ ├── statvfs.c │ │ │ ├── statvfs64.c │ │ │ ├── symlink.c │ │ │ ├── symlinkat.c │ │ │ ├── sync.c │ │ │ ├── syncfs.c │ │ │ ├── sysconf.c │ │ │ ├── sysdep-cancel.h │ │ │ ├── telldir.c │ │ │ ├── times.c │ │ │ ├── tls.h │ │ │ ├── tmpfile.c │ │ │ ├── tmpfile64.c │ │ │ ├── truncate.c │ │ │ ├── truncate64.c │ │ │ ├── ttyname.c │ │ │ ├── ttyname_r.c │ │ │ ├── umask.c │ │ │ ├── uname.c │ │ │ ├── unlink.c │ │ │ ├── unlinkat.c │ │ │ ├── utime-helper.c │ │ │ ├── utimensat.c │ │ │ ├── utimes.c │ │ │ ├── wait4.c │ │ │ ├── write.c │ │ │ ├── x86 │ │ │ │ └── dl-sysdep.c │ │ │ ├── xmknod.c │ │ │ ├── xmknodat.c │ │ │ ├── xstat.c │ │ │ ├── xstat64.c │ │ │ └── xstatconv.c │ │ ├── i386 │ │ │ ├── bits │ │ │ │ └── mach │ │ │ │ │ └── param.h │ │ │ ├── machine-lock.h │ │ │ ├── machine-sp.h │ │ │ ├── syscall.S │ │ │ ├── sysdep.h │ │ │ └── thread_state.h │ │ ├── include │ │ │ ├── lock-intern.h │ │ │ ├── mach-shortcuts-hidden.h │ │ │ ├── mach.h │ │ │ ├── mach │ │ │ │ ├── mach_traps.h │ │ │ │ └── mig_support.h │ │ │ └── mach_error.h │ │ ├── libc-lock.h │ │ ├── libmachuser.abilist │ │ ├── mprotect.c │ │ ├── msync.c │ │ ├── munmap.c │ │ ├── nanosleep.c │ │ ├── pagecopy.h │ │ ├── readonly-area.c │ │ ├── sched_yield.c │ │ ├── sleep.c │ │ ├── strerror_l.c │ │ ├── sys │ │ │ ├── reboot.h │ │ │ └── syscall.h │ │ ├── sysdep.h │ │ ├── thread_state.h │ │ ├── usleep.c │ │ └── xpg-strerror.c │ ├── microblaze │ │ ├── Implies │ │ ├── Makefile │ │ ├── __longjmp.S │ │ ├── _mcount.S │ │ ├── abort-instr.h │ │ ├── asm-syntax.h │ │ ├── atomic-machine.h │ │ ├── backtrace.c │ │ ├── backtrace_linux.c │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fenv.h │ │ │ ├── link.h │ │ │ └── setjmp.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-machine.h │ │ ├── dl-tls.h │ │ ├── dl-trampoline.S │ │ ├── gccframe.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldbl-classify-compat.h │ │ ├── ldsodefs.h │ │ ├── libc-tls.c │ │ ├── libm-test-ulps │ │ ├── libm-test-ulps-name │ │ ├── machine-gmon.h │ │ ├── memusage.h │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── pthreadtypes-arch.h │ │ │ │ └── semaphore.h │ │ │ ├── pthread-offsets.h │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── preconfigure │ │ ├── setjmp.S │ │ ├── sfp-machine.h │ │ ├── sotruss-lib.c │ │ ├── stackinfo.h │ │ ├── start.S │ │ ├── sysdep.h │ │ ├── tls-macros.h │ │ └── tst-audit.h │ ├── mips │ │ ├── Implies │ │ ├── Makefile │ │ ├── __longjmp.c │ │ ├── abort-instr.h │ │ ├── add_n.S │ │ ├── addmul_1.S │ │ ├── atomic-machine.h │ │ ├── bits │ │ │ ├── dlfcn.h │ │ │ ├── endian.h │ │ │ ├── fenv.h │ │ │ ├── ipctypes.h │ │ │ ├── link.h │ │ │ ├── setjmp.h │ │ │ └── wordsize.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── configure │ │ ├── configure.ac │ │ ├── dl-dtprocnum.h │ │ ├── dl-machine-reject-phdr.h │ │ ├── dl-machine.h │ │ ├── dl-procinfo.c │ │ ├── dl-procinfo.h │ │ ├── dl-tls.h │ │ ├── dl-trampoline.c │ │ ├── fpregdef.h │ │ ├── fpu │ │ │ ├── e_sqrt.c │ │ │ ├── e_sqrtf.c │ │ │ ├── fclrexcpt.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetmode.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fenv_libc.h │ │ │ ├── fenv_private.h │ │ │ ├── fesetenv.c │ │ │ ├── fesetexcept.c │ │ │ ├── fesetmode.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ └── ftestexcept.c │ │ ├── fpu_control.h │ │ ├── gccframe.h │ │ ├── ieee754 │ │ │ ├── bits │ │ │ │ ├── floatn.h │ │ │ │ └── long-double.h │ │ │ ├── ieee754.h │ │ │ └── s_fmal.c │ │ ├── include │ │ │ └── sys │ │ │ │ └── asm.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldbl-classify-compat.h │ │ ├── ldsodefs.h │ │ ├── libc-tls.c │ │ ├── linkmap.h │ │ ├── localplt.data │ │ ├── lshift.S │ │ ├── machine-gmon.h │ │ ├── math-tests-snan-payload.h │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── memusage.h │ │ ├── mips32 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── fpu │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── e_sqrt.c │ │ │ │ ├── e_sqrtf.c │ │ │ │ ├── fix-fp-int-convert-overflow.h │ │ │ │ └── fpucw-helpers.c │ │ │ ├── libm-test-ulps │ │ │ ├── libm-test-ulps-name │ │ │ ├── mips16 │ │ │ │ ├── add_n.c │ │ │ │ ├── addmul_1.c │ │ │ │ ├── fpu │ │ │ │ │ └── Makefile │ │ │ │ ├── lshift.c │ │ │ │ ├── mul_1.c │ │ │ │ ├── rshift.c │ │ │ │ ├── sub_n.c │ │ │ │ └── submul_1.c │ │ │ ├── nofpu │ │ │ │ └── Implies │ │ │ └── sfp-machine.h │ │ ├── mips64 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── __longjmp.c │ │ │ ├── add_n.S │ │ │ ├── addmul_1.S │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── e_sqrtl.c │ │ │ ├── gmp-mparam.h │ │ │ ├── libm-test-ulps │ │ │ ├── libm-test-ulps-name │ │ │ ├── lshift.S │ │ │ ├── mul_1.S │ │ │ ├── n32 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── _itoa.h │ │ │ │ ├── crti.S │ │ │ │ ├── crtn.S │ │ │ │ ├── fpu │ │ │ │ │ ├── e_sqrt.c │ │ │ │ │ ├── e_sqrtf.c │ │ │ │ │ └── s_fma.c │ │ │ │ └── nofpu │ │ │ │ │ └── Implies │ │ │ ├── n64 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── crti.S │ │ │ │ ├── crtn.S │ │ │ │ ├── fpu │ │ │ │ │ ├── e_sqrt.c │ │ │ │ │ ├── e_sqrtf.c │ │ │ │ │ └── s_fma.c │ │ │ │ └── nofpu │ │ │ │ │ └── Implies │ │ │ ├── rshift.S │ │ │ ├── setjmp.S │ │ │ ├── setjmp_aux.c │ │ │ ├── sfp-machine.h │ │ │ ├── sub_n.S │ │ │ └── submul_1.S │ │ ├── mul_1.S │ │ ├── nan-high-order-bit.h │ │ ├── nofpu │ │ │ ├── fesetenv.c │ │ │ └── feupdateenv.c │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── pthreadtypes-arch.h │ │ │ │ └── semaphore.h │ │ │ ├── nptl-sysdep.S │ │ │ ├── pthread-offsets.h │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── preconfigure │ │ ├── regdef.h │ │ ├── rshift.S │ │ ├── setjmp.S │ │ ├── setjmp_aux.c │ │ ├── sgidefs.h │ │ ├── sotruss-lib.c │ │ ├── stackinfo.h │ │ ├── start.S │ │ ├── strcmp.S │ │ ├── sub_n.S │ │ ├── submul_1.S │ │ ├── sys │ │ │ ├── asm.h │ │ │ ├── fpregdef.h │ │ │ ├── regdef.h │ │ │ ├── tas.h │ │ │ └── ucontext.h │ │ ├── tininess.h │ │ ├── tls-macros.h │ │ ├── tst-abi-fp32mod.c │ │ ├── tst-abi-fp64amod.c │ │ ├── tst-abi-fp64mod.c │ │ ├── tst-abi-fpxxmod.c │ │ ├── tst-abi-fpxxomod.c │ │ ├── tst-abi-interlink.c │ │ ├── tst-audit.h │ │ ├── tst-mode-switch-1.c │ │ ├── tst-mode-switch-2.c │ │ └── tst-mode-switch-3.c │ ├── nios2 │ │ ├── Implies │ │ ├── Makefile │ │ ├── Subdirs │ │ ├── Versions │ │ ├── __longjmp.S │ │ ├── abort-instr.h │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fenv.h │ │ │ ├── link.h │ │ │ └── setjmp.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── configure │ │ ├── configure.ac │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-init.c │ │ ├── dl-machine.h │ │ ├── dl-sysdep.h │ │ ├── dl-tls.h │ │ ├── dl-trampoline.S │ │ ├── gccframe.h │ │ ├── gmp-mparam.h │ │ ├── jmpbuf-offsets.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldbl-classify-compat.h │ │ ├── ldsodefs.h │ │ ├── libc-tls.c │ │ ├── libm-test-ulps │ │ ├── libm-test-ulps-name │ │ ├── machine-gmon.h │ │ ├── memusage.h │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── pthreadtypes-arch.h │ │ │ │ └── semaphore.h │ │ │ ├── pthread-offsets.h │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── preconfigure │ │ ├── setjmp.S │ │ ├── sfp-machine.h │ │ ├── sotruss-lib.c │ │ ├── stackguard-macros.h │ │ ├── stackinfo.h │ │ ├── start.S │ │ ├── sysdep.h │ │ ├── tls-macros.h │ │ └── tst-audit.h │ ├── nptl │ │ ├── Implies │ │ ├── Makeconfig │ │ ├── Makefile │ │ ├── Subdirs │ │ ├── aio_misc.h │ │ ├── allocrtsig.c │ │ ├── bits │ │ │ ├── pthreadtypes.h │ │ │ └── thread-shared-types.h │ │ ├── dl-tunables.list │ │ ├── fork.c │ │ ├── fork.h │ │ ├── futex-internal.h │ │ ├── gai_misc.h │ │ ├── internaltypes.h │ │ ├── jmp-unwind.c │ │ ├── libc-lock.h │ │ ├── libc-lockP.h │ │ ├── librt-cancellation.c │ │ ├── lowlevellock-futex.h │ │ ├── lowlevellock.h │ │ ├── malloc-machine.h │ │ ├── proc_service.h │ │ ├── pthread-functions.h │ │ ├── pthread.h │ │ ├── setxid.h │ │ ├── shm-directory.h │ │ ├── stdio-lock.h │ │ ├── sys │ │ │ └── procfs.h │ │ ├── tcb-offsets.h │ │ ├── thread_db.h │ │ ├── threads.h │ │ ├── timer_routines.h │ │ ├── tst-mqueue8x.c │ │ └── unwind-forcedunwind.c │ ├── posix │ │ ├── Makefile │ │ ├── Subdirs │ │ ├── alarm.c │ │ ├── clock.c │ │ ├── clock_getres.c │ │ ├── closedir.c │ │ ├── ctermid.c │ │ ├── cuserid.c │ │ ├── dirfd.c │ │ ├── dirstream.h │ │ ├── dl-fileid.h │ │ ├── dup.c │ │ ├── dup2.c │ │ ├── euidaccess.c │ │ ├── fdopendir.c │ │ ├── flock.c │ │ ├── fpathconf.c │ │ ├── gai_strerror-strs.h │ │ ├── gai_strerror.c │ │ ├── getaddrinfo.c │ │ ├── getcwd.c │ │ ├── getdtsz.c │ │ ├── gethostname.c │ │ ├── getpagesize.c │ │ ├── gettimeofday.c │ │ ├── isatty.c │ │ ├── isfdtype.c │ │ ├── killpg.c │ │ ├── libc_fatal.c │ │ ├── mkfifo.c │ │ ├── mkfifoat.c │ │ ├── nice.c │ │ ├── open64.c │ │ ├── opendir.c │ │ ├── pathconf.c │ │ ├── pause.c │ │ ├── posix_fallocate.c │ │ ├── posix_fallocate64.c │ │ ├── pread.c │ │ ├── pread64.c │ │ ├── preadv.c │ │ ├── preadv2.c │ │ ├── preadv64.c │ │ ├── preadv64v2.c │ │ ├── preadv_common.c │ │ ├── profil.c │ │ ├── pwrite.c │ │ ├── pwrite64.c │ │ ├── pwritev.c │ │ ├── pwritev2.c │ │ ├── pwritev64.c │ │ ├── pwritev64v2.c │ │ ├── pwritev_common.c │ │ ├── raise.c │ │ ├── readdir.c │ │ ├── readdir_r.c │ │ ├── readv.c │ │ ├── remove.c │ │ ├── rename.c │ │ ├── rewinddir.c │ │ ├── seekdir.c │ │ ├── shm-directory.c │ │ ├── shm-directory.h │ │ ├── shm_open.c │ │ ├── shm_unlink.c │ │ ├── sigblock.c │ │ ├── sigignore.c │ │ ├── sigintr.c │ │ ├── signal.c │ │ ├── sigpause.c │ │ ├── sigset.c │ │ ├── sigsetmask.c │ │ ├── sigsuspend.c │ │ ├── sigwait.c │ │ ├── sleep.c │ │ ├── spawni.c │ │ ├── sprofil.c │ │ ├── sysconf.c │ │ ├── system.c │ │ ├── sysv_signal.c │ │ ├── telldir.c │ │ ├── tempname.c │ │ ├── time.c │ │ ├── timespec_get.c │ │ ├── truncate.c │ │ ├── ttyname.c │ │ ├── ttyname_r.c │ │ ├── ulimit.c │ │ ├── usleep.c │ │ ├── utime.c │ │ ├── utimes.c │ │ ├── wait.c │ │ ├── wait3.c │ │ ├── waitid.c │ │ └── writev.c │ ├── powerpc │ │ ├── Makefile │ │ ├── Versions │ │ ├── abort-instr.h │ │ ├── atomic-machine.h │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fenv.h │ │ │ ├── fenvinline.h │ │ │ ├── floatn.h │ │ │ ├── fp-fast.h │ │ │ ├── hwcap.h │ │ │ ├── link.h │ │ │ └── setjmp.h │ │ ├── cpu-features.c │ │ ├── cpu-features.h │ │ ├── dl-procinfo.c │ │ ├── dl-procinfo.h │ │ ├── dl-tls.c │ │ ├── dl-tls.h │ │ ├── dl-tunables.list │ │ ├── ffs.c │ │ ├── fpu │ │ │ ├── Makefile │ │ │ ├── e_hypot.c │ │ │ ├── e_hypotf.c │ │ │ ├── e_sqrt.c │ │ │ ├── e_sqrtf.c │ │ │ ├── fclrexcpt.c │ │ │ ├── fe_mask.c │ │ │ ├── fe_nomask.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetmode.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fenv_const.c │ │ │ ├── fenv_libc.h │ │ │ ├── fenv_private.h │ │ │ ├── fesetenv.c │ │ │ ├── fesetexcept.c │ │ │ ├── fesetmode.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fix-fp-int-compare-invalid.h │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ ├── ftestexcept.c │ │ │ ├── get-rounding-mode.h │ │ │ ├── libm-test-ulps │ │ │ ├── libm-test-ulps-name │ │ │ ├── math-barriers.h │ │ │ ├── math-tests-trap-force.h │ │ │ ├── math_ldbl.h │ │ │ ├── math_private.h │ │ │ ├── round_to_integer.h │ │ │ ├── s_ceil.c │ │ │ ├── s_ceilf.c │ │ │ ├── s_copysign.c │ │ │ ├── s_copysignf.c │ │ │ ├── s_floor.c │ │ │ ├── s_floorf.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmaf.c │ │ │ ├── s_logb.c │ │ │ ├── s_logbf.c │ │ │ ├── s_logbl.c │ │ │ ├── s_lrintf.c │ │ │ ├── s_modf.c │ │ │ ├── s_modff.c │ │ │ ├── s_nearbyint.c │ │ │ ├── s_nearbyintf.c │ │ │ ├── s_rint.c │ │ │ ├── s_rintf.c │ │ │ ├── s_round.c │ │ │ ├── s_roundf.c │ │ │ ├── s_trunc.c │ │ │ ├── s_truncf.c │ │ │ ├── t_sqrt.c │ │ │ └── tst-setcontext-fpscr.c │ │ ├── fpu_control.h │ │ ├── gccframe.h │ │ ├── hwcapinfo.c │ │ ├── hwcapinfo.h │ │ ├── ifunc-sel.h │ │ ├── jmpbuf-offsets.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldsodefs.h │ │ ├── libc-tls.c │ │ ├── locale-defines.sym │ │ ├── longjmp.c │ │ ├── machine-gmon.h │ │ ├── math-tests-snan-cast.h │ │ ├── memusage.h │ │ ├── mod-tlsopt-powerpc.c │ │ ├── mp_clz_tab.c │ │ ├── nofpu │ │ │ ├── Makefile │ │ │ ├── Subdirs │ │ │ ├── Versions │ │ │ ├── atomic-feclearexcept.c │ │ │ ├── atomic-feholdexcept.c │ │ │ ├── atomic-feupdateenv.c │ │ │ ├── fclrexcpt.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetmode.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fenv_const.c │ │ │ ├── fesetenv.c │ │ │ ├── fesetexcept.c │ │ │ ├── fesetmode.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── flt-rounds.c │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ ├── ftestexcept.c │ │ │ ├── get-rounding-mode.h │ │ │ ├── libm-test-ulps │ │ │ ├── libm-test-ulps-name │ │ │ ├── sfp-machine.h │ │ │ ├── sim-full.c │ │ │ ├── soft-supp.h │ │ │ ├── sqrtdf2.c │ │ │ └── sqrtsf2.c │ │ ├── novmx-longjmp.c │ │ ├── novmx-sigjmp.c │ │ ├── novmxsetjmp.h │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ └── pthreadtypes-arch.h │ │ │ ├── elide.h │ │ │ ├── pthread-offsets.h │ │ │ ├── pthread_spin_lock.c │ │ │ ├── pthread_spin_trylock.c │ │ │ ├── pthread_spin_unlock.c │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── power4 │ │ │ └── wordcopy.c │ │ ├── power6 │ │ │ └── wordcopy.c │ │ ├── powerpc32 │ │ │ ├── 405 │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.S │ │ │ │ ├── strlen.S │ │ │ │ └── strncmp.S │ │ │ ├── 440 │ │ │ │ └── Implies │ │ │ ├── 464 │ │ │ │ └── Implies │ │ │ ├── 476 │ │ │ │ ├── Implies │ │ │ │ └── memset.S │ │ │ ├── 970 │ │ │ │ └── Implies │ │ │ ├── Implies │ │ │ ├── Implies-after │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── __longjmp-common.S │ │ │ ├── __longjmp.S │ │ │ ├── a2 │ │ │ │ └── memcpy.S │ │ │ ├── add_n.S │ │ │ ├── addmul_1.S │ │ │ ├── atomic-machine.h │ │ │ ├── backtrace.c │ │ │ ├── bits │ │ │ │ └── wordsize.h │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── bzero.S │ │ │ ├── cell │ │ │ │ └── memcpy.S │ │ │ ├── compat-ppc-mcount.S │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── dl-dtprocnum.h │ │ │ ├── dl-irel.h │ │ │ ├── dl-machine.c │ │ │ ├── dl-machine.h │ │ │ ├── dl-start.S │ │ │ ├── dl-trampoline.S │ │ │ ├── fpu │ │ │ │ ├── Makefile │ │ │ │ ├── __longjmp-common.S │ │ │ │ ├── __longjmp.S │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── fix-int-fp-convert-zero.h │ │ │ │ ├── fprrest.S │ │ │ │ ├── fprsave.S │ │ │ │ ├── s_copysignl.S │ │ │ │ ├── s_fabsl.S │ │ │ │ ├── s_llrint.c │ │ │ │ ├── s_llrintf.c │ │ │ │ ├── s_llround.c │ │ │ │ ├── s_llroundf.c │ │ │ │ ├── s_lrint.c │ │ │ │ ├── s_lround.c │ │ │ │ ├── s_lroundf.S │ │ │ │ ├── setjmp-common.S │ │ │ │ └── setjmp.S │ │ │ ├── gprrest0.S │ │ │ ├── gprrest1.S │ │ │ ├── gprsave0.S │ │ │ ├── gprsave1.S │ │ │ ├── libgcc-compat.S │ │ │ ├── lshift.S │ │ │ ├── mcount.c │ │ │ ├── memset.S │ │ │ ├── mul_1.S │ │ │ ├── power4 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── fpu │ │ │ │ │ └── multiarch │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── e_hypot-power7.c │ │ │ │ │ │ ├── e_hypot-ppc32.c │ │ │ │ │ │ ├── e_hypot.c │ │ │ │ │ │ ├── e_hypotf-power7.c │ │ │ │ │ │ ├── e_hypotf-ppc32.c │ │ │ │ │ │ ├── e_hypotf.c │ │ │ │ │ │ ├── s_ceil-power5+.c │ │ │ │ │ │ ├── s_ceil-ppc32.c │ │ │ │ │ │ ├── s_ceil.c │ │ │ │ │ │ ├── s_ceilf-power5+.c │ │ │ │ │ │ ├── s_ceilf-ppc32.c │ │ │ │ │ │ ├── s_ceilf.c │ │ │ │ │ │ ├── s_floor-power5+.c │ │ │ │ │ │ ├── s_floor-ppc32.c │ │ │ │ │ │ ├── s_floor.c │ │ │ │ │ │ ├── s_floorf-power5+.c │ │ │ │ │ │ ├── s_floorf-ppc32.c │ │ │ │ │ │ ├── s_floorf.c │ │ │ │ │ │ ├── s_llrint-power6.c │ │ │ │ │ │ ├── s_llrint-ppc32.c │ │ │ │ │ │ ├── s_llrint.c │ │ │ │ │ │ ├── s_llrintf-power6.c │ │ │ │ │ │ ├── s_llrintf-ppc32.c │ │ │ │ │ │ ├── s_llrintf.c │ │ │ │ │ │ ├── s_llround-power5+.c │ │ │ │ │ │ ├── s_llround-power6.c │ │ │ │ │ │ ├── s_llround-ppc32.c │ │ │ │ │ │ ├── s_llround.c │ │ │ │ │ │ ├── s_llroundf.c │ │ │ │ │ │ ├── s_logb-power7.c │ │ │ │ │ │ ├── s_logb-ppc32.c │ │ │ │ │ │ ├── s_logb.c │ │ │ │ │ │ ├── s_logbf-power7.c │ │ │ │ │ │ ├── s_logbf-ppc32.c │ │ │ │ │ │ ├── s_logbf.c │ │ │ │ │ │ ├── s_logbl-power7.c │ │ │ │ │ │ ├── s_logbl-ppc32.c │ │ │ │ │ │ ├── s_logbl.c │ │ │ │ │ │ ├── s_lrint-power6x.S │ │ │ │ │ │ ├── s_lrint-ppc32.c │ │ │ │ │ │ ├── s_lrint.c │ │ │ │ │ │ ├── s_lrintf.c │ │ │ │ │ │ ├── s_lround-power5+.c │ │ │ │ │ │ ├── s_lround-power6x.S │ │ │ │ │ │ ├── s_lround-ppc32.c │ │ │ │ │ │ ├── s_lround.c │ │ │ │ │ │ ├── s_lroundf.c │ │ │ │ │ │ ├── s_modf-power5+.c │ │ │ │ │ │ ├── s_modf-ppc32.c │ │ │ │ │ │ ├── s_modf.c │ │ │ │ │ │ ├── s_modff-power5+.c │ │ │ │ │ │ ├── s_modff-ppc32.c │ │ │ │ │ │ ├── s_modff.c │ │ │ │ │ │ ├── s_round-power5+.c │ │ │ │ │ │ ├── s_round-ppc32.c │ │ │ │ │ │ ├── s_round.c │ │ │ │ │ │ ├── s_roundf-power5+.c │ │ │ │ │ │ ├── s_roundf-ppc32.c │ │ │ │ │ │ ├── s_roundf.c │ │ │ │ │ │ ├── s_trunc-power5+.c │ │ │ │ │ │ ├── s_trunc-ppc32.c │ │ │ │ │ │ ├── s_trunc.c │ │ │ │ │ │ ├── s_truncf-power5+.c │ │ │ │ │ │ ├── s_truncf-ppc32.c │ │ │ │ │ │ └── s_truncf.c │ │ │ │ ├── hp-timing.h │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcopy.h │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ ├── multiarch │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bzero-power6.S │ │ │ │ │ ├── bzero-power7.S │ │ │ │ │ ├── bzero-ppc32.S │ │ │ │ │ ├── bzero.c │ │ │ │ │ ├── ifunc-impl-list.c │ │ │ │ │ ├── init-arch.h │ │ │ │ │ ├── memchr-power7.S │ │ │ │ │ ├── memchr-ppc32.c │ │ │ │ │ ├── memchr.c │ │ │ │ │ ├── memcmp-power7.S │ │ │ │ │ ├── memcmp-ppc32.S │ │ │ │ │ ├── memcmp.c │ │ │ │ │ ├── memcpy-a2.S │ │ │ │ │ ├── memcpy-cell.S │ │ │ │ │ ├── memcpy-power6.S │ │ │ │ │ ├── memcpy-power7.S │ │ │ │ │ ├── memcpy-ppc32.S │ │ │ │ │ ├── memcpy.c │ │ │ │ │ ├── memmove-power7.c │ │ │ │ │ ├── memmove-ppc.c │ │ │ │ │ ├── memmove.c │ │ │ │ │ ├── mempcpy-power7.S │ │ │ │ │ ├── mempcpy-ppc32.c │ │ │ │ │ ├── mempcpy.c │ │ │ │ │ ├── memrchr-power7.S │ │ │ │ │ ├── memrchr-ppc32.c │ │ │ │ │ ├── memrchr.c │ │ │ │ │ ├── memset-power6.S │ │ │ │ │ ├── memset-power7.S │ │ │ │ │ ├── memset-ppc32.S │ │ │ │ │ ├── memset.c │ │ │ │ │ ├── rawmemchr-power7.S │ │ │ │ │ ├── rawmemchr-ppc32.c │ │ │ │ │ ├── rawmemchr.c │ │ │ │ │ ├── rtld-memcmp.S │ │ │ │ │ ├── rtld-memset.S │ │ │ │ │ ├── rtld-strchr.S │ │ │ │ │ ├── rtld-strnlen.c │ │ │ │ │ ├── strcasecmp-power7.S │ │ │ │ │ ├── strcasecmp.c │ │ │ │ │ ├── strcasecmp_l-power7.S │ │ │ │ │ ├── strcasecmp_l.c │ │ │ │ │ ├── strchr-power7.S │ │ │ │ │ ├── strchr-ppc32.S │ │ │ │ │ ├── strchr.c │ │ │ │ │ ├── strchrnul-power7.S │ │ │ │ │ ├── strchrnul-ppc32.c │ │ │ │ │ ├── strchrnul.c │ │ │ │ │ ├── strlen-power7.S │ │ │ │ │ ├── strlen-ppc32.S │ │ │ │ │ ├── strlen.c │ │ │ │ │ ├── strncase-power7.c │ │ │ │ │ ├── strncase.c │ │ │ │ │ ├── strncase_l-power7.c │ │ │ │ │ ├── strncase_l.c │ │ │ │ │ ├── strncmp-power7.S │ │ │ │ │ ├── strncmp-ppc32.S │ │ │ │ │ ├── strncmp.c │ │ │ │ │ ├── strnlen-power7.S │ │ │ │ │ ├── strnlen-ppc32.c │ │ │ │ │ ├── strnlen.c │ │ │ │ │ ├── wordcopy-power7.c │ │ │ │ │ └── wordcopy-ppc32.c │ │ │ │ └── strncmp.S │ │ │ ├── power5+ │ │ │ │ ├── Implies │ │ │ │ ├── fpu │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ ├── power5 │ │ │ │ ├── Implies │ │ │ │ ├── fpu │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ ├── power6 │ │ │ │ ├── Implies │ │ │ │ ├── fpu │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ ├── power6x │ │ │ │ ├── Implies │ │ │ │ ├── fpu │ │ │ │ │ ├── Implies │ │ │ │ │ ├── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── s_lrint.S │ │ │ │ │ └── s_lround.S │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ ├── power7 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── fpu │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ ├── memchr.S │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── mempcpy.S │ │ │ │ ├── memrchr.S │ │ │ │ ├── memset.S │ │ │ │ ├── multiarch │ │ │ │ │ └── Implies │ │ │ │ ├── rawmemchr.S │ │ │ │ ├── strcasecmp.S │ │ │ │ ├── strcasecmp_l.S │ │ │ │ ├── strchr.S │ │ │ │ ├── strchrnul.S │ │ │ │ ├── strlen.S │ │ │ │ ├── strncmp.S │ │ │ │ └── strnlen.S │ │ │ ├── power8 │ │ │ │ ├── Implies │ │ │ │ ├── fpu │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ ├── power9 │ │ │ │ ├── Implies │ │ │ │ ├── fpu │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ ├── 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 │ │ │ ├── sub_n.S │ │ │ ├── submul_1.S │ │ │ ├── symbol-hacks.h │ │ │ ├── sysdep.h │ │ │ ├── tls-macros.h │ │ │ └── tst-audit.h │ │ ├── powerpc64 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── __longjmp-common.S │ │ │ ├── __longjmp.S │ │ │ ├── a2 │ │ │ │ └── memcpy.S │ │ │ ├── addmul_1.S │ │ │ ├── atomic-machine.h │ │ │ ├── backtrace.c │ │ │ ├── be │ │ │ │ ├── 970 │ │ │ │ │ └── Implies │ │ │ │ ├── Implies │ │ │ │ ├── Implies-after │ │ │ │ ├── a2 │ │ │ │ │ └── Implies │ │ │ │ ├── cell │ │ │ │ │ └── Implies │ │ │ │ ├── fpu │ │ │ │ │ ├── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── s_ceil-power5+.c │ │ │ │ │ │ ├── s_ceil-ppc64.c │ │ │ │ │ │ ├── s_ceil.c │ │ │ │ │ │ ├── s_ceilf-power5+.c │ │ │ │ │ │ ├── s_ceilf-ppc64.c │ │ │ │ │ │ ├── s_ceilf.c │ │ │ │ │ │ ├── s_floor-power5+.c │ │ │ │ │ │ ├── s_floor-ppc64.c │ │ │ │ │ │ ├── s_floor.c │ │ │ │ │ │ ├── s_floorf-power5+.c │ │ │ │ │ │ ├── s_floorf-ppc64.c │ │ │ │ │ │ ├── s_floorf.c │ │ │ │ │ │ ├── s_llrint-power6x.c │ │ │ │ │ │ ├── s_llrint-power8.c │ │ │ │ │ │ ├── s_llrint-ppc64.c │ │ │ │ │ │ ├── s_llrint.c │ │ │ │ │ │ ├── s_llrintf.c │ │ │ │ │ │ ├── s_llround-power5+.c │ │ │ │ │ │ ├── s_llround-power6x.c │ │ │ │ │ │ ├── s_llround-power8.c │ │ │ │ │ │ ├── s_llround-ppc64.c │ │ │ │ │ │ ├── s_llround.c │ │ │ │ │ │ ├── s_llroundf-ppc64.c │ │ │ │ │ │ ├── s_llroundf.c │ │ │ │ │ │ ├── s_logb-power7.c │ │ │ │ │ │ ├── s_logb-ppc64.c │ │ │ │ │ │ ├── s_logb.c │ │ │ │ │ │ ├── s_logbf-power7.c │ │ │ │ │ │ ├── s_logbf-ppc64.c │ │ │ │ │ │ ├── s_logbf.c │ │ │ │ │ │ ├── s_logbl-power7.c │ │ │ │ │ │ ├── s_logbl-ppc64.c │ │ │ │ │ │ ├── s_logbl.c │ │ │ │ │ │ ├── s_lrint.c │ │ │ │ │ │ ├── s_lround.c │ │ │ │ │ │ ├── s_modf-power5+.c │ │ │ │ │ │ ├── s_modf-ppc64.c │ │ │ │ │ │ ├── s_modf.c │ │ │ │ │ │ ├── s_modff-power5+.c │ │ │ │ │ │ ├── s_modff-ppc64.c │ │ │ │ │ │ ├── s_modff.c │ │ │ │ │ │ ├── s_round-power5+.c │ │ │ │ │ │ ├── s_round-ppc64.c │ │ │ │ │ │ ├── s_round.c │ │ │ │ │ │ ├── s_roundf-power5+.c │ │ │ │ │ │ ├── s_roundf-ppc64.c │ │ │ │ │ │ ├── s_roundf.c │ │ │ │ │ │ ├── s_trunc-power5+.c │ │ │ │ │ │ ├── s_trunc-ppc64.c │ │ │ │ │ │ ├── s_trunc.c │ │ │ │ │ │ ├── s_truncf-power5+.c │ │ │ │ │ │ ├── s_truncf-ppc64.c │ │ │ │ │ │ └── s_truncf.c │ │ │ │ ├── multiarch │ │ │ │ │ └── Implies │ │ │ │ ├── power4 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ └── multiarch │ │ │ │ │ │ │ └── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ ├── power5+ │ │ │ │ │ ├── Implies │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ └── multiarch │ │ │ │ │ │ │ └── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ ├── power5 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ └── multiarch │ │ │ │ │ │ │ └── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ ├── power6 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ └── multiarch │ │ │ │ │ │ │ └── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ ├── power6x │ │ │ │ │ ├── Implies │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ └── multiarch │ │ │ │ │ │ │ └── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ ├── power7 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ └── multiarch │ │ │ │ │ │ │ └── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ ├── power8 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ └── multiarch │ │ │ │ │ │ │ └── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ └── power9 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── fpu │ │ │ │ │ ├── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ ├── bits │ │ │ │ └── wordsize.h │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── bzero.S │ │ │ ├── cell │ │ │ │ └── memcpy.S │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── dl-dtprocnum.h │ │ │ ├── dl-irel.h │ │ │ ├── dl-machine.c │ │ │ ├── dl-machine.h │ │ │ ├── dl-trampoline.S │ │ │ ├── entry.h │ │ │ ├── ffsll.c │ │ │ ├── fpu │ │ │ │ ├── Makefile │ │ │ │ ├── s_copysignl.S │ │ │ │ ├── s_fabsl.S │ │ │ │ ├── s_llrint.c │ │ │ │ ├── s_llrintf.c │ │ │ │ ├── s_llround.c │ │ │ │ ├── s_llroundf.c │ │ │ │ ├── s_lrint.c │ │ │ │ ├── s_lround.c │ │ │ │ └── s_lroundf.c │ │ │ ├── hp-timing.h │ │ │ ├── le │ │ │ │ ├── Implies │ │ │ │ ├── Implies-before │ │ │ │ ├── Makefile │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── fpu │ │ │ │ │ ├── Implies │ │ │ │ │ ├── e_sqrtf128.c │ │ │ │ │ ├── multiarch │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── w_sqrtf128-power9.c │ │ │ │ │ │ ├── w_sqrtf128-ppc64le.c │ │ │ │ │ │ └── w_sqrtf128.c │ │ │ │ │ └── sfp-machine.h │ │ │ │ ├── multiarch │ │ │ │ │ └── Implies │ │ │ │ ├── power7 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ └── multiarch │ │ │ │ │ │ │ └── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ ├── power8 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ └── multiarch │ │ │ │ │ │ │ └── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ └── power9 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── fpu │ │ │ │ │ ├── Implies │ │ │ │ │ ├── e_sqrtf128.c │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── multiarch │ │ │ │ │ └── Implies │ │ │ │ │ ├── strcmp.S │ │ │ │ │ └── strncmp.S │ │ │ ├── lshift.S │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── mul_1.S │ │ │ ├── multiarch │ │ │ │ ├── Makefile │ │ │ │ ├── bcopy-ppc64.c │ │ │ │ ├── bcopy.c │ │ │ │ ├── bzero.c │ │ │ │ ├── ifunc-impl-list.c │ │ │ │ ├── init-arch.h │ │ │ │ ├── memchr-power7.S │ │ │ │ ├── memchr-power8.S │ │ │ │ ├── memchr-ppc64.c │ │ │ │ ├── memchr.c │ │ │ │ ├── memcmp-power4.S │ │ │ │ ├── memcmp-power7.S │ │ │ │ ├── memcmp-power8.S │ │ │ │ ├── memcmp-ppc64.c │ │ │ │ ├── memcmp.c │ │ │ │ ├── memcpy-a2.S │ │ │ │ ├── memcpy-cell.S │ │ │ │ ├── memcpy-power4.S │ │ │ │ ├── memcpy-power6.S │ │ │ │ ├── memcpy-power7.S │ │ │ │ ├── memcpy-power8-cached.S │ │ │ │ ├── memcpy-ppc64.S │ │ │ │ ├── memcpy.c │ │ │ │ ├── memmove-power7.S │ │ │ │ ├── memmove-ppc64.c │ │ │ │ ├── memmove.c │ │ │ │ ├── mempcpy-power7.S │ │ │ │ ├── mempcpy-ppc64.c │ │ │ │ ├── mempcpy.c │ │ │ │ ├── memrchr-power7.S │ │ │ │ ├── memrchr-power8.S │ │ │ │ ├── memrchr-ppc64.c │ │ │ │ ├── memrchr.c │ │ │ │ ├── memset-power4.S │ │ │ │ ├── memset-power6.S │ │ │ │ ├── memset-power7.S │ │ │ │ ├── memset-power8.S │ │ │ │ ├── memset-ppc64.S │ │ │ │ ├── memset.c │ │ │ │ ├── rawmemchr-power7.S │ │ │ │ ├── rawmemchr-ppc64.c │ │ │ │ ├── rawmemchr.c │ │ │ │ ├── rtld-memset.c │ │ │ │ ├── rtld-strchr.S │ │ │ │ ├── stpcpy-power7.c │ │ │ │ ├── stpcpy-power8.S │ │ │ │ ├── stpcpy-ppc64.c │ │ │ │ ├── stpcpy.c │ │ │ │ ├── stpncpy-power7.S │ │ │ │ ├── stpncpy-power8.S │ │ │ │ ├── stpncpy-ppc64.c │ │ │ │ ├── stpncpy.c │ │ │ │ ├── strcasecmp-power7.S │ │ │ │ ├── strcasecmp-power8.S │ │ │ │ ├── strcasecmp-ppc64.c │ │ │ │ ├── strcasecmp.c │ │ │ │ ├── strcasecmp_l-power7.S │ │ │ │ ├── strcasecmp_l.c │ │ │ │ ├── strcasestr-power8.S │ │ │ │ ├── strcasestr-ppc64.c │ │ │ │ ├── strcasestr.c │ │ │ │ ├── strcat-power7.c │ │ │ │ ├── strcat-power8.c │ │ │ │ ├── strcat-ppc64.c │ │ │ │ ├── strcat.c │ │ │ │ ├── strchr-power7.S │ │ │ │ ├── strchr-power8.S │ │ │ │ ├── strchr-ppc64.S │ │ │ │ ├── strchr.c │ │ │ │ ├── strchrnul-power7.S │ │ │ │ ├── strchrnul-power8.S │ │ │ │ ├── strchrnul-ppc64.c │ │ │ │ ├── strchrnul.c │ │ │ │ ├── strcmp-power7.S │ │ │ │ ├── strcmp-power8.S │ │ │ │ ├── strcmp-power9.S │ │ │ │ ├── strcmp-ppc64.S │ │ │ │ ├── strcmp.c │ │ │ │ ├── strcpy-power7.c │ │ │ │ ├── strcpy-power8.S │ │ │ │ ├── strcpy-ppc64.c │ │ │ │ ├── strcpy.c │ │ │ │ ├── strcspn-power8.S │ │ │ │ ├── strcspn-ppc64.c │ │ │ │ ├── strcspn.c │ │ │ │ ├── strlen-power7.S │ │ │ │ ├── strlen-power8.S │ │ │ │ ├── strlen-ppc64.S │ │ │ │ ├── strlen.c │ │ │ │ ├── strncase-power7.c │ │ │ │ ├── strncase-power8.S │ │ │ │ ├── strncase-ppc64.c │ │ │ │ ├── strncase.c │ │ │ │ ├── strncase_l-power7.c │ │ │ │ ├── strncase_l.c │ │ │ │ ├── strncat-power7.c │ │ │ │ ├── strncat-power8.c │ │ │ │ ├── strncat-ppc64.c │ │ │ │ ├── strncat.c │ │ │ │ ├── strncmp-power4.S │ │ │ │ ├── strncmp-power7.S │ │ │ │ ├── strncmp-power8.S │ │ │ │ ├── strncmp-power9.S │ │ │ │ ├── strncmp-ppc64.S │ │ │ │ ├── strncmp.c │ │ │ │ ├── strncpy-power7.S │ │ │ │ ├── strncpy-power8.S │ │ │ │ ├── strncpy-ppc64.c │ │ │ │ ├── strncpy.c │ │ │ │ ├── strnlen-power7.S │ │ │ │ ├── strnlen-power8.S │ │ │ │ ├── strnlen-ppc64.c │ │ │ │ ├── strnlen.c │ │ │ │ ├── strrchr-power7.S │ │ │ │ ├── strrchr-power8.S │ │ │ │ ├── strrchr-ppc64.c │ │ │ │ ├── strrchr.c │ │ │ │ ├── strspn-power8.S │ │ │ │ ├── strspn-ppc64.c │ │ │ │ ├── strspn.c │ │ │ │ ├── strstr-power7.S │ │ │ │ ├── strstr-ppc64.c │ │ │ │ ├── strstr.c │ │ │ │ └── wordcopy-ppc64.c │ │ │ ├── power4 │ │ │ │ ├── Makefile │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcopy.h │ │ │ │ ├── memcpy.S │ │ │ │ ├── memset.S │ │ │ │ └── strncmp.S │ │ │ ├── power6 │ │ │ │ ├── memcpy.S │ │ │ │ └── memset.S │ │ │ ├── power7 │ │ │ │ ├── Makefile │ │ │ │ ├── add_n.S │ │ │ │ ├── bcopy.c │ │ │ │ ├── memchr.S │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memmove.S │ │ │ │ ├── mempcpy.S │ │ │ │ ├── memrchr.S │ │ │ │ ├── memset.S │ │ │ │ ├── rawmemchr.S │ │ │ │ ├── stpncpy.S │ │ │ │ ├── strcasecmp.S │ │ │ │ ├── strcasecmp_l.S │ │ │ │ ├── strchr.S │ │ │ │ ├── strchrnul.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strlen.S │ │ │ │ ├── strncmp.S │ │ │ │ ├── strncpy.S │ │ │ │ ├── strnlen.S │ │ │ │ ├── strrchr.S │ │ │ │ ├── strstr-ppc64.c │ │ │ │ ├── strstr.S │ │ │ │ └── sub_n.S │ │ │ ├── power8 │ │ │ │ ├── Makefile │ │ │ │ ├── memchr.S │ │ │ │ ├── memcmp.S │ │ │ │ ├── memrchr.S │ │ │ │ ├── memset.S │ │ │ │ ├── stpcpy.S │ │ │ │ ├── stpncpy.S │ │ │ │ ├── strcasecmp.S │ │ │ │ ├── strcasestr-ppc64.c │ │ │ │ ├── strcasestr.S │ │ │ │ ├── strchr.S │ │ │ │ ├── strchrnul.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.S │ │ │ │ ├── strcspn.S │ │ │ │ ├── strlen.S │ │ │ │ ├── strncase.S │ │ │ │ ├── strncmp.S │ │ │ │ ├── strncpy.S │ │ │ │ ├── strnlen.S │ │ │ │ ├── strrchr.S │ │ │ │ └── strspn.S │ │ │ ├── ppc-mcount.S │ │ │ ├── register-dump.h │ │ │ ├── rtld-memset.c │ │ │ ├── setjmp-bug21895.c │ │ │ ├── setjmp-common.S │ │ │ ├── setjmp.S │ │ │ ├── stackguard-macros.h │ │ │ ├── start.S │ │ │ ├── strchr.S │ │ │ ├── strcmp.S │ │ │ ├── strlen.S │ │ │ ├── strncmp.S │ │ │ ├── submul_1.S │ │ │ ├── sysdep.h │ │ │ ├── tls-macros.h │ │ │ ├── tst-audit.h │ │ │ ├── tst-setjmp-bug21895-static.c │ │ │ └── tst-ucontext-ppc64-vscr.c │ │ ├── preconfigure │ │ ├── rtld-global-offsets.sym │ │ ├── sched_cpucount.c │ │ ├── sigjmp.c │ │ ├── sotruss-lib.c │ │ ├── stackinfo.h │ │ ├── sys │ │ │ └── platform │ │ │ │ └── ppc.h │ │ ├── sysdep.h │ │ ├── test-arith.c │ │ ├── test-arithf.c │ │ ├── test-get_hwcap-static.c │ │ ├── test-get_hwcap.c │ │ ├── test-gettimebase.c │ │ ├── tls-macros.h │ │ ├── tst-set_ppr.c │ │ ├── tst-stack-align.h │ │ ├── tst-tlsifunc-static.c │ │ ├── tst-tlsifunc.c │ │ └── tst-tlsopt-powerpc.c │ ├── pthread │ │ ├── Makeconfig │ │ ├── Makefile │ │ ├── Versions │ │ ├── aio_cancel.c │ │ ├── aio_error.c │ │ ├── aio_fsync.c │ │ ├── aio_misc.c │ │ ├── aio_misc.h │ │ ├── aio_notify.c │ │ ├── aio_read.c │ │ ├── aio_read64.c │ │ ├── aio_suspend.c │ │ ├── aio_write.c │ │ ├── aio_write64.c │ │ ├── allocalim.h │ │ ├── bits │ │ │ ├── sigthread.h │ │ │ └── types │ │ │ │ └── sigevent_t.h │ │ ├── flockfile.c │ │ ├── ftrylockfile.c │ │ ├── funlockfile.c │ │ ├── lio_listio.c │ │ ├── lio_listio64.c │ │ ├── posix-timer.h │ │ ├── semaphore.h │ │ ├── timer_create.c │ │ ├── timer_delete.c │ │ ├── timer_getoverr.c │ │ ├── timer_gettime.c │ │ ├── timer_routines.c │ │ ├── timer_settime.c │ │ └── tst-timer.c │ ├── riscv │ │ ├── Implies │ │ ├── Makefile │ │ ├── __longjmp.S │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fenv.h │ │ │ ├── link.h │ │ │ ├── setjmp.h │ │ │ └── wordsize.h │ │ ├── bsd-_setjmp.c │ │ ├── bsd-setjmp.c │ │ ├── configure │ │ ├── configure.ac │ │ ├── dl-machine.h │ │ ├── dl-tls.h │ │ ├── dl-trampoline.S │ │ ├── e_sqrtl.c │ │ ├── fpu_control.h │ │ ├── gccframe.h │ │ ├── jmpbuf-offsets.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldsodefs.h │ │ ├── libc-tls.c │ │ ├── linkmap.h │ │ ├── machine-gmon.h │ │ ├── math-tests-snan-payload.h │ │ ├── math-tests-trap.h │ │ ├── memusage.h │ │ ├── nofpu │ │ │ ├── Implies │ │ │ ├── libm-test-ulps │ │ │ ├── libm-test-ulps-name │ │ │ ├── math-tests-exceptions.h │ │ │ └── math-tests-rounding.h │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── pthreadtypes-arch.h │ │ │ │ └── semaphore.h │ │ │ ├── libc-lowlevellock.c │ │ │ ├── nptl-sysdep.S │ │ │ ├── pthread-offsets.h │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── preconfigure │ │ ├── rv64 │ │ │ ├── Implies-after │ │ │ ├── rvd │ │ │ │ ├── Implies │ │ │ │ ├── libm-test-ulps │ │ │ │ ├── libm-test-ulps-name │ │ │ │ ├── s_ceil.c │ │ │ │ ├── s_floor.c │ │ │ │ ├── s_llrint.c │ │ │ │ ├── s_llround.c │ │ │ │ ├── s_lrint.c │ │ │ │ ├── s_lround.c │ │ │ │ ├── s_nearbyint.c │ │ │ │ ├── s_rint.c │ │ │ │ ├── s_round.c │ │ │ │ ├── s_roundeven.c │ │ │ │ └── s_trunc.c │ │ │ └── rvf │ │ │ │ ├── Implies │ │ │ │ ├── s_llrintf.c │ │ │ │ ├── s_llroundf.c │ │ │ │ ├── s_lrintf.c │ │ │ │ └── s_lroundf.c │ │ ├── rvd │ │ │ ├── e_sqrt.c │ │ │ ├── s_copysign.c │ │ │ ├── s_finite.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmax.c │ │ │ ├── s_fmin.c │ │ │ ├── s_fpclassify.c │ │ │ ├── s_isinf.c │ │ │ ├── s_isnan.c │ │ │ └── s_issignaling.c │ │ ├── rvf │ │ │ ├── e_sqrtf.c │ │ │ ├── fclrexcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetmode.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fenv_private.h │ │ │ ├── fesetenv.c │ │ │ ├── fesetexcept.c │ │ │ ├── fesetmode.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ ├── ftestexcept.c │ │ │ ├── get-rounding-mode.h │ │ │ ├── s_ceilf.c │ │ │ ├── s_copysignf.c │ │ │ ├── s_finitef.c │ │ │ ├── s_floorf.c │ │ │ ├── s_fmaf.c │ │ │ ├── s_fmaxf.c │ │ │ ├── s_fminf.c │ │ │ ├── s_fpclassifyf.c │ │ │ ├── s_isinff.c │ │ │ ├── s_isnanf.c │ │ │ ├── s_issignalingf.c │ │ │ ├── s_nearbyintf.c │ │ │ ├── s_rintf.c │ │ │ ├── s_roundevenf.c │ │ │ ├── s_roundf.c │ │ │ └── s_truncf.c │ │ ├── setjmp.S │ │ ├── sfp-machine.h │ │ ├── sotruss-lib.c │ │ ├── stackinfo.h │ │ ├── start.S │ │ ├── sys │ │ │ └── asm.h │ │ ├── tininess.h │ │ ├── tls-macros.h │ │ └── tst-audit.h │ ├── s390 │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── abort-instr.h │ │ ├── asm-syntax.h │ │ ├── atomic-machine.h │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── flt-eval-method.h │ │ │ ├── link.h │ │ │ └── setjmp.h │ │ ├── bzero.c │ │ ├── configure │ │ ├── configure.ac │ │ ├── dl-irel.h │ │ ├── dl-procinfo.c │ │ ├── dl-procinfo.h │ │ ├── dl-tls.h │ │ ├── ffs.c │ │ ├── fix-fp-int-convert-overflow.h │ │ ├── fpu │ │ │ ├── bits │ │ │ │ └── fenv.h │ │ │ ├── e_sqrt.c │ │ │ ├── e_sqrtf.c │ │ │ ├── e_sqrtl.c │ │ │ ├── fclrexcpt.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetmode.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fenv_libc.h │ │ │ ├── fesetenv.c │ │ │ ├── fesetexcept.c │ │ │ ├── fesetmode.c │ │ │ ├── fesetround.c │ │ │ ├── fetestexceptflag.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fix-fp-int-compare-invalid.h │ │ │ ├── fpu_control.h │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ ├── ftestexcept.c │ │ │ ├── get-rounding-mode.h │ │ │ ├── libm-test-ulps │ │ │ ├── libm-test-ulps-name │ │ │ ├── s_fma.c │ │ │ └── s_fmaf.c │ │ ├── gccframe.h │ │ ├── gconv-modules │ │ ├── gmp-mparam.h │ │ ├── ifunc-memccpy.h │ │ ├── ifunc-memchr.h │ │ ├── ifunc-memcmp.h │ │ ├── ifunc-memcpy.h │ │ ├── ifunc-memmem.h │ │ ├── ifunc-memrchr.h │ │ ├── ifunc-memset.h │ │ ├── ifunc-rawmemchr.h │ │ ├── ifunc-stpcpy.h │ │ ├── ifunc-stpncpy.h │ │ ├── ifunc-strcat.h │ │ ├── ifunc-strchr.h │ │ ├── ifunc-strchrnul.h │ │ ├── ifunc-strcmp.h │ │ ├── ifunc-strcpy.h │ │ ├── ifunc-strcspn.h │ │ ├── ifunc-strlen.h │ │ ├── ifunc-strncat.h │ │ ├── ifunc-strncmp.h │ │ ├── ifunc-strncpy.h │ │ ├── ifunc-strnlen.h │ │ ├── ifunc-strpbrk.h │ │ ├── ifunc-strrchr.h │ │ ├── ifunc-strspn.h │ │ ├── ifunc-strstr.h │ │ ├── ifunc-wcpcpy.h │ │ ├── ifunc-wcpncpy.h │ │ ├── ifunc-wcscat.h │ │ ├── ifunc-wcschr.h │ │ ├── ifunc-wcschrnul.h │ │ ├── ifunc-wcscmp.h │ │ ├── ifunc-wcscpy.h │ │ ├── ifunc-wcscspn.h │ │ ├── ifunc-wcslen.h │ │ ├── ifunc-wcsncat.h │ │ ├── ifunc-wcsncmp.h │ │ ├── ifunc-wcsncpy.h │ │ ├── ifunc-wcsnlen.h │ │ ├── ifunc-wcspbrk.h │ │ ├── ifunc-wcsrchr.h │ │ ├── ifunc-wcsspn.h │ │ ├── ifunc-wmemchr.h │ │ ├── ifunc-wmemcmp.h │ │ ├── ifunc-wmemset.h │ │ ├── iso-8859-1_cp037_z900.c │ │ ├── jmpbuf-offsets.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldsodefs.h │ │ ├── libc-tls.c │ │ ├── linkmap.h │ │ ├── longjmp.c │ │ ├── machine-gmon.h │ │ ├── memccpy-c.c │ │ ├── memccpy-vx.S │ │ ├── memccpy.c │ │ ├── memchr-vx.S │ │ ├── memchr-z900.S │ │ ├── memchr.c │ │ ├── memcmp-z900.S │ │ ├── memcmp.c │ │ ├── memcopy.h │ │ ├── memcpy-z900.S │ │ ├── memcpy.c │ │ ├── memmem-arch13.S │ │ ├── memmem-c.c │ │ ├── memmem-vx.c │ │ ├── memmem.c │ │ ├── memmove-c.c │ │ ├── memmove.c │ │ ├── mempcpy.c │ │ ├── memrchr-c.c │ │ ├── memrchr-vx.S │ │ ├── memrchr.c │ │ ├── memset-z900.S │ │ ├── memset.c │ │ ├── memusage.h │ │ ├── multiarch │ │ │ ├── 8bit-generic.c │ │ │ ├── Makefile │ │ │ ├── gconv_simple.c │ │ │ ├── gen-8bit.sh │ │ │ ├── iconv │ │ │ │ └── skeleton.c │ │ │ ├── ifunc-impl-list.c │ │ │ ├── ifunc-resolve.h │ │ │ ├── utf16-utf32-z9.c │ │ │ ├── utf8-utf16-z9.c │ │ │ └── utf8-utf32-z9.c │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── pthreadtypes-arch.h │ │ │ │ └── semaphore.h │ │ │ ├── pthread-offsets.h │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── preconfigure │ │ ├── rawmemchr-c.c │ │ ├── rawmemchr-vx.S │ │ ├── rawmemchr.c │ │ ├── s390-32 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── __longjmp.c │ │ │ ├── add_n.S │ │ │ ├── addmul_1.S │ │ │ ├── backtrace.c │ │ │ ├── bits │ │ │ │ └── wordsize.h │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── dl-machine.h │ │ │ ├── dl-sysdep.h │ │ │ ├── dl-trampoline.S │ │ │ ├── dl-trampoline.h │ │ │ ├── mul_1.S │ │ │ ├── s390-mcount.S │ │ │ ├── setjmp.S │ │ │ ├── stackguard-macros.h │ │ │ ├── start.S │ │ │ ├── strncpy-z900.S │ │ │ ├── sub_n.S │ │ │ ├── symbol-hacks.h │ │ │ ├── sysdep.h │ │ │ ├── tls-macros.h │ │ │ └── tst-audit.h │ │ ├── s390-64 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── __longjmp.c │ │ │ ├── add_n.S │ │ │ ├── backtrace.c │ │ │ ├── bits │ │ │ │ └── wordsize.h │ │ │ ├── bsd-_setjmp.S │ │ │ ├── bsd-setjmp.S │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ ├── dl-machine.h │ │ │ ├── dl-trampoline.S │ │ │ ├── dl-trampoline.h │ │ │ ├── s390x-mcount.S │ │ │ ├── s390x-mcount.h │ │ │ ├── setjmp.S │ │ │ ├── stackguard-macros.h │ │ │ ├── start.S │ │ │ ├── strncpy-z900.S │ │ │ ├── sub_n.S │ │ │ ├── sysdep.h │ │ │ ├── tls-macros.h │ │ │ └── tst-audit.h │ │ ├── sotruss-lib.c │ │ ├── stackinfo.h │ │ ├── stpcpy-c.c │ │ ├── stpcpy-vx.S │ │ ├── stpcpy.c │ │ ├── stpncpy-c.c │ │ ├── stpncpy-vx.S │ │ ├── stpncpy.c │ │ ├── strcat-c.c │ │ ├── strcat-vx.S │ │ ├── strcat.c │ │ ├── strchr-c.c │ │ ├── strchr-vx.S │ │ ├── strchr.c │ │ ├── strchrnul-c.c │ │ ├── strchrnul-vx.S │ │ ├── strchrnul.c │ │ ├── strcmp-vx.S │ │ ├── strcmp-z900.S │ │ ├── strcmp.c │ │ ├── strcpy-vx.S │ │ ├── strcpy-z900.S │ │ ├── strcpy.c │ │ ├── strcspn-c.c │ │ ├── strcspn-vx.S │ │ ├── strcspn.c │ │ ├── string_private.h │ │ ├── strlen-c.c │ │ ├── strlen-vx.S │ │ ├── strlen.c │ │ ├── strncat-c.c │ │ ├── strncat-vx.S │ │ ├── strncat.c │ │ ├── strncmp-c.c │ │ ├── strncmp-vx.S │ │ ├── strncmp.c │ │ ├── strncpy-vx.S │ │ ├── strncpy.c │ │ ├── strnlen-c.c │ │ ├── strnlen-vx.S │ │ ├── strnlen.c │ │ ├── strpbrk-c.c │ │ ├── strpbrk-vx.S │ │ ├── strpbrk.c │ │ ├── strrchr-c.c │ │ ├── strrchr-vx.S │ │ ├── strrchr.c │ │ ├── strspn-c.c │ │ ├── strspn-vx.S │ │ ├── strspn.c │ │ ├── strstr-arch13.S │ │ ├── strstr-c.c │ │ ├── strstr-vx.c │ │ ├── strstr.c │ │ ├── tst-dl-runtime-mod.S │ │ ├── tst-dl-runtime-profile-audit.c │ │ ├── tst-dl-runtime-profile-noaudit.c │ │ ├── tst-dl-runtime-resolve-audit.c │ │ ├── tst-dl-runtime-resolve-noaudit.c │ │ ├── tst-dl-runtime.c │ │ ├── utf16-utf32-z9.c │ │ ├── utf8-utf16-z9.c │ │ ├── utf8-utf32-z9.c │ │ ├── wcpcpy-c.c │ │ ├── wcpcpy-vx.S │ │ ├── wcpcpy.c │ │ ├── wcpncpy-c.c │ │ ├── wcpncpy-vx.S │ │ ├── wcpncpy.c │ │ ├── wcscat-c.c │ │ ├── wcscat-vx.S │ │ ├── wcscat.c │ │ ├── wcschr-c.c │ │ ├── wcschr-vx.S │ │ ├── wcschr.c │ │ ├── wcschrnul-c.c │ │ ├── wcschrnul-vx.S │ │ ├── wcschrnul.c │ │ ├── wcscmp-c.c │ │ ├── wcscmp-vx.S │ │ ├── wcscmp.c │ │ ├── wcscpy-c.c │ │ ├── wcscpy-vx.S │ │ ├── wcscpy.c │ │ ├── wcscspn-c.c │ │ ├── wcscspn-vx.S │ │ ├── wcscspn.c │ │ ├── wcslen-c.c │ │ ├── wcslen-vx.S │ │ ├── wcslen.c │ │ ├── wcsncat-c.c │ │ ├── wcsncat-vx.S │ │ ├── wcsncat.c │ │ ├── wcsncmp-c.c │ │ ├── wcsncmp-vx.S │ │ ├── wcsncmp.c │ │ ├── wcsncpy-c.c │ │ ├── wcsncpy-vx.S │ │ ├── wcsncpy.c │ │ ├── wcsnlen-c.c │ │ ├── wcsnlen-vx.S │ │ ├── wcsnlen.c │ │ ├── wcspbrk-c.c │ │ ├── wcspbrk-vx.S │ │ ├── wcspbrk.c │ │ ├── wcsrchr-c.c │ │ ├── wcsrchr-vx.S │ │ ├── wcsrchr.c │ │ ├── wcsspn-c.c │ │ ├── wcsspn-vx.S │ │ ├── wcsspn.c │ │ ├── wmemchr-c.c │ │ ├── wmemchr-vx.S │ │ ├── wmemchr.c │ │ ├── wmemcmp-c.c │ │ ├── wmemcmp-vx.S │ │ ├── wmemcmp.c │ │ ├── wmemset-c.c │ │ ├── wmemset-vx.S │ │ └── wmemset.c │ ├── sh │ │ ├── Implies │ │ ├── Makefile │ │ ├── ____longjmp_chk.S │ │ ├── _mcount.S │ │ ├── abort-instr.h │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── fenv.h │ │ │ ├── link.h │ │ │ └── setjmp.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── configure │ │ ├── configure.ac │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-machine.h │ │ ├── dl-tls.h │ │ ├── dl-trampoline.S │ │ ├── fpu_control.h │ │ ├── gccframe.h │ │ ├── gmp-mparam.h │ │ ├── jmpbuf-offsets.h │ │ ├── jmpbuf-unwind.h │ │ ├── ldbl-classify-compat.h │ │ ├── ldsodefs.h │ │ ├── libc-tls.c │ │ ├── libm-test-ulps │ │ ├── libm-test-ulps-name │ │ ├── linkmap.h │ │ ├── machine-gmon.h │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── memusage.h │ │ ├── nofpu │ │ │ └── Implies │ │ ├── nptl │ │ │ ├── bits │ │ │ │ ├── pthreadtypes-arch.h │ │ │ │ └── semaphore.h │ │ │ ├── pthread-offsets.h │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_lock.c │ │ │ ├── pthread_spin_trylock.S │ │ │ ├── pthread_spin_unlock.S │ │ │ ├── pthreaddef.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── preconfigure │ │ ├── sfp-machine.h │ │ ├── sh3 │ │ │ ├── __longjmp.S │ │ │ └── setjmp.S │ │ ├── sh4 │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── __longjmp.S │ │ │ ├── dl-trampoline.S │ │ │ ├── fpu │ │ │ │ ├── fclrexcpt.c │ │ │ │ ├── fedisblxcpt.c │ │ │ │ ├── feenablxcpt.c │ │ │ │ ├── fegetenv.c │ │ │ │ ├── fegetexcept.c │ │ │ │ ├── fegetmode.c │ │ │ │ ├── fegetround.c │ │ │ │ ├── feholdexcpt.c │ │ │ │ ├── fesetenv.c │ │ │ │ ├── fesetexcept.c │ │ │ │ ├── fesetmode.c │ │ │ │ ├── fesetround.c │ │ │ │ ├── feupdateenv.c │ │ │ │ ├── fgetexcptflg.c │ │ │ │ ├── fraiseexcpt.c │ │ │ │ ├── fsetexcptflg.c │ │ │ │ └── ftestexcept.c │ │ │ └── setjmp.S │ │ ├── sotruss-lib.c │ │ ├── stackguard-macros.h │ │ ├── stackinfo.h │ │ ├── start.S │ │ ├── strlen.S │ │ ├── sysdep.h │ │ ├── tininess.h │ │ ├── tls-macros.h │ │ └── tst-audit.h │ ├── sparc │ │ ├── Makefile │ │ ├── Subdirs │ │ ├── abort-instr.h │ │ ├── backtrace.c │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── hwcap.h │ │ │ └── link.h │ │ ├── configure │ │ ├── configure.ac │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-dtprocnum.h │ │ ├── dl-procinfo.c │ │ ├── dl-procinfo.h │ │ ├── dl-sysdep.h │ │ ├── dl-tls.h │ │ ├── fpu │ │ │ ├── bits │ │ │ │ └── fenv.h │ │ │ ├── fclrexcpt.c │ │ │ ├── fedisblxcpt.c │ │ │ ├── feenablxcpt.c │ │ │ ├── fegetenv.c │ │ │ ├── fegetexcept.c │ │ │ ├── fegetmode.c │ │ │ ├── fegetround.c │ │ │ ├── feholdexcpt.c │ │ │ ├── fenv_private.h │ │ │ ├── fesetenv.c │ │ │ ├── fesetexcept.c │ │ │ ├── fesetmode.c │ │ │ ├── fesetround.c │ │ │ ├── feupdateenv.c │ │ │ ├── fgetexcptflg.c │ │ │ ├── fpu_control.h │ │ │ ├── fraiseexcpt.c │ │ │ ├── fsetexcptflg.c │ │ │ ├── ftestexcept.c │ │ │ ├── libm-test-ulps │ │ │ └── libm-test-ulps-name │ │ ├── gccframe.h │ │ ├── ldsodefs.h │ │ ├── machine-gmon.h │ │ ├── mempcpy.S │ │ ├── memusage.h │ │ ├── nptl │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── pthreadtypes-arch.h │ │ │ │ └── semaphore.h │ │ │ ├── pthread-offsets.h │ │ │ ├── sparc-nptl.h │ │ │ ├── tcb-offsets.sym │ │ │ └── tls.h │ │ ├── preconfigure │ │ ├── sparc-ifunc.h │ │ ├── sparc-mcount.S │ │ ├── sparc32 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── __longjmp.S │ │ │ ├── add_n.S │ │ │ ├── addmul_1.S │ │ │ ├── alloca.S │ │ │ ├── atomic-machine.h │ │ │ ├── backtrace.h │ │ │ ├── bits │ │ │ │ ├── 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_copysign.S │ │ │ │ ├── s_copysignf.S │ │ │ │ ├── s_fabs.S │ │ │ │ ├── s_fabsf.S │ │ │ │ ├── s_fabsl.c │ │ │ │ ├── s_fma.c │ │ │ │ ├── s_signbit.S │ │ │ │ ├── s_signbitf.S │ │ │ │ └── s_signbitl.S │ │ │ ├── ieee754.h │ │ │ ├── jmpbuf-offsets.h │ │ │ ├── jmpbuf-unwind.h │ │ │ ├── lll_timedlock_wait.c │ │ │ ├── lowlevellock.c │ │ │ ├── lshift.S │ │ │ ├── memchr.S │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ ├── mul_1.S │ │ │ ├── pthread_barrier_wait.c │ │ │ ├── pthread_spin_lock.S │ │ │ ├── pthread_spin_trylock.S │ │ │ ├── pthreaddef.h │ │ │ ├── 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 │ │ │ ├── rem.S │ │ │ ├── rshift.S │ │ │ ├── sdiv.S │ │ │ ├── sem_post.c │ │ │ ├── sem_waitcommon.c │ │ │ ├── setjmp.S │ │ │ ├── sfp-machine.h │ │ │ ├── sparcv8 │ │ │ │ ├── Makefile │ │ │ │ ├── addmul_1.S │ │ │ │ ├── dotmul.S │ │ │ │ ├── mul_1.S │ │ │ │ ├── rem.S │ │ │ │ ├── sdiv.S │ │ │ │ ├── submul_1.S │ │ │ │ ├── udiv.S │ │ │ │ ├── umul.S │ │ │ │ └── urem.S │ │ │ ├── sparcv9 │ │ │ │ ├── Makefile │ │ │ │ ├── addmul_1.S │ │ │ │ ├── atomic-machine.h │ │ │ │ ├── backtrace.h │ │ │ │ ├── bzero.c │ │ │ │ ├── cpu_relax.c │ │ │ │ ├── dotmul.S │ │ │ │ ├── fpu │ │ │ │ │ ├── multiarch │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── s_copysign-generic.S │ │ │ │ │ │ ├── s_copysign-vis3.S │ │ │ │ │ │ ├── s_copysign.c │ │ │ │ │ │ ├── s_copysignf-generic.S │ │ │ │ │ │ ├── s_copysignf-vis3.S │ │ │ │ │ │ ├── s_copysignf.c │ │ │ │ │ │ ├── s_fabs-generic.S │ │ │ │ │ │ ├── s_fabs-vis3.S │ │ │ │ │ │ ├── s_fabs.c │ │ │ │ │ │ ├── s_fabsf-generic.S │ │ │ │ │ │ ├── s_fabsf-vis3.S │ │ │ │ │ │ ├── s_fabsf.c │ │ │ │ │ │ ├── s_fdim-generic.c │ │ │ │ │ │ ├── s_fdim-vis3.c │ │ │ │ │ │ ├── s_fdim.c │ │ │ │ │ │ ├── s_fdimf-generic.c │ │ │ │ │ │ ├── s_fdimf-vis3.c │ │ │ │ │ │ ├── s_fdimf.c │ │ │ │ │ │ ├── s_fma-generic.c │ │ │ │ │ │ ├── s_fma-vis3.S │ │ │ │ │ │ ├── s_fma.c │ │ │ │ │ │ ├── s_fmaf-generic.c │ │ │ │ │ │ ├── s_fmaf-vis3.S │ │ │ │ │ │ ├── s_fmaf.c │ │ │ │ │ │ ├── s_llrint-generic.S │ │ │ │ │ │ ├── s_llrint-vis3.S │ │ │ │ │ │ ├── s_llrint.c │ │ │ │ │ │ ├── s_llrintf-generic.S │ │ │ │ │ │ ├── s_llrintf-vis3.S │ │ │ │ │ │ ├── s_llrintf.c │ │ │ │ │ │ ├── s_nearbyint-generic.S │ │ │ │ │ │ ├── s_nearbyint-vis3.S │ │ │ │ │ │ ├── s_nearbyint.c │ │ │ │ │ │ ├── s_nearbyintf-generic.S │ │ │ │ │ │ ├── s_nearbyintf-vis3.S │ │ │ │ │ │ ├── s_nearbyintf.c │ │ │ │ │ │ ├── s_rint-generic.S │ │ │ │ │ │ ├── s_rint-vis3.S │ │ │ │ │ │ ├── s_rint.c │ │ │ │ │ │ ├── s_rintf-generic.S │ │ │ │ │ │ ├── s_rintf-vis3.S │ │ │ │ │ │ └── s_rintf.c │ │ │ │ │ ├── s_fabs.S │ │ │ │ │ ├── s_isnan.S │ │ │ │ │ ├── s_llrint.S │ │ │ │ │ ├── s_llrintf.S │ │ │ │ │ ├── s_lrintf.S │ │ │ │ │ ├── s_nearbyint.S │ │ │ │ │ ├── s_nearbyintf.S │ │ │ │ │ ├── s_rint.S │ │ │ │ │ └── s_rintf.S │ │ │ │ ├── hp-timing.h │ │ │ │ ├── memchr.S │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memmove.S │ │ │ │ ├── memset.S │ │ │ │ ├── mul_1.S │ │ │ │ ├── multiarch │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bzero.c │ │ │ │ │ ├── ifunc-impl-list.c │ │ │ │ │ ├── md5-block.c │ │ │ │ │ ├── md5-crop.S │ │ │ │ │ ├── memcpy-memmove-niagara7.S │ │ │ │ │ ├── memcpy-niagara1.S │ │ │ │ │ ├── memcpy-niagara2.S │ │ │ │ │ ├── memcpy-niagara4.S │ │ │ │ │ ├── memcpy-ultra1.S │ │ │ │ │ ├── memcpy-ultra3.S │ │ │ │ │ ├── memcpy.c │ │ │ │ │ ├── memmove-ultra1.S │ │ │ │ │ ├── mempcpy.c │ │ │ │ │ ├── memset-niagara1.S │ │ │ │ │ ├── memset-niagara4.S │ │ │ │ │ ├── memset-niagara7.S │ │ │ │ │ ├── memset-ultra1.S │ │ │ │ │ ├── memset.c │ │ │ │ │ ├── rtld-memcpy.c │ │ │ │ │ ├── rtld-memmove.c │ │ │ │ │ ├── rtld-memset.c │ │ │ │ │ ├── sha256-block.c │ │ │ │ │ ├── sha256-crop.S │ │ │ │ │ ├── sha512-block.c │ │ │ │ │ └── sha512-crop.S │ │ │ │ ├── pthread_barrier_wait.c │ │ │ │ ├── pthread_spin_init.c │ │ │ │ ├── pthread_spin_lock.S │ │ │ │ ├── pthread_spin_trylock.S │ │ │ │ ├── pthread_spin_unlock.S │ │ │ │ ├── rawmemchr.S │ │ │ │ ├── rem.S │ │ │ │ ├── rtld-memcpy.c │ │ │ │ ├── rtld-memmove.c │ │ │ │ ├── rtld-memset.c │ │ │ │ ├── sdiv.S │ │ │ │ ├── sem_post.c │ │ │ │ ├── sem_waitcommon.c │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── sub_n.S │ │ │ ├── submul_1.S │ │ │ ├── tls-macros.h │ │ │ ├── tst-audit.h │ │ │ ├── udiv.S │ │ │ ├── umul.S │ │ │ └── urem.S │ │ ├── sparc64 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── add_n.S │ │ │ ├── addmul_1.S │ │ │ ├── align-cpy.S │ │ │ ├── atomic-machine.h │ │ │ ├── backtrace.h │ │ │ ├── bits │ │ │ │ └── wordsize.h │ │ │ ├── bzero.c │ │ │ ├── cpu_relax.c │ │ │ ├── dl-irel.h │ │ │ ├── dl-machine.h │ │ │ ├── dl-plt.h │ │ │ ├── dl-trampoline.S │ │ │ ├── fpu │ │ │ │ ├── e_sqrtl.c │ │ │ │ ├── multiarch │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── s_ceil-generic.c │ │ │ │ │ ├── s_ceil-vis3.c │ │ │ │ │ ├── s_ceil.c │ │ │ │ │ ├── s_ceilf-generic.c │ │ │ │ │ ├── s_ceilf-vis3.c │ │ │ │ │ ├── s_ceilf.c │ │ │ │ │ ├── s_finite-generic.S │ │ │ │ │ ├── s_finite-vis3.S │ │ │ │ │ ├── s_finite.c │ │ │ │ │ ├── s_finitef-generic.S │ │ │ │ │ ├── s_finitef-vis3.S │ │ │ │ │ ├── s_finitef.c │ │ │ │ │ ├── s_floor-generic.c │ │ │ │ │ ├── s_floor-vis3.c │ │ │ │ │ ├── s_floor.c │ │ │ │ │ ├── s_floorf-generic.c │ │ │ │ │ ├── s_floorf-vis3.c │ │ │ │ │ ├── s_floorf.c │ │ │ │ │ ├── s_fma-generic.c │ │ │ │ │ ├── s_fma-vis3.S │ │ │ │ │ ├── s_fma.c │ │ │ │ │ ├── s_fmaf-generic.c │ │ │ │ │ ├── s_fmaf-vis3.S │ │ │ │ │ ├── s_fmaf.c │ │ │ │ │ ├── s_isinf-generic.S │ │ │ │ │ ├── s_isinf-vis3.S │ │ │ │ │ ├── s_isinf.c │ │ │ │ │ ├── s_isinff-generic.S │ │ │ │ │ ├── s_isinff-vis3.S │ │ │ │ │ ├── s_isinff.c │ │ │ │ │ ├── s_isnan-generic.S │ │ │ │ │ ├── s_isnan-vis3.S │ │ │ │ │ ├── s_isnan.c │ │ │ │ │ ├── s_isnanf-generic.S │ │ │ │ │ ├── s_isnanf-vis3.S │ │ │ │ │ ├── s_isnanf.c │ │ │ │ │ ├── s_lrint-generic.S │ │ │ │ │ ├── s_lrint-vis3.S │ │ │ │ │ ├── s_lrint.c │ │ │ │ │ ├── s_lrintf-generic.S │ │ │ │ │ ├── s_lrintf-vis3.S │ │ │ │ │ ├── s_lrintf.c │ │ │ │ │ ├── s_nearbyint-generic.S │ │ │ │ │ ├── s_nearbyint-vis3.S │ │ │ │ │ ├── s_nearbyint.c │ │ │ │ │ ├── s_nearbyintf-generic.S │ │ │ │ │ ├── s_nearbyintf-vis3.S │ │ │ │ │ ├── s_nearbyintf.c │ │ │ │ │ ├── s_rint-generic.S │ │ │ │ │ ├── s_rint-vis3.S │ │ │ │ │ ├── s_rint.c │ │ │ │ │ ├── s_rintf-generic.S │ │ │ │ │ ├── s_rintf-vis3.S │ │ │ │ │ ├── s_rintf.c │ │ │ │ │ ├── s_signbit-generic.S │ │ │ │ │ ├── s_signbit-vis3.S │ │ │ │ │ ├── s_signbit.c │ │ │ │ │ ├── s_signbitf-generic.S │ │ │ │ │ ├── s_signbitf-vis3.S │ │ │ │ │ ├── s_signbitf.c │ │ │ │ │ ├── s_trunc-generic.c │ │ │ │ │ ├── s_trunc-vis3.c │ │ │ │ │ ├── s_trunc.c │ │ │ │ │ ├── s_truncf-generic.c │ │ │ │ │ ├── s_truncf-vis3.c │ │ │ │ │ └── s_truncf.c │ │ │ │ ├── s_copysign.S │ │ │ │ ├── s_copysignf.S │ │ │ │ ├── s_fabs.c │ │ │ │ ├── s_fabsf.c │ │ │ │ ├── s_fabsl.c │ │ │ │ ├── s_finite.S │ │ │ │ ├── s_finitef.S │ │ │ │ ├── s_fma.c │ │ │ │ ├── s_isinf.S │ │ │ │ ├── s_isinff.S │ │ │ │ ├── s_isnan.S │ │ │ │ ├── s_isnanf.S │ │ │ │ ├── s_llrint.S │ │ │ │ ├── s_llrintf.S │ │ │ │ ├── s_lrint.S │ │ │ │ ├── s_lrintf.S │ │ │ │ ├── s_nearbyint.S │ │ │ │ ├── s_nearbyintf.S │ │ │ │ ├── s_rint.S │ │ │ │ ├── s_rintf.S │ │ │ │ ├── s_signbit.S │ │ │ │ ├── s_signbitf.S │ │ │ │ └── s_signbitl.S │ │ │ ├── hp-timing.h │ │ │ ├── jmpbuf-unwind.h │ │ │ ├── lshift.S │ │ │ ├── memchr.S │ │ │ ├── memcmp.S │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ ├── mul_1.S │ │ │ ├── multiarch │ │ │ │ ├── Makefile │ │ │ │ ├── add_n-generic.S │ │ │ │ ├── add_n-vis3.S │ │ │ │ ├── add_n.c │ │ │ │ ├── addmul_1-generic.S │ │ │ │ ├── addmul_1-vis3.S │ │ │ │ ├── addmul_1.c │ │ │ │ ├── bzero.c │ │ │ │ ├── ifunc-impl-list.c │ │ │ │ ├── ifunc-memcpy.h │ │ │ │ ├── ifunc-memmove.h │ │ │ │ ├── ifunc-memset.h │ │ │ │ ├── md5-block.c │ │ │ │ ├── md5-crop.S │ │ │ │ ├── memcpy-memmove-niagara7.S │ │ │ │ ├── memcpy-niagara1.S │ │ │ │ ├── memcpy-niagara2.S │ │ │ │ ├── memcpy-niagara4.S │ │ │ │ ├── memcpy-ultra1.S │ │ │ │ ├── memcpy-ultra3.S │ │ │ │ ├── memcpy.c │ │ │ │ ├── memmove-ultra1.S │ │ │ │ ├── memmove.c │ │ │ │ ├── mempcpy.c │ │ │ │ ├── memset-niagara1.S │ │ │ │ ├── memset-niagara4.S │ │ │ │ ├── memset-niagara7.S │ │ │ │ ├── memset-ultra1.S │ │ │ │ ├── memset.c │ │ │ │ ├── mul_1-generic.S │ │ │ │ ├── mul_1-vis3.S │ │ │ │ ├── mul_1.c │ │ │ │ ├── rtld-memcpy.c │ │ │ │ ├── rtld-memmove.c │ │ │ │ ├── rtld-memset.c │ │ │ │ ├── sha256-block.c │ │ │ │ ├── sha256-crop.S │ │ │ │ ├── sha512-block.c │ │ │ │ ├── sha512-crop.S │ │ │ │ ├── sub_n-generic.S │ │ │ │ ├── sub_n-vis3.S │ │ │ │ ├── sub_n.c │ │ │ │ ├── submul_1-generic.S │ │ │ │ ├── submul_1-vis3.S │ │ │ │ └── submul_1.c │ │ │ ├── pthread_spin_init.c │ │ │ ├── pthread_spin_lock.S │ │ │ ├── pthread_spin_trylock.S │ │ │ ├── pthread_spin_unlock.S │ │ │ ├── pthreaddef.h │ │ │ ├── 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 │ │ │ ├── rawmemchr.S │ │ │ ├── rshift.S │ │ │ ├── rtld-memcpy.c │ │ │ ├── rtld-memmove.c │ │ │ ├── rtld-memset.c │ │ │ ├── sfp-machine.h │ │ │ ├── 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 │ │ │ ├── sub_n.S │ │ │ ├── submul_1.S │ │ │ ├── tls-macros.h │ │ │ └── tst-audit.h │ │ ├── stackinfo.h │ │ ├── sys │ │ │ └── trap.h │ │ └── sysdep.h │ ├── unix │ │ ├── Implies │ │ ├── Makefile │ │ ├── alpha │ │ │ ├── Makefile │ │ │ ├── getegid.S │ │ │ ├── geteuid.S │ │ │ ├── getppid.S │ │ │ ├── pipe.S │ │ │ ├── rt-sysdep.S │ │ │ ├── sysdep.S │ │ │ └── sysdep.h │ │ ├── arm │ │ │ ├── sysdep.S │ │ │ └── sysdep.h │ │ ├── bsd │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── bits │ │ │ │ ├── signum.h │ │ │ │ └── sockaddr.h │ │ │ ├── bsdtty.h │ │ │ ├── cmsg_nxthdr.c │ │ │ ├── ftime.c │ │ │ ├── getpt.c │ │ │ ├── gtty.c │ │ │ ├── sigblock.c │ │ │ ├── sigsetmask.c │ │ │ ├── stty.c │ │ │ ├── syscalls.list │ │ │ ├── tcdrain.c │ │ │ ├── tcflow.c │ │ │ ├── tcflush.c │ │ │ ├── tcgetattr.c │ │ │ ├── tcgetpgrp.c │ │ │ ├── tcsendbrk.c │ │ │ ├── tcsetattr.c │ │ │ ├── tcsetpgrp.c │ │ │ ├── ualarm.c │ │ │ ├── unlockpt.c │ │ │ ├── wait.c │ │ │ ├── wait3.c │ │ │ └── waitpid.c │ │ ├── clock_gettime.c │ │ ├── clock_nanosleep.c │ │ ├── clock_settime.c │ │ ├── confstr.h │ │ ├── get_child_max.c │ │ ├── getlogin.c │ │ ├── getlogin_r.c │ │ ├── getpagesize.c │ │ ├── grantpt.c │ │ ├── i386 │ │ │ ├── sysdep.S │ │ │ └── sysdep.h │ │ ├── ifreq.c │ │ ├── inet │ │ │ └── Subdirs │ │ ├── make-syscalls.sh │ │ ├── mips │ │ │ ├── entry.h │ │ │ ├── mips32 │ │ │ │ └── sysdep.h │ │ │ ├── mips64 │ │ │ │ ├── n32 │ │ │ │ │ └── sysdep.h │ │ │ │ └── n64 │ │ │ │ │ └── sysdep.h │ │ │ ├── pipe.S │ │ │ ├── rt-sysdep.S │ │ │ ├── sysdep.S │ │ │ └── sysdep.h │ │ ├── powerpc │ │ │ └── sysdep.h │ │ ├── pt-fcntl.c │ │ ├── s-proto-cancel.S │ │ ├── s-proto.S │ │ ├── setxid.h │ │ ├── sh │ │ │ ├── sysdep.S │ │ │ └── sysdep.h │ │ ├── sockatmark.c │ │ ├── stime.c │ │ ├── syscall-template.S │ │ ├── syscall.S │ │ ├── syscalls.list │ │ ├── sysdep.h │ │ ├── sysv │ │ │ └── linux │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── _G_config.h │ │ │ │ ├── _exit.c │ │ │ │ ├── a.out.h │ │ │ │ ├── aarch64 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── __read_tp.S │ │ │ │ ├── bits │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── hwcap.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── local_lim.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ └── sigstack.h │ │ │ │ ├── c++-types.data │ │ │ │ ├── clone.S │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── cpu-features.c │ │ │ │ ├── cpu-features.h │ │ │ │ ├── dl-cache.h │ │ │ │ ├── dl-procinfo.c │ │ │ │ ├── dl-procinfo.h │ │ │ │ ├── dl-static.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── gettimeofday.c │ │ │ │ ├── init-first.c │ │ │ │ ├── ioctl.S │ │ │ │ ├── ipc_priv.h │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── kernel_rt_sigframe.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── ldconfig.h │ │ │ │ ├── ldsodefs.h │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc-__read_tp.S │ │ │ │ ├── libc-start.c │ │ │ │ ├── libc-vdso.h │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── makecontext.c │ │ │ │ ├── profil-counter.h │ │ │ │ ├── readelflib.c │ │ │ │ ├── setcontext.S │ │ │ │ ├── shlib-versions │ │ │ │ ├── sigaction.c │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── swapcontext.S │ │ │ │ ├── sys │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── syscall.S │ │ │ │ ├── sysconf.c │ │ │ │ ├── sysdep.c │ │ │ │ ├── sysdep.h │ │ │ │ ├── ucontext-internal.h │ │ │ │ ├── ucontext_i.sym │ │ │ │ └── vfork.S │ │ │ │ ├── accept.c │ │ │ │ ├── accept4.c │ │ │ │ ├── access.c │ │ │ │ ├── adjtime.c │ │ │ │ ├── aio_misc.h │ │ │ │ ├── aio_sigqueue.c │ │ │ │ ├── alpha │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── a.out.h │ │ │ │ ├── adjtime.c │ │ │ │ ├── aio_cancel.c │ │ │ │ ├── alpha │ │ │ │ │ ├── ptrace.h │ │ │ │ │ └── regdef.h │ │ │ │ ├── alphaev6 │ │ │ │ │ └── fpu │ │ │ │ │ │ └── Implies │ │ │ │ ├── alphaev67 │ │ │ │ │ └── fpu │ │ │ │ │ │ └── Implies │ │ │ │ ├── bits │ │ │ │ │ ├── a.out.h │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── elfclass.h │ │ │ │ │ ├── epoll.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── eventfd.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── inotify.h │ │ │ │ │ ├── ioctls.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── local_lim.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ ├── procfs-prregset.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── sigaction.h │ │ │ │ │ ├── signalfd.h │ │ │ │ │ ├── signum.h │ │ │ │ │ ├── sigstack.h │ │ │ │ │ ├── socket-constants.h │ │ │ │ │ ├── socket_type.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── statfs.h │ │ │ │ │ ├── termios-baud.h │ │ │ │ │ ├── termios-c_cc.h │ │ │ │ │ ├── termios-c_cflag.h │ │ │ │ │ ├── termios-c_iflag.h │ │ │ │ │ ├── termios-c_lflag.h │ │ │ │ │ ├── termios-c_oflag.h │ │ │ │ │ ├── termios-struct.h │ │ │ │ │ ├── timerfd.h │ │ │ │ │ ├── typesizes.h │ │ │ │ │ └── wordsize.h │ │ │ │ ├── brk.S │ │ │ │ ├── c++-types.data │ │ │ │ ├── clone.S │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-auxv.h │ │ │ │ ├── dl-brk.S │ │ │ │ ├── dl-fxstatat64.c │ │ │ │ ├── dl-support.c │ │ │ │ ├── dl-sysdep.c │ │ │ │ ├── fpu │ │ │ │ │ └── Implies │ │ │ │ ├── fraiseexcpt.S │ │ │ │ ├── fstatfs64.c │ │ │ │ ├── fstatvfs.c │ │ │ │ ├── fstatvfs64.c │ │ │ │ ├── fxstat.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── getclktck.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── getdents.c │ │ │ │ ├── getdents64.c │ │ │ │ ├── gethostname.c │ │ │ │ ├── getrlimit64.c │ │ │ │ ├── getsysstats.c │ │ │ │ ├── glob-lstat-compat.c │ │ │ │ ├── globfree.c │ │ │ │ ├── ieee_get_fp_control.S │ │ │ │ ├── ieee_set_fp_control.S │ │ │ │ ├── internal_statvfs64.c │ │ │ │ ├── ioperm.c │ │ │ │ ├── ipc_priv.h │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_sysinfo.h │ │ │ │ ├── kernel_termios.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── lxstat.c │ │ │ │ ├── makecontext.S │ │ │ │ ├── nldbl-abi.h │ │ │ │ ├── oldglob.c │ │ │ │ ├── pipe.S │ │ │ │ ├── register-dump.h │ │ │ │ ├── rt_sigaction.S │ │ │ │ ├── select.c │ │ │ │ ├── setcontext.S │ │ │ │ ├── setfpucw.c │ │ │ │ ├── setrlimit64.c │ │ │ │ ├── shlib-versions │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── sigprocmask.c │ │ │ │ ├── sizes.h │ │ │ │ ├── statfs64.c │ │ │ │ ├── statvfs.c │ │ │ │ ├── statvfs64.c │ │ │ │ ├── swapcontext.S │ │ │ │ ├── sys │ │ │ │ │ ├── acct.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── syscall.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysconf.c │ │ │ │ ├── sysdep.h │ │ │ │ ├── timer_create.c │ │ │ │ ├── timer_delete.c │ │ │ │ ├── timer_getoverr.c │ │ │ │ ├── timer_gettime.c │ │ │ │ ├── timer_settime.c │ │ │ │ ├── ucontext-offsets.sym │ │ │ │ ├── vfork.S │ │ │ │ ├── wordexp.c │ │ │ │ ├── xstat.c │ │ │ │ ├── xstatconv.c │ │ │ │ └── xstatconv.h │ │ │ │ ├── alphasort64.c │ │ │ │ ├── arch-fork.h │ │ │ │ ├── arm │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── aeabi_read_tp.S │ │ │ │ ├── arm-features.h │ │ │ │ ├── atomic-machine.h │ │ │ │ ├── bits │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── hwcap.h │ │ │ │ │ ├── procfs-id.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ └── shmlba.h │ │ │ │ ├── brk.c │ │ │ │ ├── c++-types.data │ │ │ │ ├── clone.S │ │ │ │ ├── dl-cache.h │ │ │ │ ├── dl-machine.h │ │ │ │ ├── dl-procinfo.c │ │ │ │ ├── dl-procinfo.h │ │ │ │ ├── fxstat.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── init-first.c │ │ │ │ ├── ioperm.c │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── ldconfig.h │ │ │ │ ├── ldsodefs.h │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc-do-syscall.S │ │ │ │ ├── libc-vdso.h │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── lxstat.c │ │ │ │ ├── makecontext.c │ │ │ │ ├── profil-counter.h │ │ │ │ ├── readelflib.c │ │ │ │ ├── register-dump.h │ │ │ │ ├── setcontext.S │ │ │ │ ├── shlib-versions │ │ │ │ ├── sigaction.c │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── sigrestorer.S │ │ │ │ ├── swapcontext.S │ │ │ │ ├── sys │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── syscall.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.S │ │ │ │ ├── sysdep.h │ │ │ │ ├── tls.h │ │ │ │ ├── ucontext_i.sym │ │ │ │ ├── vfork.S │ │ │ │ └── xstat.c │ │ │ │ ├── bind.c │ │ │ │ ├── bits │ │ │ │ ├── a.out.h │ │ │ │ ├── dirent.h │ │ │ │ ├── dirent_ext.h │ │ │ │ ├── epoll.h │ │ │ │ ├── errno.h │ │ │ │ ├── eventfd.h │ │ │ │ ├── fcntl-linux.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── in.h │ │ │ │ ├── initspin.h │ │ │ │ ├── inotify.h │ │ │ │ ├── ioctl-types.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── ipc.h │ │ │ │ ├── local_lim.h │ │ │ │ ├── mman-linux.h │ │ │ │ ├── mman-map-flags-generic.h │ │ │ │ ├── mman-shared.h │ │ │ │ ├── mman.h │ │ │ │ ├── mqueue.h │ │ │ │ ├── msq-pad.h │ │ │ │ ├── msq.h │ │ │ │ ├── param.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix_opt.h │ │ │ │ ├── procfs-extra.h │ │ │ │ ├── procfs-id.h │ │ │ │ ├── procfs-prregset.h │ │ │ │ ├── procfs.h │ │ │ │ ├── ptrace-shared.h │ │ │ │ ├── resource.h │ │ │ │ ├── sched.h │ │ │ │ ├── sem-pad.h │ │ │ │ ├── sem.h │ │ │ │ ├── shm-pad.h │ │ │ │ ├── shm.h │ │ │ │ ├── shmlba.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── sigevent-consts.h │ │ │ │ ├── siginfo-arch.h │ │ │ │ ├── siginfo-consts-arch.h │ │ │ │ ├── siginfo-consts.h │ │ │ │ ├── signal_ext.h │ │ │ │ ├── signalfd.h │ │ │ │ ├── signum.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── socket-constants.h │ │ │ │ ├── socket.h │ │ │ │ ├── socket_type.h │ │ │ │ ├── ss_flags.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── statvfs.h │ │ │ │ ├── statx.h │ │ │ │ ├── sys_errlist.h │ │ │ │ ├── sysctl.h │ │ │ │ ├── termios-baud.h │ │ │ │ ├── termios-c_cc.h │ │ │ │ ├── termios-c_cflag.h │ │ │ │ ├── termios-c_iflag.h │ │ │ │ ├── termios-c_lflag.h │ │ │ │ ├── termios-c_oflag.h │ │ │ │ ├── termios-misc.h │ │ │ │ ├── termios-struct.h │ │ │ │ ├── termios-tcflow.h │ │ │ │ ├── termios.h │ │ │ │ ├── time.h │ │ │ │ ├── timerfd.h │ │ │ │ ├── timex.h │ │ │ │ ├── types │ │ │ │ │ ├── __sigset_t.h │ │ │ │ │ ├── sigevent_t.h │ │ │ │ │ ├── siginfo_t.h │ │ │ │ │ └── stack_t.h │ │ │ │ ├── uio-ext.h │ │ │ │ ├── uio_lim.h │ │ │ │ ├── unistd_ext.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 │ │ │ │ ├── close.c │ │ │ │ ├── close_nocancel.c │ │ │ │ ├── cmsg_nxthdr.c │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── connect.c │ │ │ │ ├── copy_file_range.c │ │ │ │ ├── creat.c │ │ │ │ ├── creat64.c │ │ │ │ ├── createthread.c │ │ │ │ ├── csky │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── abiv2 │ │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ │ ├── clone.S │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── swapcontext.S │ │ │ │ │ ├── syscall.S │ │ │ │ │ ├── sysdep.S │ │ │ │ │ └── ucontext_i.sym │ │ │ │ ├── bits │ │ │ │ │ ├── procfs.h │ │ │ │ │ └── shmlba.h │ │ │ │ ├── c++-types.data │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── ipc_priv.h │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── ldconfig.h │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── makecontext.c │ │ │ │ ├── profil-counter.h │ │ │ │ ├── register-dump.h │ │ │ │ ├── shlib-versions │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── sys │ │ │ │ │ ├── cachectl.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── syscalls.list │ │ │ │ └── sysdep.h │ │ │ │ ├── default-sched.h │ │ │ │ ├── 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 │ │ │ │ ├── dl-writev.h │ │ │ │ ├── epoll_pwait.c │ │ │ │ ├── epoll_wait.c │ │ │ │ ├── errqueue.h │ │ │ │ ├── eventfd_read.c │ │ │ │ ├── eventfd_write.c │ │ │ │ ├── exit-thread.h │ │ │ │ ├── faccessat.c │ │ │ │ ├── fallocate.c │ │ │ │ ├── fallocate64.c │ │ │ │ ├── fatal-prepare.h │ │ │ │ ├── fchmodat.c │ │ │ │ ├── fcntl.c │ │ │ │ ├── fcntl64.c │ │ │ │ ├── fcntl_nocancel.c │ │ │ │ ├── fd_to_filename.h │ │ │ │ ├── fdatasync.c │ │ │ │ ├── fexecve.c │ │ │ │ ├── filter-nr-syscalls.awk │ │ │ │ ├── fips-private.h │ │ │ │ ├── fpathconf.c │ │ │ │ ├── fstatfs64.c │ │ │ │ ├── fstatvfs.c │ │ │ │ ├── fstatvfs64.c │ │ │ │ ├── fsync.c │ │ │ │ ├── ftime.c │ │ │ │ ├── ftruncate.c │ │ │ │ ├── ftruncate64.c │ │ │ │ ├── futex-internal.h │ │ │ │ ├── futimens.c │ │ │ │ ├── futimes.c │ │ │ │ ├── futimesat.c │ │ │ │ ├── fxstat.c │ │ │ │ ├── fxstat64.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── fxstatat64.c │ │ │ │ ├── gai_sigqueue.c │ │ │ │ ├── gen-syscall-h.awk │ │ │ │ ├── generic │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ____longjmp_chk.c │ │ │ │ ├── bits │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── statfs.h │ │ │ │ │ └── typesizes.h │ │ │ │ ├── brk.c │ │ │ │ ├── chmod.c │ │ │ │ ├── chown.c │ │ │ │ ├── dl-origin.c │ │ │ │ ├── dup2.c │ │ │ │ ├── epoll_create.c │ │ │ │ ├── futimesat.c │ │ │ │ ├── inotify_init.c │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── lchown.c │ │ │ │ ├── link.c │ │ │ │ ├── lxstat.c │ │ │ │ ├── mkdir.c │ │ │ │ ├── pipe.c │ │ │ │ ├── readlink.c │ │ │ │ ├── rmdir.c │ │ │ │ ├── symlink.c │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysctl.c │ │ │ │ ├── sysdep.h │ │ │ │ ├── unlink.c │ │ │ │ ├── utimes.c │ │ │ │ ├── wordsize-32 │ │ │ │ │ ├── Versions │ │ │ │ │ ├── fstatfs.c │ │ │ │ │ ├── fxstat.c │ │ │ │ │ ├── fxstat64.c │ │ │ │ │ ├── fxstatat.c │ │ │ │ │ ├── fxstatat64.c │ │ │ │ │ ├── lxstat.c │ │ │ │ │ ├── lxstat64.c │ │ │ │ │ ├── overflow.h │ │ │ │ │ ├── sendfile.c │ │ │ │ │ ├── statfs.c │ │ │ │ │ ├── syscalls.list │ │ │ │ │ ├── xstat.c │ │ │ │ │ └── xstat64.c │ │ │ │ ├── xmknod.c │ │ │ │ └── xstat.c │ │ │ │ ├── gentempfd.c │ │ │ │ ├── getclktck.c │ │ │ │ ├── getcpu.c │ │ │ │ ├── getcwd.c │ │ │ │ ├── getdents.c │ │ │ │ ├── getdents64.c │ │ │ │ ├── getdirentries.c │ │ │ │ ├── getdirentries64.c │ │ │ │ ├── getdtsz.c │ │ │ │ ├── getentropy.c │ │ │ │ ├── gethostid.c │ │ │ │ ├── getipv4sourcefilter.c │ │ │ │ ├── getloadavg.c │ │ │ │ ├── getlogin.c │ │ │ │ ├── getlogin_r.c │ │ │ │ ├── getpagesize.c │ │ │ │ ├── getpeername.c │ │ │ │ ├── getpriority.c │ │ │ │ ├── getpt.c │ │ │ │ ├── getrandom.c │ │ │ │ ├── getrlimit.c │ │ │ │ ├── getrlimit64.c │ │ │ │ ├── getsockname.c │ │ │ │ ├── getsockopt.c │ │ │ │ ├── getsourcefilter.c │ │ │ │ ├── getsourcefilter.h │ │ │ │ ├── getsysstats.c │ │ │ │ ├── gettimeofday.c │ │ │ │ ├── glob-lstat-compat.c │ │ │ │ ├── glob.c │ │ │ │ ├── glob64-lstat-compat.c │ │ │ │ ├── glob64.c │ │ │ │ ├── globfree.c │ │ │ │ ├── globfree64.c │ │ │ │ ├── grantpt.c │ │ │ │ ├── hppa │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.c │ │ │ │ ├── atomic-machine.h │ │ │ │ ├── bits │ │ │ │ │ ├── epoll.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── eventfd.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── inotify.h │ │ │ │ │ ├── ioctls.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── msq-pad.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ ├── sem-pad.h │ │ │ │ │ ├── shm-pad.h │ │ │ │ │ ├── shmlba.h │ │ │ │ │ ├── sigaction.h │ │ │ │ │ ├── signalfd.h │ │ │ │ │ ├── signum.h │ │ │ │ │ ├── socket-constants.h │ │ │ │ │ ├── socket_type.h │ │ │ │ │ └── timerfd.h │ │ │ │ ├── brk.c │ │ │ │ ├── c++-types.data │ │ │ │ ├── clone.S │ │ │ │ ├── fxstat.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── ipc_priv.h │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── lxstat.c │ │ │ │ ├── makecontext.c │ │ │ │ ├── profil-counter.h │ │ │ │ ├── pthread.h │ │ │ │ ├── pthreadP.h │ │ │ │ ├── setcontext.S │ │ │ │ ├── shlib-versions │ │ │ │ ├── swapcontext.c │ │ │ │ ├── sys │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── syscall.c │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.c │ │ │ │ ├── sysdep.h │ │ │ │ ├── ucontext_i.sym │ │ │ │ ├── utimes.c │ │ │ │ └── xstat.c │ │ │ │ ├── i386 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── _exit.S │ │ │ │ ├── brk.c │ │ │ │ ├── c++-types.data │ │ │ │ ├── clone.S │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-librecon.h │ │ │ │ ├── dl-procinfo.h │ │ │ │ ├── dl-sysdep.h │ │ │ │ ├── fxstat.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── gettimeofday.c │ │ │ │ ├── i686 │ │ │ │ │ ├── Implies │ │ │ │ │ └── dl-sysdep.h │ │ │ │ ├── i786 │ │ │ │ │ └── Implies │ │ │ │ ├── init-first.c │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── ldconfig.h │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc-do-syscall.S │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── lxstat.c │ │ │ │ ├── makecontext.S │ │ │ │ ├── profil-counter.h │ │ │ │ ├── readelflib.c │ │ │ │ ├── register-dump.h │ │ │ │ ├── setcontext.S │ │ │ │ ├── shlib-versions │ │ │ │ ├── sigaction.c │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── smp.h │ │ │ │ ├── startup.h │ │ │ │ ├── swapcontext.S │ │ │ │ ├── syscall.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.c │ │ │ │ ├── sysdep.h │ │ │ │ ├── time.c │ │ │ │ ├── tst-bz21269.c │ │ │ │ ├── ucontext_i.sym │ │ │ │ ├── vfork.S │ │ │ │ └── xstat.c │ │ │ │ ├── ia64 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── __ia64_longjmp.S │ │ │ │ ├── __longjmp.S │ │ │ │ ├── __sigstack_longjmp.c │ │ │ │ ├── __start_context.S │ │ │ │ ├── bits │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── local_lim.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── shmlba.h │ │ │ │ │ ├── sigaction.h │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ ├── siginfo-arch.h │ │ │ │ │ ├── siginfo-consts-arch.h │ │ │ │ │ ├── sigstack.h │ │ │ │ │ └── stat.h │ │ │ │ ├── brk.S │ │ │ │ ├── bsd-_setjmp.S │ │ │ │ ├── bsd-setjmp.S │ │ │ │ ├── c++-types.data │ │ │ │ ├── clone.S │ │ │ │ ├── clone2.S │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-brk.S │ │ │ │ ├── dl-cache.h │ │ │ │ ├── dl-static.c │ │ │ │ ├── dl-sysdep.h │ │ │ │ ├── getclktck.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── ioperm.c │ │ │ │ ├── ipc_priv.h │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── ldconfig.h │ │ │ │ ├── ldd-rewrite.sed │ │ │ │ ├── ldsodefs.h │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── makecontext.c │ │ │ │ ├── mmap_internal.h │ │ │ │ ├── pipe.S │ │ │ │ ├── profil-counter.h │ │ │ │ ├── readelflib.c │ │ │ │ ├── register-dump.h │ │ │ │ ├── rt-sysdep.S │ │ │ │ ├── setcontext.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── shlib-versions │ │ │ │ ├── sigaltstack-offsets.sym │ │ │ │ ├── sigcontext-offsets.sym │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── sigprocmask.c │ │ │ │ ├── swapcontext.c │ │ │ │ ├── sys │ │ │ │ │ ├── io.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── rse.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── syscall.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.S │ │ │ │ ├── sysdep.h │ │ │ │ ├── timer_create.c │ │ │ │ ├── timer_delete.c │ │ │ │ ├── timer_getoverr.c │ │ │ │ ├── timer_gettime.c │ │ │ │ ├── timer_settime.c │ │ │ │ ├── tst-setcontext2.c │ │ │ │ ├── tst-setcontext4.c │ │ │ │ ├── ucontext_i.h │ │ │ │ ├── unwind-dw2-fde.c │ │ │ │ ├── unwind-forcedunwind.c │ │ │ │ ├── unwind_longjmp.c │ │ │ │ ├── vfork.S │ │ │ │ └── wordexp.c │ │ │ │ ├── if_index.c │ │ │ │ ├── ifaddrs.c │ │ │ │ ├── ifreq.c │ │ │ │ ├── include │ │ │ │ ├── bits │ │ │ │ │ └── syscall.h │ │ │ │ └── sys │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ └── timex.h │ │ │ │ ├── internal-signals.h │ │ │ │ ├── internal_statvfs.c │ │ │ │ ├── internal_statvfs.h │ │ │ │ ├── internal_statvfs64.c │ │ │ │ ├── ipc_ops.h │ │ │ │ ├── ipc_priv.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── kernel-posix-cpu-timers.h │ │ │ │ ├── kernel-posix-timers.h │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_termios.h │ │ │ │ ├── ldd-rewrite.sed │ │ │ │ ├── lddlibc4.c │ │ │ │ ├── ldsodefs.h │ │ │ │ ├── libc_fatal.c │ │ │ │ ├── linux_fsinfo.h │ │ │ │ ├── listen.c │ │ │ │ ├── local-setxid.h │ │ │ │ ├── lowlevellock-futex.h │ │ │ │ ├── lseek.c │ │ │ │ ├── lseek64.c │ │ │ │ ├── lutimes.c │ │ │ │ ├── lxstat.c │ │ │ │ ├── lxstat64.c │ │ │ │ ├── m68k │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.c │ │ │ │ ├── bits │ │ │ │ │ ├── a.out.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── poll.h │ │ │ │ │ ├── procfs-id.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ ├── sockaddr.h │ │ │ │ │ └── stat.h │ │ │ │ ├── brk.c │ │ │ │ ├── c++-types.data │ │ │ │ ├── clone.S │ │ │ │ ├── coldfire │ │ │ │ │ ├── atomic-machine.h │ │ │ │ │ ├── fpu │ │ │ │ │ │ └── jmp_buf-macros.h │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ ├── localplt.data │ │ │ │ │ ├── nofpu │ │ │ │ │ │ └── jmp_buf-macros.h │ │ │ │ │ ├── shlib-versions │ │ │ │ │ └── sysdep.h │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-librecon.h │ │ │ │ ├── dl-static.c │ │ │ │ ├── fxstat.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── getpagesize.c │ │ │ │ ├── getsysstats.c │ │ │ │ ├── kernel-features.h │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── ldconfig.h │ │ │ │ ├── ldsodefs.h │ │ │ │ ├── lxstat.c │ │ │ │ ├── m680x0 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ ├── localplt.data │ │ │ │ │ ├── makecontext.S │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── swapcontext.S │ │ │ │ │ ├── sysdep.h │ │ │ │ │ └── ucontext_i.sym │ │ │ │ ├── m68k-helpers.c │ │ │ │ ├── mmap_internal.h │ │ │ │ ├── mremap.S │ │ │ │ ├── register-dump.h │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── sys │ │ │ │ │ ├── reg.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── syscall.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.S │ │ │ │ ├── sysdep.h │ │ │ │ ├── vfork.S │ │ │ │ └── xstat.c │ │ │ │ ├── malloc-sysdep.h │ │ │ │ ├── microblaze │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── bits │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ └── stat.h │ │ │ │ ├── brk.c │ │ │ │ ├── c++-types.data │ │ │ │ ├── clock-compat.c │ │ │ │ ├── clone.S │ │ │ │ ├── fxstat.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── getsysstats.c │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── lxstat.c │ │ │ │ ├── profil-counter.h │ │ │ │ ├── shlib-versions │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── sys │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── syscall.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.S │ │ │ │ ├── sysdep.h │ │ │ │ ├── vfork.S │ │ │ │ └── xstat.c │ │ │ │ ├── mips │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.c │ │ │ │ ├── _test_and_set.c │ │ │ │ ├── bits │ │ │ │ │ ├── epoll.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── eventfd.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── inotify.h │ │ │ │ │ ├── ioctl-types.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── local_lim.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── msq-pad.h │ │ │ │ │ ├── poll.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── sem-pad.h │ │ │ │ │ ├── shm-pad.h │ │ │ │ │ ├── shmlba.h │ │ │ │ │ ├── sigaction.h │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ ├── siginfo-arch.h │ │ │ │ │ ├── signalfd.h │ │ │ │ │ ├── signum.h │ │ │ │ │ ├── socket-constants.h │ │ │ │ │ ├── socket_type.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── statfs.h │ │ │ │ │ ├── termios-c_cc.h │ │ │ │ │ ├── termios-c_lflag.h │ │ │ │ │ ├── termios-struct.h │ │ │ │ │ ├── termios-tcflow.h │ │ │ │ │ ├── timerfd.h │ │ │ │ │ └── types │ │ │ │ │ │ └── stack_t.h │ │ │ │ ├── brk.c │ │ │ │ ├── clone.S │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-cache.h │ │ │ │ ├── dl-static.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── getrlimit64.c │ │ │ │ ├── getsysstats.c │ │ │ │ ├── init-first.c │ │ │ │ ├── kernel-features.h │ │ │ │ ├── kernel_rt_sigframe.h │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kernel_termios.h │ │ │ │ ├── ldsodefs.h │ │ │ │ ├── libc-abis │ │ │ │ ├── libc-vdso.h │ │ │ │ ├── makecontext.S │ │ │ │ ├── mips32 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Versions │ │ │ │ │ ├── bug-getcontext-mips-gp.c │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── fpu │ │ │ │ │ │ └── libc.abilist │ │ │ │ │ ├── fxstatat.c │ │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ ├── mips-syscall5.S │ │ │ │ │ ├── mips-syscall6.S │ │ │ │ │ ├── mips-syscall7.S │ │ │ │ │ ├── mips16 │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── mips16-syscall.h │ │ │ │ │ │ ├── mips16-syscall0.c │ │ │ │ │ │ ├── mips16-syscall1.c │ │ │ │ │ │ ├── mips16-syscall2.c │ │ │ │ │ │ ├── mips16-syscall3.c │ │ │ │ │ │ └── mips16-syscall4.c │ │ │ │ │ ├── nofpu │ │ │ │ │ │ └── libc.abilist │ │ │ │ │ ├── syscalls.list │ │ │ │ │ └── sysdep.h │ │ │ │ ├── mips64 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── fxstat64.c │ │ │ │ │ ├── fxstatat64.c │ │ │ │ │ ├── getdents64.c │ │ │ │ │ ├── ipc_priv.h │ │ │ │ │ ├── ldconfig.h │ │ │ │ │ ├── ldd-rewrite.sed │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ ├── lxstat64.c │ │ │ │ │ ├── msgctl.c │ │ │ │ │ ├── n32 │ │ │ │ │ │ ├── Versions │ │ │ │ │ │ ├── c++-types.data │ │ │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ │ │ ├── ld.abilist │ │ │ │ │ │ ├── libc.abilist │ │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ │ ├── lseek.c │ │ │ │ │ │ ├── mmap_internal.h │ │ │ │ │ │ ├── syscalls.list │ │ │ │ │ │ └── sysdep.h │ │ │ │ │ ├── n64 │ │ │ │ │ │ ├── c++-types.data │ │ │ │ │ │ ├── fstatfs64.c │ │ │ │ │ │ ├── fts.c │ │ │ │ │ │ ├── fts64.c │ │ │ │ │ │ ├── ftw.c │ │ │ │ │ │ ├── ftw64.c │ │ │ │ │ │ ├── ioctl.S │ │ │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ │ │ ├── ld.abilist │ │ │ │ │ │ ├── libc.abilist │ │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ │ ├── posix_fadvise64.c │ │ │ │ │ │ ├── sendfile64.c │ │ │ │ │ │ ├── statfs64.c │ │ │ │ │ │ ├── syscalls.list │ │ │ │ │ │ └── sysdep.h │ │ │ │ │ ├── semctl.c │ │ │ │ │ ├── shmctl.c │ │ │ │ │ ├── statx_cp.c │ │ │ │ │ ├── syscall.S │ │ │ │ │ └── xstat64.c │ │ │ │ ├── mmap_info.h │ │ │ │ ├── pipe.S │ │ │ │ ├── profil-counter.h │ │ │ │ ├── readelflib.c │ │ │ │ ├── register-dump.h │ │ │ │ ├── setcontext.S │ │ │ │ ├── setrlimit64.c │ │ │ │ ├── shlib-versions │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── swapcontext.S │ │ │ │ ├── sys │ │ │ │ │ ├── cachectl.h │ │ │ │ │ ├── sysmips.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── syscalls.list │ │ │ │ ├── ucontext_i.sym │ │ │ │ ├── ustat.c │ │ │ │ ├── vfork.S │ │ │ │ └── xstatconv.c │ │ │ │ ├── mlock2.c │ │ │ │ ├── mmap.c │ │ │ │ ├── mmap64.c │ │ │ │ ├── mmap_internal.h │ │ │ │ ├── mq_close.c │ │ │ │ ├── mq_getattr.c │ │ │ │ ├── mq_notify.c │ │ │ │ ├── mq_open.c │ │ │ │ ├── mq_receive.c │ │ │ │ ├── mq_send.c │ │ │ │ ├── mq_timedreceive.c │ │ │ │ ├── mq_timedsend.c │ │ │ │ ├── mq_unlink.c │ │ │ │ ├── msgctl.c │ │ │ │ ├── msgget.c │ │ │ │ ├── msgrcv.c │ │ │ │ ├── msgsnd.c │ │ │ │ ├── msync.c │ │ │ │ ├── nanosleep.c │ │ │ │ ├── nanosleep_nocancel.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 │ │ │ │ ├── netlink_assert_response.c │ │ │ │ ├── netlinkaccess.h │ │ │ │ ├── netpacket │ │ │ │ └── packet.h │ │ │ │ ├── netrom │ │ │ │ └── netrom.h │ │ │ │ ├── netrose │ │ │ │ └── rose.h │ │ │ │ ├── nfs │ │ │ │ └── nfs.h │ │ │ │ ├── nice.c │ │ │ │ ├── nios2 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── atomic-machine.h │ │ │ │ ├── bits │ │ │ │ │ └── procfs.h │ │ │ │ ├── c++-types.data │ │ │ │ ├── cacheflush.c │ │ │ │ ├── clone.S │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── getcontext.S │ │ │ │ ├── ipc_priv.h │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ ├── kernel_rt_sigframe.h │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── makecontext.c │ │ │ │ ├── profil-counter.h │ │ │ │ ├── setcontext.S │ │ │ │ ├── shlib-versions │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── swapcontext.S │ │ │ │ ├── sys │ │ │ │ │ ├── cachectl.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── syscall.S │ │ │ │ ├── sysdep.S │ │ │ │ ├── sysdep.h │ │ │ │ ├── ucontext_i.sym │ │ │ │ └── vfork.S │ │ │ │ ├── not-cancel.h │ │ │ │ ├── not-errno.h │ │ │ │ ├── nscd_setup_thread.c │ │ │ │ ├── ntp_gettime.c │ │ │ │ ├── ntp_gettimex.c │ │ │ │ ├── olddirent.h │ │ │ │ ├── oldglob.c │ │ │ │ ├── open.c │ │ │ │ ├── open64.c │ │ │ │ ├── open64_nocancel.c │ │ │ │ ├── open_by_handle_at.c │ │ │ │ ├── open_nocancel.c │ │ │ │ ├── openat.c │ │ │ │ ├── openat64.c │ │ │ │ ├── openat64_nocancel.c │ │ │ │ ├── openat_nocancel.c │ │ │ │ ├── opensock.c │ │ │ │ ├── pathconf.c │ │ │ │ ├── pathconf.h │ │ │ │ ├── paths.h │ │ │ │ ├── pause.c │ │ │ │ ├── pause_nocancel.c │ │ │ │ ├── personality.c │ │ │ │ ├── pkey_get.c │ │ │ │ ├── pkey_mprotect.c │ │ │ │ ├── pkey_set.c │ │ │ │ ├── poll.c │ │ │ │ ├── posix_fadvise.c │ │ │ │ ├── posix_fadvise64.c │ │ │ │ ├── posix_fallocate.c │ │ │ │ ├── posix_fallocate64.c │ │ │ │ ├── posix_madvise.c │ │ │ │ ├── powerpc │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── bits │ │ │ │ │ ├── environments.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── ioctl-types.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── local_lim.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── msq-pad.h │ │ │ │ │ ├── ppc.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ ├── sem-pad.h │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── shm-pad.h │ │ │ │ │ ├── sigstack.h │ │ │ │ │ ├── socket-constants.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── termios-baud.h │ │ │ │ │ ├── termios-c_cc.h │ │ │ │ │ ├── termios-c_cflag.h │ │ │ │ │ ├── termios-c_iflag.h │ │ │ │ │ ├── termios-c_lflag.h │ │ │ │ │ ├── termios-c_oflag.h │ │ │ │ │ ├── termios-misc.h │ │ │ │ │ └── wordsize.h │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-brk.S │ │ │ │ ├── dl-cache.h │ │ │ │ ├── dl-static.c │ │ │ │ ├── dl-sysdep.c │ │ │ │ ├── elision-conf.c │ │ │ │ ├── elision-conf.h │ │ │ │ ├── elision-lock.c │ │ │ │ ├── elision-timed.c │ │ │ │ ├── elision-trylock.c │ │ │ │ ├── elision-unlock.c │ │ │ │ ├── force-elision.h │ │ │ │ ├── get_timebase_freq.c │ │ │ │ ├── gettimeofday.c │ │ │ │ ├── htm.h │ │ │ │ ├── init-first.c │ │ │ │ ├── ioctl.c │ │ │ │ ├── ipc_priv.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── kernel_termios.h │ │ │ │ ├── ldconfig.h │ │ │ │ ├── ldd-rewrite.sed │ │ │ │ ├── ldsodefs.h │ │ │ │ ├── libc-start.c │ │ │ │ ├── libc-start.h │ │ │ │ ├── libc-vdso.h │ │ │ │ ├── lowlevellock.h │ │ │ │ ├── nldbl-abi.h │ │ │ │ ├── powerpc32 │ │ │ │ │ ├── 405 │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── 440 │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── 464 │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── 476 │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── 970 │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Versions │ │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ │ ├── a2 │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── alphasort64.c │ │ │ │ │ ├── brk.S │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── cell │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ └── fpu │ │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── clone.S │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── fe_mask.c │ │ │ │ │ │ ├── fe_nomask.c │ │ │ │ │ │ ├── libc.abilist │ │ │ │ │ │ ├── libm.abilist │ │ │ │ │ │ └── localplt.data │ │ │ │ │ ├── fxstat.c │ │ │ │ │ ├── fxstatat.c │ │ │ │ │ ├── getcontext-common.S │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ │ ├── kernel_stat.h │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ ├── lxstat.c │ │ │ │ │ ├── makecontext.S │ │ │ │ │ ├── nofpu │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ ├── getcontext.S │ │ │ │ │ │ ├── libc.abilist │ │ │ │ │ │ ├── libm.abilist │ │ │ │ │ │ ├── localplt.data │ │ │ │ │ │ ├── setcontext.S │ │ │ │ │ │ └── swapcontext.S │ │ │ │ │ ├── setcontext-common.S │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── swapcontext-common.S │ │ │ │ │ ├── swapcontext.S │ │ │ │ │ ├── syscalls.list │ │ │ │ │ ├── sysdep.h │ │ │ │ │ ├── ucontext_i.sym │ │ │ │ │ ├── versionsort64.c │ │ │ │ │ ├── vfork.S │ │ │ │ │ └── xstat.c │ │ │ │ ├── powerpc64 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── Versions │ │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ │ ├── be │ │ │ │ │ │ ├── 970 │ │ │ │ │ │ │ └── Implies │ │ │ │ │ │ ├── a2 │ │ │ │ │ │ │ └── Implies │ │ │ │ │ │ ├── cell │ │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ │ └── fpu │ │ │ │ │ │ │ │ └── Implies │ │ │ │ │ │ ├── ld.abilist │ │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ │ ├── libc.abilist │ │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ │ ├── libm.abilist │ │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ │ ├── librt.abilist │ │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ │ └── libutil.abilist │ │ │ │ │ ├── brk.S │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── clone.S │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── dl-cache.h │ │ │ │ │ ├── fpu │ │ │ │ │ │ ├── fe_mask.c │ │ │ │ │ │ └── fe_nomask.c │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ │ ├── kernel_stat.h │ │ │ │ │ ├── ldsodefs.h │ │ │ │ │ ├── le │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ ├── float128-abi.h │ │ │ │ │ │ ├── fpu │ │ │ │ │ │ │ └── Implies │ │ │ │ │ │ ├── ld.abilist │ │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ │ ├── libc.abilist │ │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ │ ├── libm.abilist │ │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ │ ├── librt.abilist │ │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ │ └── libutil.abilist │ │ │ │ │ ├── localplt.data │ │ │ │ │ ├── makecontext.S │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── shlib-versions │ │ │ │ │ ├── swapcontext.S │ │ │ │ │ ├── sysdep.h │ │ │ │ │ ├── timer_create.c │ │ │ │ │ ├── timer_delete.c │ │ │ │ │ ├── timer_getoverr.c │ │ │ │ │ ├── timer_gettime.c │ │ │ │ │ ├── timer_settime.c │ │ │ │ │ ├── ucontext_i.sym │ │ │ │ │ └── vfork.S │ │ │ │ ├── profil-counter.h │ │ │ │ ├── pt-longjmp.c │ │ │ │ ├── pthread_attr_setstack.c │ │ │ │ ├── pthread_attr_setstacksize.c │ │ │ │ ├── pthread_mutex_cond_lock.c │ │ │ │ ├── pthread_mutex_lock.c │ │ │ │ ├── pthread_mutex_timedlock.c │ │ │ │ ├── pthread_mutex_trylock.c │ │ │ │ ├── readelflib.c │ │ │ │ ├── rt-sysdep.c │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── sys │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── syscall.S │ │ │ │ ├── sysconf.c │ │ │ │ ├── sysdep.c │ │ │ │ ├── test-gettimebasefreq-static.c │ │ │ │ ├── test-gettimebasefreq.c │ │ │ │ ├── test-powerpc-linux-sysconf.c │ │ │ │ └── time.c │ │ │ │ ├── ppoll.c │ │ │ │ ├── pread.c │ │ │ │ ├── pread64.c │ │ │ │ ├── preadv.c │ │ │ │ ├── preadv2.c │ │ │ │ ├── preadv64.c │ │ │ │ ├── preadv64v2.c │ │ │ │ ├── prlimit.c │ │ │ │ ├── prof-freq.c │ │ │ │ ├── profil.c │ │ │ │ ├── pselect.c │ │ │ │ ├── pt-raise.c │ │ │ │ ├── pthread-pids.h │ │ │ │ ├── pthread_getaffinity.c │ │ │ │ ├── pthread_getcpuclockid.c │ │ │ │ ├── pthread_getname.c │ │ │ │ ├── pthread_kill.c │ │ │ │ ├── pthread_setaffinity.c │ │ │ │ ├── pthread_setname.c │ │ │ │ ├── pthread_sigmask.c │ │ │ │ ├── pthread_sigqueue.c │ │ │ │ ├── ptrace.c │ │ │ │ ├── ptsname.c │ │ │ │ ├── pwrite.c │ │ │ │ ├── pwrite64.c │ │ │ │ ├── pwritev.c │ │ │ │ ├── pwritev2.c │ │ │ │ ├── pwritev64.c │ │ │ │ ├── pwritev64v2.c │ │ │ │ ├── raise.c │ │ │ │ ├── read.c │ │ │ │ ├── read_nocancel.c │ │ │ │ ├── readahead.c │ │ │ │ ├── readdir.c │ │ │ │ ├── readdir64.c │ │ │ │ ├── readdir64_r.c │ │ │ │ ├── readdir_r.c │ │ │ │ ├── readonly-area.c │ │ │ │ ├── readv.c │ │ │ │ ├── reboot.c │ │ │ │ ├── recv.c │ │ │ │ ├── recvfrom.c │ │ │ │ ├── recvmmsg.c │ │ │ │ ├── recvmsg.c │ │ │ │ ├── remove.c │ │ │ │ ├── rename.c │ │ │ │ ├── renameat.c │ │ │ │ ├── renameat2.c │ │ │ │ ├── riscv │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── atomic-machine.h │ │ │ │ ├── bits │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ └── sigcontext.h │ │ │ │ ├── clone.S │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-cache.h │ │ │ │ ├── dl-static.c │ │ │ │ ├── flush-icache.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── init-first.c │ │ │ │ ├── ipc_priv.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── ldconfig.h │ │ │ │ ├── ldd-rewrite.sed │ │ │ │ ├── ldsodefs.h │ │ │ │ ├── libc-vdso.h │ │ │ │ ├── localplt.data │ │ │ │ ├── makecontext.c │ │ │ │ ├── profil-counter.h │ │ │ │ ├── readelflib.c │ │ │ │ ├── register-dump.h │ │ │ │ ├── rv64 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ └── libutil.abilist │ │ │ │ ├── setcontext.S │ │ │ │ ├── shlib-versions │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── swapcontext.S │ │ │ │ ├── sys │ │ │ │ │ ├── cachectl.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── syscall.c │ │ │ │ ├── sysdep.S │ │ │ │ ├── sysdep.h │ │ │ │ ├── ucontext-macros.h │ │ │ │ ├── ucontext_i.sym │ │ │ │ └── vfork.S │ │ │ │ ├── s390 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── bits │ │ │ │ │ ├── elfclass.h │ │ │ │ │ ├── environments.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── hwcap.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── procfs-extra.h │ │ │ │ │ ├── procfs-id.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ ├── sigaction.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── statfs.h │ │ │ │ │ ├── typesizes.h │ │ │ │ │ ├── utmp.h │ │ │ │ │ └── utmpx.h │ │ │ │ ├── brk.c │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-cache.h │ │ │ │ ├── dl-procinfo.h │ │ │ │ ├── elision-conf.c │ │ │ │ ├── elision-conf.h │ │ │ │ ├── elision-lock.c │ │ │ │ ├── elision-timed.c │ │ │ │ ├── elision-trylock.c │ │ │ │ ├── elision-unlock.c │ │ │ │ ├── force-elision.h │ │ │ │ ├── fpu │ │ │ │ │ └── Implies │ │ │ │ ├── htm.h │ │ │ │ ├── init-first.c │ │ │ │ ├── ipc_priv.h │ │ │ │ ├── jmp-unwind.c │ │ │ │ ├── kernel-features.h │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── ldconfig.h │ │ │ │ ├── ldd-rewrite.sed │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc-vdso.h │ │ │ │ ├── localplt.data │ │ │ │ ├── longjmp_chk.c │ │ │ │ ├── lowlevellock.h │ │ │ │ ├── mmap_internal.h │ │ │ │ ├── nldbl-abi.h │ │ │ │ ├── opensock.c │ │ │ │ ├── pt-longjmp.c │ │ │ │ ├── pthread_mutex_cond_lock.c │ │ │ │ ├── pthread_mutex_lock.c │ │ │ │ ├── pthread_mutex_timedlock.c │ │ │ │ ├── pthread_mutex_trylock.c │ │ │ │ ├── readelflib.c │ │ │ │ ├── rt-sysdep.S │ │ │ │ ├── s390-32 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Versions │ │ │ │ │ ├── ____longjmp_chk.c │ │ │ │ │ ├── __makecontext_ret.S │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── clone.S │ │ │ │ │ ├── fxstat.c │ │ │ │ │ ├── fxstatat.c │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── getutent.c │ │ │ │ │ ├── getutent_r.c │ │ │ │ │ ├── getutid.c │ │ │ │ │ ├── getutid_r.c │ │ │ │ │ ├── getutline.c │ │ │ │ │ ├── getutline_r.c │ │ │ │ │ ├── getutmp.c │ │ │ │ │ ├── getutxent.c │ │ │ │ │ ├── getutxid.c │ │ │ │ │ ├── getutxline.c │ │ │ │ │ ├── glob64-lstat-compat.c │ │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ ├── login.c │ │ │ │ │ ├── login32.c │ │ │ │ │ ├── lxstat.c │ │ │ │ │ ├── makecontext.c │ │ │ │ │ ├── oldglob.c │ │ │ │ │ ├── posix_fadvise64.c │ │ │ │ │ ├── profil-counter.h │ │ │ │ │ ├── pututxline.c │ │ │ │ │ ├── register-dump.h │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── swapcontext.S │ │ │ │ │ ├── syscall.S │ │ │ │ │ ├── syscalls.list │ │ │ │ │ ├── sysdep.S │ │ │ │ │ ├── sysdep.h │ │ │ │ │ ├── updwtmp.c │ │ │ │ │ ├── updwtmpx.c │ │ │ │ │ ├── utmp-compat.h │ │ │ │ │ ├── utmp-convert.h │ │ │ │ │ ├── utmp32.c │ │ │ │ │ ├── utmp32.h │ │ │ │ │ ├── utmpx-convert.h │ │ │ │ │ ├── utmpx32.c │ │ │ │ │ ├── utmpx32.h │ │ │ │ │ ├── vfork.S │ │ │ │ │ └── xstat.c │ │ │ │ ├── s390-64 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Versions │ │ │ │ │ ├── ____longjmp_chk.c │ │ │ │ │ ├── __makecontext_ret.S │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── clone.S │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── dl-cache.h │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ │ ├── kernel_stat.h │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ ├── makecontext.c │ │ │ │ │ ├── profil-counter.h │ │ │ │ │ ├── register-dump.h │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── shlib-versions │ │ │ │ │ ├── sigprocmask.c │ │ │ │ │ ├── swapcontext.S │ │ │ │ │ ├── syscall.S │ │ │ │ │ ├── sysdep.S │ │ │ │ │ ├── sysdep.h │ │ │ │ │ ├── timer_create.c │ │ │ │ │ ├── timer_delete.c │ │ │ │ │ ├── timer_getoverr.c │ │ │ │ │ ├── timer_gettime.c │ │ │ │ │ ├── timer_settime.c │ │ │ │ │ └── vfork.S │ │ │ │ ├── sa_len.c │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── sys │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── sysconf.c │ │ │ │ ├── tst-ptrace-singleblock.c │ │ │ │ └── ucontext_i.sym │ │ │ │ ├── sa_len.c │ │ │ │ ├── safe-fatal.h │ │ │ │ ├── scandir64.c │ │ │ │ ├── sched_getaffinity.c │ │ │ │ ├── sched_getcpu.c │ │ │ │ ├── sched_setaffinity.c │ │ │ │ ├── scsi │ │ │ │ ├── scsi.h │ │ │ │ ├── scsi_ioctl.h │ │ │ │ └── sg.h │ │ │ │ ├── segfault.c │ │ │ │ ├── select.c │ │ │ │ ├── semctl.c │ │ │ │ ├── semget.c │ │ │ │ ├── semop.c │ │ │ │ ├── semtimedop.c │ │ │ │ ├── send.c │ │ │ │ ├── sendmmsg.c │ │ │ │ ├── sendmsg.c │ │ │ │ ├── sendto.c │ │ │ │ ├── setegid.c │ │ │ │ ├── seteuid.c │ │ │ │ ├── setgid.c │ │ │ │ ├── setgroups.c │ │ │ │ ├── sethostid.c │ │ │ │ ├── setipv4sourcefilter.c │ │ │ │ ├── setregid.c │ │ │ │ ├── setresgid.c │ │ │ │ ├── setresuid.c │ │ │ │ ├── setreuid.c │ │ │ │ ├── setrlimit.c │ │ │ │ ├── setrlimit64.c │ │ │ │ ├── setsockopt.c │ │ │ │ ├── setsourcefilter.c │ │ │ │ ├── setuid.c │ │ │ │ ├── sh │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── atomic-machine.h │ │ │ │ ├── bits │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── procfs-id.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ └── shmlba.h │ │ │ │ ├── brk.c │ │ │ │ ├── c++-types.data │ │ │ │ ├── clone.S │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── fxstat.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libcrypt.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── lowlevel-atomic.h │ │ │ │ ├── lxstat.c │ │ │ │ ├── makecontext.S │ │ │ │ ├── pipe.S │ │ │ │ ├── profil-counter.h │ │ │ │ ├── sh3 │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── register-dump.h │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── swapcontext.S │ │ │ │ │ └── ucontext_i.sym │ │ │ │ ├── sh4 │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── register-dump.h │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── swapcontext.S │ │ │ │ │ ├── sysdep.h │ │ │ │ │ └── ucontext_i.sym │ │ │ │ ├── shlib-versions │ │ │ │ ├── sigaltstack-offsets.sym │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── smp.h │ │ │ │ ├── sys │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── syscall.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.S │ │ │ │ ├── sysdep.h │ │ │ │ ├── vfork.S │ │ │ │ └── xstat.c │ │ │ │ ├── shlib-versions │ │ │ │ ├── shm-directory.c │ │ │ │ ├── shmat.c │ │ │ │ ├── shmctl.c │ │ │ │ ├── shmdt.c │ │ │ │ ├── shmget.c │ │ │ │ ├── shutdown.c │ │ │ │ ├── sigaction.c │ │ │ │ ├── siglist.h │ │ │ │ ├── signal.c │ │ │ │ ├── signalfd.c │ │ │ │ ├── sigpending.c │ │ │ │ ├── sigprocmask.c │ │ │ │ ├── sigqueue.c │ │ │ │ ├── sigreturn.c │ │ │ │ ├── sigset-cvt-mask.h │ │ │ │ ├── sigsetops.h │ │ │ │ ├── sigstack.c │ │ │ │ ├── sigsuspend.c │ │ │ │ ├── sigtimedwait.c │ │ │ │ ├── sigwait.c │ │ │ │ ├── sigwaitinfo.c │ │ │ │ ├── single-thread.h │ │ │ │ ├── sizes.h │ │ │ │ ├── socket.c │ │ │ │ ├── socketcall.h │ │ │ │ ├── socketpair.c │ │ │ │ ├── sparc │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── a.out.h │ │ │ │ ├── aio_cancel.c │ │ │ │ ├── bits │ │ │ │ │ ├── a.out.h │ │ │ │ │ ├── environments.h │ │ │ │ │ ├── epoll.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── eventfd.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── inotify.h │ │ │ │ │ ├── ioctls.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── local_lim.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── msq-pad.h │ │ │ │ │ ├── poll.h │ │ │ │ │ ├── procfs-extra.h │ │ │ │ │ ├── procfs-id.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── sem-pad.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── shm-pad.h │ │ │ │ │ ├── shmlba.h │ │ │ │ │ ├── sigaction.h │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ ├── siginfo-arch.h │ │ │ │ │ ├── siginfo-consts-arch.h │ │ │ │ │ ├── signalfd.h │ │ │ │ │ ├── signum.h │ │ │ │ │ ├── sigstack.h │ │ │ │ │ ├── socket-constants.h │ │ │ │ │ ├── socket_type.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── termios-baud.h │ │ │ │ │ ├── termios-c_cc.h │ │ │ │ │ ├── termios-c_oflag.h │ │ │ │ │ ├── termios-struct.h │ │ │ │ │ ├── timerfd.h │ │ │ │ │ ├── typesizes.h │ │ │ │ │ └── wordsize.h │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-cache.h │ │ │ │ ├── getrlimit64.c │ │ │ │ ├── getshmlba.c │ │ │ │ ├── getsysstats.c │ │ │ │ ├── init-first.c │ │ │ │ ├── kernel-features.h │ │ │ │ ├── kernel_sigaction.h │ │ │ │ ├── kernel_termios.h │ │ │ │ ├── ldd-rewrite.sed │ │ │ │ ├── libc-vdso.h │ │ │ │ ├── lowlevellock.h │ │ │ │ ├── readelflib.c │ │ │ │ ├── rt-sysdep.c │ │ │ │ ├── sparc32 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Versions │ │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ │ ├── alphasort64.c │ │ │ │ │ ├── bits │ │ │ │ │ │ └── long-double.h │ │ │ │ │ ├── brk.c │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── clone.S │ │ │ │ │ ├── fpu │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── fxstat.c │ │ │ │ │ ├── fxstatat.c │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ │ ├── kernel_stat.h │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ ├── localplt.data │ │ │ │ │ ├── lxstat.c │ │ │ │ │ ├── makecontext.c │ │ │ │ │ ├── nldbl-abi.h │ │ │ │ │ ├── pipe.S │ │ │ │ │ ├── profil-counter.h │ │ │ │ │ ├── register-dump.h │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── shlib-versions │ │ │ │ │ ├── sigaction.c │ │ │ │ │ ├── sigcontextinfo.h │ │ │ │ │ ├── sparcv9 │ │ │ │ │ │ └── fpu │ │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ │ └── multiarch │ │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── swapcontext.S │ │ │ │ │ ├── syscall.S │ │ │ │ │ ├── syscalls.list │ │ │ │ │ ├── sysdep.h │ │ │ │ │ ├── ucontext_i.sym │ │ │ │ │ ├── versionsort64.c │ │ │ │ │ ├── vfork.S │ │ │ │ │ └── xstat.c │ │ │ │ ├── sparc64 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Versions │ │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ │ ├── __longjmp.S │ │ │ │ │ ├── __start_context.S │ │ │ │ │ ├── bits │ │ │ │ │ │ └── long-double.h │ │ │ │ │ ├── brk.S │ │ │ │ │ ├── bsd-_setjmp.S │ │ │ │ │ ├── bsd-setjmp.S │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── clone.S │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── dl-brk.S │ │ │ │ │ ├── dl-cache.h │ │ │ │ │ ├── dl-fxstatat64.c │ │ │ │ │ ├── fxstat.c │ │ │ │ │ ├── fxstatat.c │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── ipc_priv.h │ │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ │ ├── kernel_stat.h │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ ├── localplt.data │ │ │ │ │ ├── longjmp.S │ │ │ │ │ ├── lxstat.c │ │ │ │ │ ├── makecontext.c │ │ │ │ │ ├── personality.c │ │ │ │ │ ├── pipe.S │ │ │ │ │ ├── profil-counter.h │ │ │ │ │ ├── register-dump.h │ │ │ │ │ ├── setcontext.S │ │ │ │ │ ├── setjmp.S │ │ │ │ │ ├── shlib-versions │ │ │ │ │ ├── sigaction.c │ │ │ │ │ ├── sigcontextinfo.h │ │ │ │ │ ├── sigjmp.S │ │ │ │ │ ├── sigprocmask.c │ │ │ │ │ ├── sizes.h │ │ │ │ │ ├── swapcontext.c │ │ │ │ │ ├── syscall.S │ │ │ │ │ ├── syscalls.list │ │ │ │ │ ├── sysdep.h │ │ │ │ │ ├── time.c │ │ │ │ │ ├── timer_create.c │ │ │ │ │ ├── timer_delete.c │ │ │ │ │ ├── timer_getoverr.c │ │ │ │ │ ├── timer_gettime.c │ │ │ │ │ ├── timer_settime.c │ │ │ │ │ ├── ucontext_i.h │ │ │ │ │ ├── vfork.S │ │ │ │ │ ├── wordexp.c │ │ │ │ │ ├── xstat.c │ │ │ │ │ └── xstatconv.c │ │ │ │ ├── sys │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── trap.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ └── user.h │ │ │ │ ├── sysdep.c │ │ │ │ └── sysdep.h │ │ │ │ ├── spawni.c │ │ │ │ ├── speed.c │ │ │ │ ├── splice.c │ │ │ │ ├── statfs64.c │ │ │ │ ├── statvfs.c │ │ │ │ ├── statvfs64.c │ │ │ │ ├── statx.c │ │ │ │ ├── statx_cp.c │ │ │ │ ├── statx_cp.h │ │ │ │ ├── sync_file_range.c │ │ │ │ ├── sys │ │ │ │ ├── acct.h │ │ │ │ ├── epoll.h │ │ │ │ ├── eventfd.h │ │ │ │ ├── fanotify.h │ │ │ │ ├── fsuid.h │ │ │ │ ├── inotify.h │ │ │ │ ├── kd.h │ │ │ │ ├── klog.h │ │ │ │ ├── mount.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 │ │ │ │ ├── timerfd.h │ │ │ │ ├── timex.h │ │ │ │ ├── ttydefaults.h │ │ │ │ ├── user.h │ │ │ │ └── vt.h │ │ │ │ ├── syscall-names.list │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysconf.c │ │ │ │ ├── sysctl.c │ │ │ │ ├── sysctl.mk │ │ │ │ ├── sysdep-cancel.h │ │ │ │ ├── sysdep-vdso.h │ │ │ │ ├── sysdep.h │ │ │ │ ├── syslog.c │ │ │ │ ├── tcdrain.c │ │ │ │ ├── tcflow.c │ │ │ │ ├── tcflush.c │ │ │ │ ├── tcgetattr.c │ │ │ │ ├── tcgetpgrp.c │ │ │ │ ├── tcsendbrk.c │ │ │ │ ├── tcsetattr.c │ │ │ │ ├── tcsetpgrp.c │ │ │ │ ├── tee.c │ │ │ │ ├── termio.h │ │ │ │ ├── test-errno-linux.c │ │ │ │ ├── time.c │ │ │ │ ├── timer_create.c │ │ │ │ ├── timer_delete.c │ │ │ │ ├── timer_getoverr.c │ │ │ │ ├── timer_gettime.c │ │ │ │ ├── timer_routines.c │ │ │ │ ├── timer_settime.c │ │ │ │ ├── times.c │ │ │ │ ├── timespec_get.c │ │ │ │ ├── truncate.c │ │ │ │ ├── truncate64.c │ │ │ │ ├── tst-affinity-pid.c │ │ │ │ ├── tst-affinity-static.c │ │ │ │ ├── tst-affinity.c │ │ │ │ ├── tst-align-clone.c │ │ │ │ ├── tst-clone.c │ │ │ │ ├── tst-clone2.c │ │ │ │ ├── tst-clone3.c │ │ │ │ ├── tst-fallocate-common.c │ │ │ │ ├── tst-fallocate.c │ │ │ │ ├── tst-fallocate64.c │ │ │ │ ├── tst-fanotify.c │ │ │ │ ├── tst-getdents64.c │ │ │ │ ├── tst-getpid1.c │ │ │ │ ├── tst-gettid-kill.c │ │ │ │ ├── tst-gettid.c │ │ │ │ ├── tst-memfd_create.c │ │ │ │ ├── tst-mlock2.c │ │ │ │ ├── tst-mman-consts.py │ │ │ │ ├── tst-ofdlocks-compat.c │ │ │ │ ├── tst-ofdlocks.c │ │ │ │ ├── tst-personality.c │ │ │ │ ├── tst-pkey.c │ │ │ │ ├── tst-quota.c │ │ │ │ ├── tst-readdir64-compat.c │ │ │ │ ├── tst-rlimit-infinity.c │ │ │ │ ├── tst-setgetname.c │ │ │ │ ├── tst-signal-numbers.py │ │ │ │ ├── tst-skeleton-affinity.c │ │ │ │ ├── tst-skeleton-thread-affinity.c │ │ │ │ ├── tst-socket-consts.py │ │ │ │ ├── tst-sync_file_range.c │ │ │ │ ├── tst-syscall-list.sh │ │ │ │ ├── tst-sysconf-iov_max-uapi.c │ │ │ │ ├── tst-sysconf-iov_max.c │ │ │ │ ├── tst-tgkill.c │ │ │ │ ├── tst-thread-affinity-pthread.c │ │ │ │ ├── tst-thread-affinity-pthread2.c │ │ │ │ ├── tst-thread-affinity-sched.c │ │ │ │ ├── tst-ttyname.c │ │ │ │ ├── ttyname.c │ │ │ │ ├── ttyname.h │ │ │ │ ├── ttyname_r.c │ │ │ │ ├── ualarm.c │ │ │ │ ├── umount.c │ │ │ │ ├── umount2.S │ │ │ │ ├── unlockpt.c │ │ │ │ ├── updwtmp.c │ │ │ │ ├── ustat.c │ │ │ │ ├── utimensat.c │ │ │ │ ├── utimes.c │ │ │ │ ├── utmp_file.c │ │ │ │ ├── versionsort64.c │ │ │ │ ├── vfork.c │ │ │ │ ├── vmsplice.c │ │ │ │ ├── wait.c │ │ │ │ ├── wait3.c │ │ │ │ ├── waitid.c │ │ │ │ ├── waitpid.c │ │ │ │ ├── waitpid_nocancel.c │ │ │ │ ├── wordsize-64 │ │ │ │ ├── Versions │ │ │ │ ├── aio_read.c │ │ │ │ ├── aio_read64.c │ │ │ │ ├── aio_write.c │ │ │ │ ├── aio_write64.c │ │ │ │ ├── dl-fxstatat64.c │ │ │ │ ├── fstatfs64.c │ │ │ │ ├── fstatvfs.c │ │ │ │ ├── fstatvfs64.c │ │ │ │ ├── fxstat.c │ │ │ │ ├── fxstat64.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── fxstatat64.c │ │ │ │ ├── internal_statvfs64.c │ │ │ │ ├── lio_listio.c │ │ │ │ ├── lio_listio64.c │ │ │ │ ├── lxstat.c │ │ │ │ ├── lxstat64.c │ │ │ │ ├── sendfile64.c │ │ │ │ ├── statfs64.c │ │ │ │ ├── statvfs.c │ │ │ │ ├── statvfs64.c │ │ │ │ ├── statx_cp.c │ │ │ │ ├── syscalls.list │ │ │ │ ├── xstat.c │ │ │ │ └── xstat64.c │ │ │ │ ├── write.c │ │ │ │ ├── write_nocancel.c │ │ │ │ ├── writev.c │ │ │ │ ├── x86 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── arch-pkey.h │ │ │ │ ├── bits │ │ │ │ │ ├── a.out.h │ │ │ │ │ ├── environments.h │ │ │ │ │ ├── epoll.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── ipctypes.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── procfs-id.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ ├── sem-pad.h │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ ├── siginfo-arch.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── sysctl.h │ │ │ │ │ ├── timesize.h │ │ │ │ │ └── typesizes.h │ │ │ │ ├── cpu-features.c │ │ │ │ ├── dl-cet.h │ │ │ │ ├── dl-sysdep.c │ │ │ │ ├── elision-conf.c │ │ │ │ ├── elision-conf.h │ │ │ │ ├── elision-lock.c │ │ │ │ ├── elision-timed.c │ │ │ │ ├── elision-trylock.c │ │ │ │ ├── elision-unlock.c │ │ │ │ ├── force-elision.h │ │ │ │ ├── gettimeofday.c │ │ │ │ ├── hle.h │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ └── prctl.h │ │ │ │ ├── jmp_buf-ssp.sym │ │ │ │ ├── libc-vdso.h │ │ │ │ ├── lowlevellock.h │ │ │ │ ├── pkey_get.c │ │ │ │ ├── pkey_set.c │ │ │ │ ├── pthread_mutex_cond_lock.c │ │ │ │ ├── pthread_mutex_lock.c │ │ │ │ ├── pthread_mutex_timedlock.c │ │ │ │ ├── pthread_mutex_trylock.c │ │ │ │ ├── setjmpP.h │ │ │ │ ├── sys │ │ │ │ │ ├── debugreg.h │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── perm.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── reg.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ ├── user.h │ │ │ │ │ └── vm86.h │ │ │ │ ├── sysconf.c │ │ │ │ ├── time.c │ │ │ │ ├── tst-cet-property-1.c │ │ │ │ ├── tst-cet-property-2.c │ │ │ │ ├── tst-cet-property-dep-2.S │ │ │ │ ├── tst-cet-setcontext-1.c │ │ │ │ └── tst-saved_mask-1.c │ │ │ │ ├── x86_64 │ │ │ │ ├── 64 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── dl-librecon.h │ │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ ├── mmap_internal.h │ │ │ │ │ └── shlib-versions │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── __start_context.S │ │ │ │ ├── brk.c │ │ │ │ ├── cancellation.S │ │ │ │ ├── clone.S │ │ │ │ ├── compat-timer.h │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-cache.h │ │ │ │ ├── dl-procinfo.c │ │ │ │ ├── dl-procinfo.h │ │ │ │ ├── getcontext.S │ │ │ │ ├── init-first.c │ │ │ │ ├── ipc_priv.h │ │ │ │ ├── kernel-features.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── ldconfig.h │ │ │ │ ├── ldd-rewrite.sed │ │ │ │ ├── libc-cancellation.S │ │ │ │ ├── libmvec.abilist │ │ │ │ ├── librt-cancellation.S │ │ │ │ ├── makecontext.c │ │ │ │ ├── profil-counter.h │ │ │ │ ├── pthread_setaffinity.c │ │ │ │ ├── readelflib.c │ │ │ │ ├── register-dump.h │ │ │ │ ├── sched_setaffinity.c │ │ │ │ ├── setcontext.S │ │ │ │ ├── sigaction.c │ │ │ │ ├── sigaltstack-offsets.sym │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── sigprocmask.c │ │ │ │ ├── swapcontext.S │ │ │ │ ├── syscall.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.S │ │ │ │ ├── sysdep.h │ │ │ │ ├── timer_create.c │ │ │ │ ├── timer_delete.c │ │ │ │ ├── timer_getoverr.c │ │ │ │ ├── timer_gettime.c │ │ │ │ ├── timer_settime.c │ │ │ │ ├── ucontext_i.sym │ │ │ │ ├── vfork.S │ │ │ │ └── x32 │ │ │ │ │ ├── Implies │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── arch_prctl.c │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── dl-cache.h │ │ │ │ │ ├── fts.c │ │ │ │ │ ├── fts64.c │ │ │ │ │ ├── ftw.c │ │ │ │ │ ├── ftw64.c │ │ │ │ │ ├── jmp_buf-macros.h │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libcrypt.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ ├── lseek.S │ │ │ │ │ ├── lseek64.S │ │ │ │ │ ├── shlib-versions │ │ │ │ │ ├── syscalls.list │ │ │ │ │ ├── sysctl.mk │ │ │ │ │ ├── sysdep.h │ │ │ │ │ └── times.c │ │ │ │ ├── xmknod.c │ │ │ │ ├── xmknodat.c │ │ │ │ ├── xstat.c │ │ │ │ ├── xstat64.c │ │ │ │ ├── xstatconv.c │ │ │ │ └── xstatconv.h │ │ └── x86_64 │ │ │ ├── sysdep.S │ │ │ └── sysdep.h │ ├── wordsize-32 │ │ ├── Versions │ │ ├── bits │ │ │ └── wordsize.h │ │ ├── divdi3-symbol-hacks.h │ │ ├── divdi3.c │ │ ├── llabs.c │ │ ├── lldiv.c │ │ ├── strtoimax.c │ │ ├── strtoumax.c │ │ ├── wcstoimax.c │ │ └── wcstoumax.c │ ├── wordsize-64 │ │ ├── Makefile │ │ ├── Versions │ │ ├── bits │ │ │ └── wordsize.h │ │ ├── fts.c │ │ ├── fts64.c │ │ ├── ftw.c │ │ ├── ftw64.c │ │ ├── labs.c │ │ ├── ldiv.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 │ │ ├── tst-writev.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 │ │ ├── Makeconfig │ │ ├── Makefile │ │ ├── Versions │ │ ├── __longjmp_cancel.S │ │ ├── atomic-machine.h │ │ ├── bits │ │ │ ├── endian.h │ │ │ ├── floatn.h │ │ │ ├── flt-eval-method.h │ │ │ ├── fp-logb.h │ │ │ ├── indirect-return.h │ │ │ ├── link.h │ │ │ ├── select.h │ │ │ ├── semaphore.h │ │ │ ├── setjmp.h │ │ │ └── wordsize.h │ │ ├── cacheinfo.c │ │ ├── cet-tunables.h │ │ ├── check-cet.awk │ │ ├── configure │ │ ├── configure.ac │ │ ├── cpu-features-offsets.sym │ │ ├── cpu-features.c │ │ ├── cpu-features.h │ │ ├── cpu-tunables.c │ │ ├── dl-cet.c │ │ ├── dl-get-cpu-features.c │ │ ├── dl-hwcap.h │ │ ├── dl-lookupcfg.h │ │ ├── dl-procinfo.c │ │ ├── dl-procinfo.h │ │ ├── dl-procruntime.c │ │ ├── dl-prop.h │ │ ├── dl-tunables.list │ │ ├── elide.h │ │ ├── float128-abi.h │ │ ├── fpu │ │ │ ├── Makefile │ │ │ ├── bits │ │ │ │ ├── fenv.h │ │ │ │ └── math-vector.h │ │ │ ├── e_sqrtf128.c │ │ │ ├── fenv_private.h │ │ │ ├── finclude │ │ │ │ └── math-vector-fortran.h │ │ │ ├── fix-fp-int-compare-invalid.h │ │ │ ├── include │ │ │ │ └── bits │ │ │ │ │ └── fenv.h │ │ │ ├── math-barriers.h │ │ │ ├── math_private.h │ │ │ ├── powl_helper.c │ │ │ ├── s_sincosf_data.c │ │ │ ├── sfp-machine.h │ │ │ ├── sincosf_poly.h │ │ │ ├── test-fenv-clear-sse.c │ │ │ ├── test-fenv-sse-2.c │ │ │ ├── test-fenv-sse.c │ │ │ ├── test-fenv-x87.c │ │ │ ├── test-flt-eval-method-387.c │ │ │ ├── test-flt-eval-method-sse.c │ │ │ └── test-math-vector-sincos.h │ │ ├── fpu_control.h │ │ ├── hp-timing.h │ │ ├── init-arch.h │ │ ├── jmp_buf-ssp.sym │ │ ├── ldsodefs.h │ │ ├── libc-start.c │ │ ├── libc-start.h │ │ ├── link_map.h │ │ ├── linkmap.h │ │ ├── longjmp.c │ │ ├── nptl │ │ │ ├── bits │ │ │ │ └── pthreadtypes-arch.h │ │ │ ├── pt-longjmp.c │ │ │ └── tls-setup.h │ │ ├── string_private.h │ │ ├── sysdep.h │ │ ├── tininess.h │ │ ├── tst-cet-legacy-1.c │ │ ├── tst-cet-legacy-1a.c │ │ ├── tst-cet-legacy-2.c │ │ ├── tst-cet-legacy-2a.c │ │ ├── tst-cet-legacy-3.c │ │ ├── tst-cet-legacy-4.c │ │ ├── tst-cet-legacy-4a.c │ │ ├── tst-cet-legacy-4b.c │ │ ├── tst-cet-legacy-4c.c │ │ ├── tst-cet-legacy-5.c │ │ ├── tst-cet-legacy-5a.c │ │ ├── tst-cet-legacy-5b.c │ │ ├── tst-cet-legacy-6.c │ │ ├── tst-cet-legacy-6a.c │ │ ├── tst-cet-legacy-6b.c │ │ ├── tst-cet-legacy-mod-1.c │ │ ├── tst-cet-legacy-mod-2.c │ │ ├── tst-cet-legacy-mod-4.c │ │ ├── tst-cet-legacy-mod-5.c │ │ ├── tst-cet-legacy-mod-5a.c │ │ ├── tst-cet-legacy-mod-5b.c │ │ ├── tst-cet-legacy-mod-5c.c │ │ ├── tst-cet-legacy-mod-6.c │ │ ├── tst-cet-legacy-mod-6a.c │ │ ├── tst-cet-legacy-mod-6b.c │ │ ├── tst-cet-legacy-mod-6c.c │ │ ├── tst-cet-legacy-mod-6d.c │ │ ├── tst-get-cpu-features-static.c │ │ └── tst-get-cpu-features.c │ └── x86_64 │ │ ├── 64 │ │ └── Implies-after │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── ____longjmp_chk.S │ │ ├── __longjmp.S │ │ ├── _mcount.S │ │ ├── abort-instr.h │ │ ├── add_n.S │ │ ├── addmul_1.S │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── bzero.S │ │ ├── configure │ │ ├── configure.ac │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-irel.h │ │ ├── dl-machine.h │ │ ├── dl-procinfo.c │ │ ├── dl-runtime.c │ │ ├── dl-tls.c │ │ ├── dl-tls.h │ │ ├── dl-tlsdesc.S │ │ ├── dl-tlsdesc.h │ │ ├── dl-trampoline.S │ │ ├── dl-trampoline.h │ │ ├── ffs.c │ │ ├── ffsll.c │ │ ├── fpu │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── e_acosl.c │ │ ├── e_atan2l.c │ │ ├── e_exp10l.S │ │ ├── e_exp2l.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 │ │ ├── fegetmode.c │ │ ├── fegetround.c │ │ ├── feholdexcpt.c │ │ ├── fesetenv.c │ │ ├── fesetexcept.c │ │ ├── fesetmode.c │ │ ├── fesetround.c │ │ ├── feupdateenv.c │ │ ├── fgetexcptflg.c │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── libm-test-ulps │ │ ├── libm-test-ulps-name │ │ ├── math-tests-arch.h │ │ ├── math-tests-snan.h │ │ ├── math_ldbl.h │ │ ├── multiarch │ │ │ ├── Makefile │ │ │ ├── doasin-fma.c │ │ │ ├── doasin-fma4.c │ │ │ ├── dosincos-fma.c │ │ │ ├── dosincos-fma4.c │ │ │ ├── e_asin-fma.c │ │ │ ├── e_asin-fma4.c │ │ │ ├── e_asin.c │ │ │ ├── e_atan2-avx.c │ │ │ ├── e_atan2-fma.c │ │ │ ├── e_atan2-fma4.c │ │ │ ├── e_atan2.c │ │ │ ├── e_exp-avx.c │ │ │ ├── e_exp-fma.c │ │ │ ├── e_exp-fma4.c │ │ │ ├── e_exp.c │ │ │ ├── e_exp2f-fma.c │ │ │ ├── e_exp2f.c │ │ │ ├── e_expf-fma.c │ │ │ ├── e_expf.c │ │ │ ├── e_log-avx.c │ │ │ ├── e_log-fma.c │ │ │ ├── e_log-fma4.c │ │ │ ├── e_log.c │ │ │ ├── e_log2f-fma.c │ │ │ ├── e_log2f.c │ │ │ ├── e_logf-fma.c │ │ │ ├── e_logf.c │ │ │ ├── e_pow-fma.c │ │ │ ├── e_pow-fma4.c │ │ │ ├── e_pow.c │ │ │ ├── e_powf-fma.c │ │ │ ├── e_powf.c │ │ │ ├── ifunc-avx-fma4.h │ │ │ ├── ifunc-fma.h │ │ │ ├── ifunc-fma4.h │ │ │ ├── ifunc-mathvec-avx2.h │ │ │ ├── ifunc-mathvec-avx512.h │ │ │ ├── ifunc-mathvec-sse4_1.h │ │ │ ├── ifunc-sse4_1.h │ │ │ ├── mpa-avx.c │ │ │ ├── mpa-fma.c │ │ │ ├── mpa-fma4.c │ │ │ ├── mpatan-fma.c │ │ │ ├── mpatan-fma4.c │ │ │ ├── mpatan2-fma.c │ │ │ ├── mpatan2-fma4.c │ │ │ ├── mpsqrt-fma.c │ │ │ ├── mpsqrt-fma4.c │ │ │ ├── mptan-fma.c │ │ │ ├── mptan-fma4.c │ │ │ ├── s_atan-avx.c │ │ │ ├── s_atan-fma.c │ │ │ ├── s_atan-fma4.c │ │ │ ├── s_atan.c │ │ │ ├── s_ceil-c.c │ │ │ ├── s_ceil-sse4_1.S │ │ │ ├── s_ceil.c │ │ │ ├── s_ceilf-c.c │ │ │ ├── s_ceilf-sse4_1.S │ │ │ ├── s_ceilf.c │ │ │ ├── s_cosf-fma.c │ │ │ ├── s_cosf-sse2.c │ │ │ ├── s_cosf.c │ │ │ ├── s_floor-c.c │ │ │ ├── s_floor-sse4_1.S │ │ │ ├── s_floor.c │ │ │ ├── s_floorf-c.c │ │ │ ├── s_floorf-sse4_1.S │ │ │ ├── s_floorf.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmaf.c │ │ │ ├── s_nearbyint-c.c │ │ │ ├── s_nearbyint-sse4_1.S │ │ │ ├── s_nearbyint.c │ │ │ ├── s_nearbyintf-c.c │ │ │ ├── s_nearbyintf-sse4_1.S │ │ │ ├── s_nearbyintf.c │ │ │ ├── s_rint-c.c │ │ │ ├── s_rint-sse4_1.S │ │ │ ├── s_rint.c │ │ │ ├── s_rintf-c.c │ │ │ ├── s_rintf-sse4_1.S │ │ │ ├── s_rintf.c │ │ │ ├── s_sin-avx.c │ │ │ ├── s_sin-fma.c │ │ │ ├── s_sin-fma4.c │ │ │ ├── s_sin.c │ │ │ ├── s_sincosf-fma.c │ │ │ ├── s_sincosf-sse2.c │ │ │ ├── s_sincosf.c │ │ │ ├── s_sinf-fma.c │ │ │ ├── s_sinf-sse2.c │ │ │ ├── s_sinf.c │ │ │ ├── s_tan-avx.c │ │ │ ├── s_tan-fma.c │ │ │ ├── s_tan-fma4.c │ │ │ ├── s_tan.c │ │ │ ├── s_trunc-c.c │ │ │ ├── s_trunc-sse4_1.S │ │ │ ├── s_trunc.c │ │ │ ├── s_truncf-c.c │ │ │ ├── s_truncf-sse4_1.S │ │ │ ├── s_truncf.c │ │ │ ├── sincos32-fma.c │ │ │ ├── sincos32-fma4.c │ │ │ ├── svml_d_cos2_core-sse2.S │ │ │ ├── svml_d_cos2_core.c │ │ │ ├── svml_d_cos2_core_sse4.S │ │ │ ├── svml_d_cos4_core-sse.S │ │ │ ├── svml_d_cos4_core.c │ │ │ ├── svml_d_cos4_core_avx2.S │ │ │ ├── svml_d_cos8_core-avx2.S │ │ │ ├── svml_d_cos8_core.c │ │ │ ├── svml_d_cos8_core_avx512.S │ │ │ ├── svml_d_exp2_core-sse2.S │ │ │ ├── svml_d_exp2_core.c │ │ │ ├── svml_d_exp2_core_sse4.S │ │ │ ├── svml_d_exp4_core-sse.S │ │ │ ├── svml_d_exp4_core.c │ │ │ ├── svml_d_exp4_core_avx2.S │ │ │ ├── svml_d_exp8_core-avx2.S │ │ │ ├── svml_d_exp8_core.c │ │ │ ├── svml_d_exp8_core_avx512.S │ │ │ ├── svml_d_log2_core-sse2.S │ │ │ ├── svml_d_log2_core.c │ │ │ ├── svml_d_log2_core_sse4.S │ │ │ ├── svml_d_log4_core-sse.S │ │ │ ├── svml_d_log4_core.c │ │ │ ├── svml_d_log4_core_avx2.S │ │ │ ├── svml_d_log8_core-avx2.S │ │ │ ├── svml_d_log8_core.c │ │ │ ├── svml_d_log8_core_avx512.S │ │ │ ├── svml_d_pow2_core-sse2.S │ │ │ ├── svml_d_pow2_core.c │ │ │ ├── svml_d_pow2_core_sse4.S │ │ │ ├── svml_d_pow4_core-sse.S │ │ │ ├── svml_d_pow4_core.c │ │ │ ├── svml_d_pow4_core_avx2.S │ │ │ ├── svml_d_pow8_core-avx2.S │ │ │ ├── svml_d_pow8_core.c │ │ │ ├── svml_d_pow8_core_avx512.S │ │ │ ├── svml_d_sin2_core-sse2.S │ │ │ ├── svml_d_sin2_core.c │ │ │ ├── svml_d_sin2_core_sse4.S │ │ │ ├── svml_d_sin4_core-sse.S │ │ │ ├── svml_d_sin4_core.c │ │ │ ├── svml_d_sin4_core_avx2.S │ │ │ ├── svml_d_sin8_core-avx2.S │ │ │ ├── svml_d_sin8_core.c │ │ │ ├── svml_d_sin8_core_avx512.S │ │ │ ├── svml_d_sincos2_core-sse2.S │ │ │ ├── svml_d_sincos2_core.c │ │ │ ├── svml_d_sincos2_core_sse4.S │ │ │ ├── svml_d_sincos4_core-sse.S │ │ │ ├── svml_d_sincos4_core.c │ │ │ ├── svml_d_sincos4_core_avx2.S │ │ │ ├── svml_d_sincos8_core-avx2.S │ │ │ ├── svml_d_sincos8_core.c │ │ │ ├── svml_d_sincos8_core_avx512.S │ │ │ ├── svml_s_cosf16_core-avx2.S │ │ │ ├── svml_s_cosf16_core.c │ │ │ ├── svml_s_cosf16_core_avx512.S │ │ │ ├── svml_s_cosf4_core-sse2.S │ │ │ ├── svml_s_cosf4_core.c │ │ │ ├── svml_s_cosf4_core_sse4.S │ │ │ ├── svml_s_cosf8_core-sse.S │ │ │ ├── svml_s_cosf8_core.c │ │ │ ├── svml_s_cosf8_core_avx2.S │ │ │ ├── svml_s_expf16_core-avx2.S │ │ │ ├── svml_s_expf16_core.c │ │ │ ├── svml_s_expf16_core_avx512.S │ │ │ ├── svml_s_expf4_core-sse2.S │ │ │ ├── svml_s_expf4_core.c │ │ │ ├── svml_s_expf4_core_sse4.S │ │ │ ├── svml_s_expf8_core-sse.S │ │ │ ├── svml_s_expf8_core.c │ │ │ ├── svml_s_expf8_core_avx2.S │ │ │ ├── svml_s_logf16_core-avx2.S │ │ │ ├── svml_s_logf16_core.c │ │ │ ├── svml_s_logf16_core_avx512.S │ │ │ ├── svml_s_logf4_core-sse2.S │ │ │ ├── svml_s_logf4_core.c │ │ │ ├── svml_s_logf4_core_sse4.S │ │ │ ├── svml_s_logf8_core-sse.S │ │ │ ├── svml_s_logf8_core.c │ │ │ ├── svml_s_logf8_core_avx2.S │ │ │ ├── svml_s_powf16_core-avx2.S │ │ │ ├── svml_s_powf16_core.c │ │ │ ├── svml_s_powf16_core_avx512.S │ │ │ ├── svml_s_powf4_core-sse2.S │ │ │ ├── svml_s_powf4_core.c │ │ │ ├── svml_s_powf4_core_sse4.S │ │ │ ├── svml_s_powf8_core-sse.S │ │ │ ├── svml_s_powf8_core.c │ │ │ ├── svml_s_powf8_core_avx2.S │ │ │ ├── svml_s_sincosf16_core-avx2.S │ │ │ ├── svml_s_sincosf16_core.c │ │ │ ├── svml_s_sincosf16_core_avx512.S │ │ │ ├── svml_s_sincosf4_core-sse2.S │ │ │ ├── svml_s_sincosf4_core.c │ │ │ ├── svml_s_sincosf4_core_sse4.S │ │ │ ├── svml_s_sincosf8_core-sse.S │ │ │ ├── svml_s_sincosf8_core.c │ │ │ ├── svml_s_sincosf8_core_avx2.S │ │ │ ├── svml_s_sinf16_core-avx2.S │ │ │ ├── svml_s_sinf16_core.c │ │ │ ├── svml_s_sinf16_core_avx512.S │ │ │ ├── svml_s_sinf4_core-sse2.S │ │ │ ├── svml_s_sinf4_core.c │ │ │ ├── svml_s_sinf4_core_sse4.S │ │ │ ├── svml_s_sinf8_core-sse.S │ │ │ ├── svml_s_sinf8_core.c │ │ │ ├── svml_s_sinf8_core_avx2.S │ │ │ ├── w_exp.c │ │ │ ├── w_log.c │ │ │ └── w_pow.c │ │ ├── printf_fphex.c │ │ ├── s_atanl.c │ │ ├── s_ceill.S │ │ ├── s_copysign.S │ │ ├── s_copysignf.S │ │ ├── s_copysignl.S │ │ ├── s_expm1l.S │ │ ├── s_fabs.c │ │ ├── s_fabsf.c │ │ ├── s_fabsl.S │ │ ├── s_finitel.S │ │ ├── s_floorl.S │ │ ├── s_fmax.S │ │ ├── s_fmaxf.S │ │ ├── s_fmaxl.S │ │ ├── s_fmin.S │ │ ├── s_fminf.S │ │ ├── s_fminl.S │ │ ├── s_fpclassifyl.c │ │ ├── s_isinfl.c │ │ ├── s_isnanl.c │ │ ├── s_llrint.S │ │ ├── s_llrintf.S │ │ ├── s_llrintl.S │ │ ├── s_log1pl.S │ │ ├── s_logbl.c │ │ ├── s_lrint.S │ │ ├── s_lrintf.S │ │ ├── s_lrintl.S │ │ ├── s_nearbyintl.S │ │ ├── s_nextafterl.c │ │ ├── s_nexttoward.c │ │ ├── s_nexttowardf.c │ │ ├── s_rintl.c │ │ ├── s_scalbnl.S │ │ ├── s_signbit.S │ │ ├── s_signbitf.S │ │ ├── s_significandl.c │ │ ├── s_truncl.S │ │ ├── svml_d_cos2_core.S │ │ ├── svml_d_cos4_core.S │ │ ├── svml_d_cos4_core_avx.S │ │ ├── svml_d_cos8_core.S │ │ ├── svml_d_exp2_core.S │ │ ├── svml_d_exp4_core.S │ │ ├── svml_d_exp4_core_avx.S │ │ ├── svml_d_exp8_core.S │ │ ├── svml_d_exp_data.S │ │ ├── svml_d_exp_data.h │ │ ├── svml_d_log2_core.S │ │ ├── svml_d_log4_core.S │ │ ├── svml_d_log4_core_avx.S │ │ ├── svml_d_log8_core.S │ │ ├── svml_d_log_data.S │ │ ├── svml_d_log_data.h │ │ ├── svml_d_pow2_core.S │ │ ├── svml_d_pow4_core.S │ │ ├── svml_d_pow4_core_avx.S │ │ ├── svml_d_pow8_core.S │ │ ├── svml_d_pow_data.S │ │ ├── svml_d_pow_data.h │ │ ├── svml_d_sin2_core.S │ │ ├── svml_d_sin4_core.S │ │ ├── svml_d_sin4_core_avx.S │ │ ├── svml_d_sin8_core.S │ │ ├── svml_d_sincos2_core.S │ │ ├── svml_d_sincos4_core.S │ │ ├── svml_d_sincos4_core_avx.S │ │ ├── svml_d_sincos8_core.S │ │ ├── svml_d_trig_data.S │ │ ├── svml_d_trig_data.h │ │ ├── svml_d_wrapper_impl.h │ │ ├── svml_finite_alias.S │ │ ├── svml_s_cosf16_core.S │ │ ├── svml_s_cosf4_core.S │ │ ├── svml_s_cosf8_core.S │ │ ├── svml_s_cosf8_core_avx.S │ │ ├── svml_s_expf16_core.S │ │ ├── svml_s_expf4_core.S │ │ ├── svml_s_expf8_core.S │ │ ├── svml_s_expf8_core_avx.S │ │ ├── svml_s_expf_data.S │ │ ├── svml_s_expf_data.h │ │ ├── svml_s_logf16_core.S │ │ ├── svml_s_logf4_core.S │ │ ├── svml_s_logf8_core.S │ │ ├── svml_s_logf8_core_avx.S │ │ ├── svml_s_logf_data.S │ │ ├── svml_s_logf_data.h │ │ ├── svml_s_powf16_core.S │ │ ├── svml_s_powf4_core.S │ │ ├── svml_s_powf8_core.S │ │ ├── svml_s_powf8_core_avx.S │ │ ├── svml_s_powf_data.S │ │ ├── svml_s_powf_data.h │ │ ├── svml_s_sincosf16_core.S │ │ ├── svml_s_sincosf4_core.S │ │ ├── svml_s_sincosf8_core.S │ │ ├── svml_s_sincosf8_core_avx.S │ │ ├── svml_s_sinf16_core.S │ │ ├── svml_s_sinf4_core.S │ │ ├── svml_s_sinf8_core.S │ │ ├── svml_s_sinf8_core_avx.S │ │ ├── svml_s_trig_data.S │ │ ├── svml_s_trig_data.h │ │ ├── svml_s_wrapper_impl.h │ │ ├── test-double-libmvec-alias-avx-main.c │ │ ├── test-double-libmvec-alias-avx-mod.c │ │ ├── test-double-libmvec-alias-avx.c │ │ ├── test-double-libmvec-alias-avx2-main.c │ │ ├── test-double-libmvec-alias-avx2-mod.c │ │ ├── test-double-libmvec-alias-avx2.c │ │ ├── test-double-libmvec-alias-avx512-main.c │ │ ├── test-double-libmvec-alias-avx512-mod.c │ │ ├── test-double-libmvec-alias-avx512.c │ │ ├── test-double-libmvec-alias-main.c │ │ ├── test-double-libmvec-alias-mod.c │ │ ├── test-double-libmvec-alias.c │ │ ├── test-double-libmvec-sincos-avx-main.c │ │ ├── test-double-libmvec-sincos-avx.c │ │ ├── test-double-libmvec-sincos-avx2-main.c │ │ ├── test-double-libmvec-sincos-avx2.c │ │ ├── test-double-libmvec-sincos-avx512-main.c │ │ ├── test-double-libmvec-sincos-avx512.c │ │ ├── test-double-libmvec-sincos-main.c │ │ ├── test-double-libmvec-sincos.c │ │ ├── test-double-vlen2-wrappers.c │ │ ├── test-double-vlen4-avx2-wrappers.c │ │ ├── test-double-vlen4-avx2.h │ │ ├── test-double-vlen4-wrappers.c │ │ ├── test-double-vlen4.h │ │ ├── test-double-vlen8-wrappers.c │ │ ├── test-double-vlen8.h │ │ ├── test-float-libmvec-alias-avx-main.c │ │ ├── test-float-libmvec-alias-avx-mod.c │ │ ├── test-float-libmvec-alias-avx.c │ │ ├── test-float-libmvec-alias-avx2-main.c │ │ ├── test-float-libmvec-alias-avx2-mod.c │ │ ├── test-float-libmvec-alias-avx2.c │ │ ├── test-float-libmvec-alias-avx512-main.c │ │ ├── test-float-libmvec-alias-avx512-mod.c │ │ ├── test-float-libmvec-alias-avx512.c │ │ ├── test-float-libmvec-alias-main.c │ │ ├── test-float-libmvec-alias-mod.c │ │ ├── test-float-libmvec-alias.c │ │ ├── test-float-libmvec-sincosf-avx-main.c │ │ ├── test-float-libmvec-sincosf-avx.c │ │ ├── test-float-libmvec-sincosf-avx2-main.c │ │ ├── test-float-libmvec-sincosf-avx2.c │ │ ├── test-float-libmvec-sincosf-avx512-main.c │ │ ├── test-float-libmvec-sincosf-avx512.c │ │ ├── test-float-libmvec-sincosf-main.c │ │ ├── test-float-libmvec-sincosf.c │ │ ├── test-float-vlen16-wrappers.c │ │ ├── test-float-vlen16.h │ │ ├── test-float-vlen4-wrappers.c │ │ ├── test-float-vlen8-avx2-wrappers.c │ │ ├── test-float-vlen8-avx2.h │ │ ├── test-float-vlen8-wrappers.c │ │ ├── test-float-vlen8.h │ │ ├── test-libmvec-alias-mod.c │ │ └── x86_64-math-asm.h │ │ ├── htonl.S │ │ ├── ifuncmain8.c │ │ ├── ifuncmod8.c │ │ ├── isa.h │ │ ├── jmpbuf-offsets.h │ │ ├── jmpbuf-unwind.h │ │ ├── l10nflist.c │ │ ├── ldbl2mpn.c │ │ ├── link-defines.sym │ │ ├── locale-defines.sym │ │ ├── localplt.data │ │ ├── lshift.S │ │ ├── machine-gmon.h │ │ ├── memchr.S │ │ ├── memcmp.S │ │ ├── memcopy.h │ │ ├── memcpy.S │ │ ├── memcpy_chk.S │ │ ├── memmove.S │ │ ├── memmove_chk.S │ │ ├── mempcpy.S │ │ ├── mempcpy_chk.S │ │ ├── memrchr.S │ │ ├── memset.S │ │ ├── memset_chk.S │ │ ├── memusage.h │ │ ├── mp_clz_tab.c │ │ ├── mul_1.S │ │ ├── multiarch │ │ ├── Makefile │ │ ├── bcopy.S │ │ ├── ifunc-avx2.h │ │ ├── ifunc-impl-list.c │ │ ├── ifunc-memcmp.h │ │ ├── ifunc-memmove.h │ │ ├── ifunc-memset.h │ │ ├── ifunc-sse4_2.h │ │ ├── ifunc-strcasecmp.h │ │ ├── ifunc-strcpy.h │ │ ├── ifunc-wmemset.h │ │ ├── memchr-avx2.S │ │ ├── memchr-sse2.S │ │ ├── memchr.c │ │ ├── memcmp-avx2-movbe.S │ │ ├── memcmp-sse2.S │ │ ├── memcmp-sse4.S │ │ ├── memcmp-ssse3.S │ │ ├── memcmp.c │ │ ├── memcpy-ssse3-back.S │ │ ├── memcpy-ssse3.S │ │ ├── memcpy.c │ │ ├── memcpy_chk-nonshared.S │ │ ├── memcpy_chk.c │ │ ├── memmove-avx-unaligned-erms.S │ │ ├── memmove-avx512-no-vzeroupper.S │ │ ├── memmove-avx512-unaligned-erms.S │ │ ├── memmove-sse2-unaligned-erms.S │ │ ├── memmove-ssse3-back.S │ │ ├── memmove-ssse3.S │ │ ├── memmove-vec-unaligned-erms.S │ │ ├── memmove.c │ │ ├── memmove_chk-nonshared.S │ │ ├── memmove_chk.c │ │ ├── mempcpy.c │ │ ├── mempcpy_chk-nonshared.S │ │ ├── mempcpy_chk.c │ │ ├── memrchr-avx2.S │ │ ├── memrchr-sse2.S │ │ ├── memrchr.c │ │ ├── memset-avx2-unaligned-erms.S │ │ ├── memset-avx512-no-vzeroupper.S │ │ ├── memset-avx512-unaligned-erms.S │ │ ├── memset-sse2-unaligned-erms.S │ │ ├── memset-vec-unaligned-erms.S │ │ ├── memset.c │ │ ├── memset_chk-nonshared.S │ │ ├── memset_chk.c │ │ ├── rawmemchr-avx2.S │ │ ├── rawmemchr-sse2.S │ │ ├── rawmemchr.c │ │ ├── sched_cpucount.c │ │ ├── stpcpy-avx2.S │ │ ├── stpcpy-sse2-unaligned.S │ │ ├── stpcpy-sse2.S │ │ ├── stpcpy-ssse3.S │ │ ├── stpcpy.c │ │ ├── stpncpy-avx2.S │ │ ├── stpncpy-c.c │ │ ├── stpncpy-sse2-unaligned.S │ │ ├── stpncpy-ssse3.S │ │ ├── stpncpy.c │ │ ├── strcasecmp.c │ │ ├── strcasecmp_l-avx.S │ │ ├── strcasecmp_l-sse2.S │ │ ├── strcasecmp_l-sse4_2.S │ │ ├── strcasecmp_l-ssse3.S │ │ ├── strcasecmp_l.c │ │ ├── strcat-avx2.S │ │ ├── strcat-sse2-unaligned.S │ │ ├── strcat-sse2.S │ │ ├── strcat-ssse3.S │ │ ├── strcat.c │ │ ├── strchr-avx2.S │ │ ├── strchr-sse2-no-bsf.S │ │ ├── strchr-sse2.S │ │ ├── strchr.c │ │ ├── strchrnul-avx2.S │ │ ├── strchrnul-sse2.S │ │ ├── strchrnul.c │ │ ├── strcmp-avx2.S │ │ ├── strcmp-sse2-unaligned.S │ │ ├── strcmp-sse2.S │ │ ├── strcmp-sse42.S │ │ ├── strcmp-sse4_2.S │ │ ├── strcmp-ssse3.S │ │ ├── strcmp.c │ │ ├── strcpy-avx2.S │ │ ├── strcpy-sse2-unaligned.S │ │ ├── strcpy-sse2.S │ │ ├── strcpy-ssse3.S │ │ ├── strcpy.c │ │ ├── strcspn-c.c │ │ ├── strcspn-sse2.S │ │ ├── strcspn.c │ │ ├── strlen-avx2.S │ │ ├── strlen-sse2.S │ │ ├── strlen.c │ │ ├── strncase.c │ │ ├── strncase_l-avx.S │ │ ├── strncase_l-sse2.S │ │ ├── strncase_l-sse4_2.S │ │ ├── strncase_l-ssse3.S │ │ ├── strncase_l.c │ │ ├── strncat-avx2.S │ │ ├── strncat-c.c │ │ ├── strncat-sse2-unaligned.S │ │ ├── strncat-ssse3.S │ │ ├── strncat.c │ │ ├── strncmp-avx2.S │ │ ├── strncmp-sse2.S │ │ ├── strncmp-sse4_2.S │ │ ├── strncmp-ssse3.S │ │ ├── strncmp.c │ │ ├── strncpy-avx2.S │ │ ├── strncpy-c.c │ │ ├── strncpy-sse2-unaligned.S │ │ ├── strncpy-ssse3.S │ │ ├── strncpy.c │ │ ├── strnlen-avx2.S │ │ ├── strnlen-sse2.S │ │ ├── strnlen.c │ │ ├── strpbrk-c.c │ │ ├── strpbrk-sse2.S │ │ ├── strpbrk.c │ │ ├── strrchr-avx2.S │ │ ├── strrchr-sse2.S │ │ ├── strrchr.c │ │ ├── strspn-c.c │ │ ├── strspn-sse2.S │ │ ├── strspn.c │ │ ├── strstr-sse2-unaligned.S │ │ ├── strstr.c │ │ ├── test-multiarch.c │ │ ├── varshift.c │ │ ├── varshift.h │ │ ├── wcschr-avx2.S │ │ ├── wcschr-sse2.S │ │ ├── wcschr.c │ │ ├── wcscmp-avx2.S │ │ ├── wcscmp-sse2.S │ │ ├── wcscmp.c │ │ ├── wcscpy-c.c │ │ ├── wcscpy-ssse3.S │ │ ├── wcscpy.c │ │ ├── wcslen-avx2.S │ │ ├── wcslen-sse2.S │ │ ├── wcslen.c │ │ ├── wcsncmp-avx2.S │ │ ├── wcsncmp-sse2.c │ │ ├── wcsncmp.c │ │ ├── wcsnlen-avx2.S │ │ ├── wcsnlen-c.c │ │ ├── wcsnlen-sse4_1.S │ │ ├── wcsnlen.c │ │ ├── wcsrchr-avx2.S │ │ ├── wcsrchr-sse2.S │ │ ├── wcsrchr.c │ │ ├── wmemchr-avx2.S │ │ ├── wmemchr-sse2.S │ │ ├── wmemchr.c │ │ ├── wmemcmp-avx2-movbe.S │ │ ├── wmemcmp-c.c │ │ ├── wmemcmp-sse4.S │ │ ├── wmemcmp-ssse3.S │ │ ├── wmemcmp.c │ │ ├── wmemset.c │ │ ├── wmemset_chk-nonshared.S │ │ └── wmemset_chk.c │ │ ├── nptl │ │ ├── Makefile │ │ ├── pthread-offsets.h │ │ ├── pthread_spin_init.c │ │ ├── pthread_spin_lock.S │ │ ├── pthread_spin_trylock.S │ │ ├── pthread_spin_unlock.S │ │ ├── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ │ ├── preconfigure │ │ ├── preconfigure.ac │ │ ├── rawmemchr.S │ │ ├── rshift.S │ │ ├── rtld-offsets.sym │ │ ├── sched_cpucount.c │ │ ├── setjmp.S │ │ ├── stack-aliasing.h │ │ ├── stackguard-macros.h │ │ ├── stackinfo.h │ │ ├── start.S │ │ ├── stpcpy.S │ │ ├── strcasecmp.S │ │ ├── strcasecmp_l-nonascii.c │ │ ├── strcasecmp_l.S │ │ ├── strcat.S │ │ ├── strchr.S │ │ ├── strchrnul.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strcspn.S │ │ ├── strlen.S │ │ ├── strncase.S │ │ ├── strncase_l-nonascii.c │ │ ├── strncase_l.S │ │ ├── strncmp.S │ │ ├── strnlen.S │ │ ├── strpbrk.S │ │ ├── strrchr.S │ │ ├── strspn.S │ │ ├── sub_n.S │ │ ├── submul_1.S │ │ ├── sysdep.h │ │ ├── tls-macros.h │ │ ├── tls_get_addr.S │ │ ├── tlsdesc.c │ │ ├── tlsdesc.sym │ │ ├── tst-audit.h │ │ ├── tst-audit10-aux.c │ │ ├── tst-audit10.c │ │ ├── tst-audit3.c │ │ ├── tst-audit4-aux.c │ │ ├── tst-audit4.c │ │ ├── tst-audit5.c │ │ ├── tst-audit6.c │ │ ├── tst-audit7.c │ │ ├── tst-auditmod10a.c │ │ ├── tst-auditmod10b.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-avx-aux.c │ │ ├── tst-avx.c │ │ ├── tst-avx512-aux.c │ │ ├── tst-avx512.c │ │ ├── tst-avx512mod.c │ │ ├── tst-avxmod.c │ │ ├── tst-mallocalign1.c │ │ ├── tst-platform-1.c │ │ ├── tst-platformmod-1.c │ │ ├── tst-platformmod-2.c │ │ ├── tst-quad1.c │ │ ├── tst-quad1pie.c │ │ ├── tst-quad2.c │ │ ├── tst-quad2pie.c │ │ ├── tst-quadmod1.S │ │ ├── tst-quadmod1pie.S │ │ ├── tst-quadmod2.S │ │ ├── tst-quadmod2pie.S │ │ ├── tst-split-dynreloc.c │ │ ├── tst-split-dynreloc.lds │ │ ├── tst-sse.c │ │ ├── tst-ssemod.c │ │ ├── tst-stack-align.h │ │ ├── tst-x86_64-1.c │ │ ├── tst-x86_64mod-1.c │ │ ├── wcschr.S │ │ ├── wcscmp.S │ │ ├── wcslen.S │ │ ├── wcsrchr.S │ │ ├── wmemset.S │ │ ├── wmemset_chk.S │ │ ├── wordcopy.c │ │ └── x32 │ │ ├── Implies-after │ │ ├── Makefile │ │ ├── _itoa.h │ │ ├── divdi3.c │ │ ├── dl-machine.h │ │ ├── ffs.c │ │ ├── fpu │ │ ├── s_lrint.S │ │ ├── s_lrintf.S │ │ └── s_lrintl.S │ │ ├── gmp-mparam.h │ │ ├── symbol-hacks.h │ │ ├── sysdep.h │ │ ├── test-size_t.h │ │ ├── tst-size_t-memchr.c │ │ ├── tst-size_t-memcmp-2.c │ │ ├── tst-size_t-memcmp.c │ │ ├── tst-size_t-memcpy.c │ │ ├── tst-size_t-memrchr.c │ │ ├── tst-size_t-memset.c │ │ ├── tst-size_t-strncasecmp.c │ │ ├── tst-size_t-strncmp.c │ │ ├── tst-size_t-strncpy.c │ │ ├── tst-size_t-strnlen.c │ │ ├── tst-size_t-wcsncmp.c │ │ ├── tst-size_t-wcsnlen.c │ │ ├── tst-size_t-wmemchr.c │ │ ├── tst-size_t-wmemcmp.c │ │ └── tst-size_t-wmemset.c ├── sysvipc │ ├── Makefile │ ├── Versions │ ├── ftok.c │ ├── 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 │ ├── test-sysvmsg.c │ ├── test-sysvsem.c │ └── test-sysvshm.c ├── tags ├── termios │ ├── Makefile │ ├── Versions │ ├── cfmakeraw.c │ ├── cfsetspeed.c │ ├── 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 ├── test-skeleton.c ├── time │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── adjtime.c │ ├── alt_digit.c │ ├── asctime.c │ ├── bits │ │ └── types │ │ │ ├── clock_t.h │ │ │ ├── clockid_t.h │ │ │ ├── struct_itimerspec.h │ │ │ ├── struct_timespec.h │ │ │ ├── struct_timeval.h │ │ │ ├── struct_tm.h │ │ │ ├── time_t.h │ │ │ └── timer_t.h │ ├── bug-asctime.c │ ├── bug-asctime_r.c │ ├── bug-getdate1.c │ ├── bug-mktime1.c │ ├── bug-mktime4.c │ ├── clock.c │ ├── clocktest.c │ ├── ctime.c │ ├── ctime_r.c │ ├── datemsk │ ├── difftime.c │ ├── dysize.c │ ├── era.c │ ├── ftime.c │ ├── getdate.c │ ├── getitimer.c │ ├── gettimeofday.c │ ├── gmtime.c │ ├── lc-time-cleanup.c │ ├── localtime.c │ ├── mktime-internal.h │ ├── mktime.c │ ├── offtime.c │ ├── setitimer.c │ ├── settimeofday.c │ ├── stime.c │ ├── strftime.c │ ├── strftime_l.c │ ├── strptime.c │ ├── strptime_l.c │ ├── sys │ │ ├── time.h │ │ └── timeb.h │ ├── test_time.c │ ├── time.c │ ├── time.h │ ├── timegm.c │ ├── timespec_get.c │ ├── tst-ftime.c │ ├── tst-ftime_l.c │ ├── tst-getdate.c │ ├── tst-mktime.c │ ├── tst-mktime2.c │ ├── tst-mktime3.c │ ├── tst-posixtz.c │ ├── tst-strftime.c │ ├── tst-strftime2.c │ ├── tst-strftime3.c │ ├── tst-strptime-whitespace.c │ ├── tst-strptime.c │ ├── tst-strptime2.c │ ├── tst-strptime3.c │ ├── tst-tzname.c │ ├── tst-y2039.c │ ├── tst_wcsftime.c │ ├── tzfile.c │ ├── tzset.c │ ├── wcsftime.c │ └── wcsftime_l.c ├── timezone │ ├── Makefile │ ├── README │ ├── africa │ ├── antarctica │ ├── asia │ ├── australasia │ ├── backward │ ├── etcetera │ ├── europe │ ├── factory │ ├── iso3166.tab │ ├── leapseconds │ ├── northamerica │ ├── pacificnew │ ├── private.h │ ├── simplebackw │ ├── solar87 │ ├── solar88 │ ├── solar89 │ ├── southamerica │ ├── systemv │ ├── test-tz.c │ ├── testdata │ │ ├── XT1 │ │ ├── XT2 │ │ ├── XT3 │ │ └── XT4 │ ├── tst-timezone.c │ ├── tst-tzset.c │ ├── tzfile.h │ ├── tzselect.ksh │ ├── yearistype │ ├── zdump.c │ ├── zic.c │ └── zone.tab ├── version.h ├── wcsmbs │ ├── Depend │ ├── Makefile │ ├── Versions │ ├── bits │ │ ├── types │ │ │ ├── __mbstate_t.h │ │ │ ├── mbstate_t.h │ │ │ └── wint_t.h │ │ ├── wchar-ldbl.h │ │ └── wchar2.h │ ├── btowc.c │ ├── c16rtomb.c │ ├── c32rtomb.c │ ├── isoc99_fwscanf.c │ ├── isoc99_swscanf.c │ ├── isoc99_vfwscanf.c │ ├── isoc99_vswscanf.c │ ├── isoc99_vwscanf.c │ ├── isoc99_wscanf.c │ ├── mbrlen.c │ ├── mbrtoc16.c │ ├── mbrtoc32.c │ ├── mbrtowc.c │ ├── mbsinit.c │ ├── mbsnrtowcs.c │ ├── mbsrtowcs.c │ ├── mbsrtowcs_l.c │ ├── test-char-types.c │ ├── test-wcpcpy.c │ ├── test-wcpncpy.c │ ├── test-wcscat.c │ ├── test-wcschr.c │ ├── test-wcschrnul.c │ ├── test-wcscmp.c │ ├── test-wcscpy.c │ ├── test-wcscspn.c │ ├── test-wcslen.c │ ├── test-wcsncat.c │ ├── test-wcsncmp.c │ ├── test-wcsncpy.c │ ├── test-wcsnlen.c │ ├── test-wcspbrk.c │ ├── test-wcsrchr.c │ ├── test-wcsspn.c │ ├── test-wmemchr.c │ ├── test-wmemcmp.c │ ├── test-wmemset.c │ ├── tst-btowc.c │ ├── tst-c16-surrogate.c │ ├── tst-c16c32-1.c │ ├── tst-c32-state.c │ ├── tst-fgetwc-after-eof.c │ ├── tst-mbrtowc.c │ ├── tst-mbrtowc2.c │ ├── tst-mbsrtowcs.c │ ├── tst-wchar-h.c │ ├── tst-wcpncpy.c │ ├── tst-wcrtomb.c │ ├── tst-wcsnlen.c │ ├── tst-wcstod-nan-locale.c │ ├── tst-wcstod-nan-sign.c │ ├── tst-wcstod-round.c │ ├── tst-wcstof.c │ ├── tst-wcstol-locale.c │ ├── uchar.h │ ├── 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 │ ├── wcsmbs-tst1.c │ ├── wcsmbsload.c │ ├── wcsmbsload.h │ ├── 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 │ ├── wcstod_nan.c │ ├── wcstof.c │ ├── wcstof_l.c │ ├── wcstof_nan.c │ ├── wcstok.c │ ├── wcstol.c │ ├── wcstol_l.c │ ├── wcstold.c │ ├── wcstold_l.c │ ├── wcstold_nan.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 │ ├── Makefile │ ├── Versions │ ├── bits │ └── wctype-wchar.h │ ├── bug-wctypeh.c │ ├── iswctype.c │ ├── iswctype_l.c │ ├── test_wcfuncs.c │ ├── test_wctype.c │ ├── towctrans.c │ ├── towctrans_l.c │ ├── wcfuncs.c │ ├── wcfuncs_l.c │ ├── wchar-lookup.h │ ├── wctrans.c │ ├── wctrans_l.c │ ├── wctype.c │ ├── wctype.h │ └── wctype_l.c └── libc-manual.pdf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/README.md -------------------------------------------------------------------------------- /assets/gotplt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/assets/gotplt.png -------------------------------------------------------------------------------- /assets/relation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/assets/relation.png -------------------------------------------------------------------------------- /glibc-2.30.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30.tar.xz -------------------------------------------------------------------------------- /glibc-2.30/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/.gitignore -------------------------------------------------------------------------------- /glibc-2.30/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/COPYING -------------------------------------------------------------------------------- /glibc-2.30/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/ChangeLog -------------------------------------------------------------------------------- /glibc-2.30/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/INSTALL -------------------------------------------------------------------------------- /glibc-2.30/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/LICENSES -------------------------------------------------------------------------------- /glibc-2.30/MAINTAINERS: -------------------------------------------------------------------------------- 1 | See https://sourceware.org/glibc/wiki/MAINTAINERS 2 | -------------------------------------------------------------------------------- /glibc-2.30/Makeconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/Makeconfig -------------------------------------------------------------------------------- /glibc-2.30/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/Makefile -------------------------------------------------------------------------------- /glibc-2.30/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/Makefile.in -------------------------------------------------------------------------------- /glibc-2.30/Makerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/Makerules -------------------------------------------------------------------------------- /glibc-2.30/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/NEWS -------------------------------------------------------------------------------- /glibc-2.30/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/README -------------------------------------------------------------------------------- /glibc-2.30/Rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/Rules -------------------------------------------------------------------------------- /glibc-2.30/abi-tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/abi-tags -------------------------------------------------------------------------------- /glibc-2.30/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/aclocal.m4 -------------------------------------------------------------------------------- /glibc-2.30/argp/argp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/argp/argp.h -------------------------------------------------------------------------------- /glibc-2.30/benchtests/strcoll-inputs/filelist#C: -------------------------------------------------------------------------------- 1 | filelist#en_US.UTF-8 -------------------------------------------------------------------------------- /glibc-2.30/bits/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/dlfcn.h -------------------------------------------------------------------------------- /glibc-2.30/bits/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/errno.h -------------------------------------------------------------------------------- /glibc-2.30/bits/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/fcntl.h -------------------------------------------------------------------------------- /glibc-2.30/bits/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/fenv.h -------------------------------------------------------------------------------- /glibc-2.30/bits/hwcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/hwcap.h -------------------------------------------------------------------------------- /glibc-2.30/bits/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/in.h -------------------------------------------------------------------------------- /glibc-2.30/bits/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/ipc.h -------------------------------------------------------------------------------- /glibc-2.30/bits/link.h: -------------------------------------------------------------------------------- 1 | #error "Architecture-specific definition needed." 2 | -------------------------------------------------------------------------------- /glibc-2.30/bits/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/mman.h -------------------------------------------------------------------------------- /glibc-2.30/bits/msq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/msq.h -------------------------------------------------------------------------------- /glibc-2.30/bits/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/netdb.h -------------------------------------------------------------------------------- /glibc-2.30/bits/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/param.h -------------------------------------------------------------------------------- /glibc-2.30/bits/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/poll.h -------------------------------------------------------------------------------- /glibc-2.30/bits/pthreadtypes.h: -------------------------------------------------------------------------------- 1 | /* No thread support. */ 2 | -------------------------------------------------------------------------------- /glibc-2.30/bits/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/sched.h -------------------------------------------------------------------------------- /glibc-2.30/bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/sem.h -------------------------------------------------------------------------------- /glibc-2.30/bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/shm.h -------------------------------------------------------------------------------- /glibc-2.30/bits/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/stat.h -------------------------------------------------------------------------------- /glibc-2.30/bits/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/time.h -------------------------------------------------------------------------------- /glibc-2.30/bits/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/utmp.h -------------------------------------------------------------------------------- /glibc-2.30/bits/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/bits/wchar.h -------------------------------------------------------------------------------- /glibc-2.30/catgets/Depend: -------------------------------------------------------------------------------- 1 | intl 2 | -------------------------------------------------------------------------------- /glibc-2.30/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/config.h.in -------------------------------------------------------------------------------- /glibc-2.30/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/configure -------------------------------------------------------------------------------- /glibc-2.30/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/configure.ac -------------------------------------------------------------------------------- /glibc-2.30/conform/data/stdnoreturn.h-data: -------------------------------------------------------------------------------- 1 | #if defined ISO11 2 | macro noreturn 3 | #endif 4 | -------------------------------------------------------------------------------- /glibc-2.30/crypt/cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/crypt/cert.c -------------------------------------------------------------------------------- /glibc-2.30/crypt/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/crypt/md5.c -------------------------------------------------------------------------------- /glibc-2.30/crypt/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/crypt/md5.h -------------------------------------------------------------------------------- /glibc-2.30/crypt/ufc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/crypt/ufc.c -------------------------------------------------------------------------------- /glibc-2.30/csu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/csu/Makefile -------------------------------------------------------------------------------- /glibc-2.30/csu/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/csu/Versions -------------------------------------------------------------------------------- /glibc-2.30/csu/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/csu/errno.c -------------------------------------------------------------------------------- /glibc-2.30/csu/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/csu/init.c -------------------------------------------------------------------------------- /glibc-2.30/csu/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/csu/start.c -------------------------------------------------------------------------------- /glibc-2.30/csu/sysdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/csu/sysdep.c -------------------------------------------------------------------------------- /glibc-2.30/debug/Depend: -------------------------------------------------------------------------------- 1 | localedata 2 | -------------------------------------------------------------------------------- /glibc-2.30/debug/tst-chk2.c: -------------------------------------------------------------------------------- 1 | #define _FORTIFY_SOURCE 1 2 | #include "tst-chk1.c" 3 | -------------------------------------------------------------------------------- /glibc-2.30/debug/tst-chk3.c: -------------------------------------------------------------------------------- 1 | #define _FORTIFY_SOURCE 2 2 | #include "tst-chk1.c" 3 | -------------------------------------------------------------------------------- /glibc-2.30/debug/tst-chk4.cc: -------------------------------------------------------------------------------- 1 | #include "tst-chk1.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/debug/tst-chk5.cc: -------------------------------------------------------------------------------- 1 | #define _FORTIFY_SOURCE 1 2 | #include "tst-chk1.c" 3 | -------------------------------------------------------------------------------- /glibc-2.30/debug/tst-chk6.cc: -------------------------------------------------------------------------------- 1 | #define _FORTIFY_SOURCE 2 2 | #include "tst-chk1.c" 3 | -------------------------------------------------------------------------------- /glibc-2.30/debug/tst-lfschk1.c: -------------------------------------------------------------------------------- 1 | #define _FILE_OFFSET_BITS 64 2 | #include "tst-chk1.c" 3 | -------------------------------------------------------------------------------- /glibc-2.30/debug/tst-lfschk2.c: -------------------------------------------------------------------------------- 1 | #define _FILE_OFFSET_BITS 64 2 | #include "tst-chk2.c" 3 | -------------------------------------------------------------------------------- /glibc-2.30/debug/tst-lfschk3.c: -------------------------------------------------------------------------------- 1 | #define _FILE_OFFSET_BITS 64 2 | #include "tst-chk3.c" 3 | -------------------------------------------------------------------------------- /glibc-2.30/debug/tst-lfschk4.cc: -------------------------------------------------------------------------------- 1 | #define _FILE_OFFSET_BITS 64 2 | #include "tst-chk1.c" 3 | -------------------------------------------------------------------------------- /glibc-2.30/debug/tst-lfschk5.cc: -------------------------------------------------------------------------------- 1 | #define _FILE_OFFSET_BITS 64 2 | #include "tst-chk2.c" 3 | -------------------------------------------------------------------------------- /glibc-2.30/debug/tst-lfschk6.cc: -------------------------------------------------------------------------------- 1 | #define _FILE_OFFSET_BITS 64 2 | #include "tst-chk3.c" 3 | -------------------------------------------------------------------------------- /glibc-2.30/dirent/tst-scandir64.c: -------------------------------------------------------------------------------- 1 | #define D(x) x##64 2 | #include "tst-scandir.c" 3 | -------------------------------------------------------------------------------- /glibc-2.30/dlfcn/glreflib3.c: -------------------------------------------------------------------------------- 1 | #include "glreflib1.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/dlfcn/sdladdr.c: -------------------------------------------------------------------------------- 1 | #include "dladdr.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/dlfcn/sdladdr1.c: -------------------------------------------------------------------------------- 1 | #include "dladdr1.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/dlfcn/sdlclose.c: -------------------------------------------------------------------------------- 1 | #include "dlclose.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/dlfcn/sdlerror.c: -------------------------------------------------------------------------------- 1 | #include "dlerror.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/dlfcn/sdlfreeres.c: -------------------------------------------------------------------------------- 1 | #include "dlfreeres.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/dlfcn/sdlinfo.c: -------------------------------------------------------------------------------- 1 | #include "dlinfo.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/dlfcn/sdlmopen.c: -------------------------------------------------------------------------------- 1 | #include "dlmopen.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/dlfcn/sdlopen.c: -------------------------------------------------------------------------------- 1 | #include "dlopen.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/dlfcn/sdlsym.c: -------------------------------------------------------------------------------- 1 | #include "dlsym.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/dlfcn/sdlvsym.c: -------------------------------------------------------------------------------- 1 | #include "dlvsym.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/Makefile -------------------------------------------------------------------------------- /glibc-2.30/elf/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/Versions -------------------------------------------------------------------------------- /glibc-2.30/elf/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/cache.c -------------------------------------------------------------------------------- /glibc-2.30/elf/circlemod1a.c: -------------------------------------------------------------------------------- 1 | #include "circlemod1.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/circlemod3a.c: -------------------------------------------------------------------------------- 1 | #include "circlemod3.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/dep1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/dep1.c -------------------------------------------------------------------------------- /glibc-2.30/elf/dep2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/dep2.c -------------------------------------------------------------------------------- /glibc-2.30/elf/dep3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/dep3.c -------------------------------------------------------------------------------- /glibc-2.30/elf/dep4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/dep4.c -------------------------------------------------------------------------------- /glibc-2.30/elf/dl-brk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/dl-brk.c -------------------------------------------------------------------------------- /glibc-2.30/elf/dl-dst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/dl-dst.h -------------------------------------------------------------------------------- /glibc-2.30/elf/dl-sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/dl-sym.c -------------------------------------------------------------------------------- /glibc-2.30/elf/dl-tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/dl-tls.c -------------------------------------------------------------------------------- /glibc-2.30/elf/dl-trampoline.c: -------------------------------------------------------------------------------- 1 | #error "Architecture specific PLT trampolines must be defined." 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/do-rel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/do-rel.h -------------------------------------------------------------------------------- /glibc-2.30/elf/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/elf.h -------------------------------------------------------------------------------- /glibc-2.30/elf/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/filter.c -------------------------------------------------------------------------------- /glibc-2.30/elf/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/global.c -------------------------------------------------------------------------------- /glibc-2.30/elf/ifuncmain9pic.c: -------------------------------------------------------------------------------- 1 | #include "ifuncmain9.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/ifuncmain9picstatic.c: -------------------------------------------------------------------------------- 1 | #include "ifuncmain9.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/ifuncmain9pie.c: -------------------------------------------------------------------------------- 1 | #include "ifuncmain9.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/ifuncmain9static.c: -------------------------------------------------------------------------------- 1 | #include "ifuncmain9.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/interp.c -------------------------------------------------------------------------------- /glibc-2.30/elf/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/link.h -------------------------------------------------------------------------------- /glibc-2.30/elf/next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/next.c -------------------------------------------------------------------------------- /glibc-2.30/elf/nodel2mod3.c: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/nodlopenmod.c: -------------------------------------------------------------------------------- 1 | int a = 42; 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/noload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/noload.c -------------------------------------------------------------------------------- /glibc-2.30/elf/order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/order.c -------------------------------------------------------------------------------- /glibc-2.30/elf/order2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/order2.c -------------------------------------------------------------------------------- /glibc-2.30/elf/pldd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/pldd.c -------------------------------------------------------------------------------- /glibc-2.30/elf/reldep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/reldep.c -------------------------------------------------------------------------------- /glibc-2.30/elf/reldep8mod3.c: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/reldep9mod2.c: -------------------------------------------------------------------------------- 1 | void baz (void) 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /glibc-2.30/elf/reldep9mod3.c: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/rtld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/rtld.c -------------------------------------------------------------------------------- /glibc-2.30/elf/sln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/elf/sln.c -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-absolute-zero-lib.lds: -------------------------------------------------------------------------------- 1 | "absolute" = 0; 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-array1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-array1.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-array2.c: -------------------------------------------------------------------------------- 1 | #include "tst-array1.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-array3.c: -------------------------------------------------------------------------------- 1 | #include "tst-array1.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-array5-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-array5.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-audit1.c: -------------------------------------------------------------------------------- 1 | #include "../io/pwd.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-audit8.c: -------------------------------------------------------------------------------- 1 | #include "../io/pwd.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-ldconfig-bad-aux-cache.root/postclean.req: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-leaks1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-leaks1.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-pie1.c: -------------------------------------------------------------------------------- 1 | int 2 | foo (void) 3 | { 4 | return 34; 5 | } 6 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-prelink.exp: -------------------------------------------------------------------------------- 1 | /0 stdout 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-ptrguard1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-ptrguard1.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-sonamemove-linkmod1.map: -------------------------------------------------------------------------------- 1 | SONAME_MOVE { 2 | global: moved_function; 3 | }; 4 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-sonamemove-runmod1.map: -------------------------------------------------------------------------------- 1 | SONAME_MOVE { 2 | global: other_function; 3 | }; 4 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-sonamemove-runmod2.map: -------------------------------------------------------------------------------- 1 | SONAME_MOVE { 2 | global: moved_function; 3 | }; 4 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-stackguard1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-stackguard1.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-tls1-static-non-pie.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls1.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-tls1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls1.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-tls2-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls2.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-tls9-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls9.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-tlsalign-extern-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tlsalign-extern.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-tlsalign-static.c: -------------------------------------------------------------------------------- 1 | #define NO_LIB 2 | #include "tst-tlsalign.c" 3 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-tlsmod10.c: -------------------------------------------------------------------------------- 1 | #include "tst-tlsmod8.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-tlsmod14b.c: -------------------------------------------------------------------------------- 1 | #define FCT in_dso2 2 | #include "tst-tlsmod14a.c" 3 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-tlsmod16a.c: -------------------------------------------------------------------------------- 1 | int __thread tlsvar; 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-tlsmod5.c: -------------------------------------------------------------------------------- 1 | #include "tls-macros.h" 2 | 3 | COMMON_INT_DEF(foo); 4 | -------------------------------------------------------------------------------- /glibc-2.30/elf/tst-tlsmod6.c: -------------------------------------------------------------------------------- 1 | #include "tls-macros.h" 2 | 3 | COMMON_INT_DEF(bar); 4 | -------------------------------------------------------------------------------- /glibc-2.30/elf/unload3mod1.c: -------------------------------------------------------------------------------- 1 | int dummy1; 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/unload3mod2.c: -------------------------------------------------------------------------------- 1 | int dummy2; 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/unload7mod2.c: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /glibc-2.30/elf/unload8mod1x.c: -------------------------------------------------------------------------------- 1 | int mod1x; 2 | -------------------------------------------------------------------------------- /glibc-2.30/gmon/tst-gmon-pie.c: -------------------------------------------------------------------------------- 1 | #include "tst-gmon.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/gmon/tst-gmon-static-pie.c: -------------------------------------------------------------------------------- 1 | #include "tst-gmon.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/gmon/tst-gmon-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-gmon.c" 2 | -------------------------------------------------------------------------------- /glibc-2.30/grp/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lastweek/source-glibc/HEAD/glibc-2.30/grp/grp.h -------------------------------------------------------------------------------- /glibc-2.30/hesiod/Depend: -------------------------------------------------------------------------------- 1 | nss 2 | resolv 3 | -------------------------------------------------------------------------------- /glibc-2.30/htl/shlib-versions: -------------------------------------------------------------------------------- 1 | libpthread=0.3 2 | -------------------------------------------------------------------------------- /glibc-2.30/hurd/stack_chk_fail_local.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/iconvdata/Depend: -------------------------------------------------------------------------------- 1 | iconv 2 | localedata 3 | -------------------------------------------------------------------------------- /glibc-2.30/iconvdata/EUC-JP.irreversible: -------------------------------------------------------------------------------- 1 | 0x5C 0x00A5 2 | 0x7E 0x203E 3 | -------------------------------------------------------------------------------- /glibc-2.30/iconvdata/EUC-KR.irreversible: -------------------------------------------------------------------------------- 1 | 0xA3DC 0x20A9 2 | -------------------------------------------------------------------------------- /glibc-2.30/iconvdata/EUC-TW.irreversible: -------------------------------------------------------------------------------- 1 | 0x8EA3A1B8 0x5344 2 | -------------------------------------------------------------------------------- /glibc-2.30/iconvdata/IBM1132.irreversible: -------------------------------------------------------------------------------- 1 | 0x70 0x006B 2 | -------------------------------------------------------------------------------- /glibc-2.30/iconvdata/IBM1133.irreversible: -------------------------------------------------------------------------------- 1 | 0xDF 0x006B 2 | -------------------------------------------------------------------------------- /glibc-2.30/iconvdata/IBM1163.irreversible: -------------------------------------------------------------------------------- 1 | 0xAF 0x203E 2 | 0xD0 0x00D0 3 | -------------------------------------------------------------------------------- /glibc-2.30/iconvdata/TSCII.irreversible: -------------------------------------------------------------------------------- 1 | 0xAD 0x0B87 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/ar.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/arpa/ftp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/arpa/telnet.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/arpa/tftp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/cpu-set.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/err-ldbl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/error-ldbl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/error.h: -------------------------------------------------------------------------------- 1 | #include "../../misc/bits/error.h" 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/fcntl2.h: -------------------------------------------------------------------------------- 1 | #include "../../io/bits/fcntl2.h" 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/getopt_core.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/getopt_ext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/monetary-ldbl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/mqueue2.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/poll2.h: -------------------------------------------------------------------------------- 1 | #include "../../io/bits/poll2.h" 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/printf-ldbl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/select2.h: -------------------------------------------------------------------------------- 1 | #include "../../misc/bits/select2.h" 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/stab.def: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/statx-generic.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/statx.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/stdio-ldbl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/stdio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/stdio2.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/syslog-ldbl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/types/FILE.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/types/__FILE.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/types/__fpos64_t.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/types/__fpos_t.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/types/__mbstate_t.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/types/__sigval_t.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /glibc-2.30/include/bits/types/clock_t.h: -------------------------------------------------------------------------------- 1 | #include