├── .b4-config ├── .clang-format ├── .gitattributes ├── .gitignore ├── CONTRIBUTED-BY ├── COPYING.LESSERv2 ├── COPYING.LIB ├── COPYINGv2 ├── COPYINGv3 ├── ChangeLog.old ├── ChangeLog.1 ├── ChangeLog.10 ├── ChangeLog.11 ├── ChangeLog.12 ├── ChangeLog.13 ├── ChangeLog.14 ├── ChangeLog.15 ├── ChangeLog.16 ├── ChangeLog.17 ├── ChangeLog.18 ├── ChangeLog.19 ├── ChangeLog.2 ├── ChangeLog.20 ├── ChangeLog.21 ├── ChangeLog.22 ├── ChangeLog.23 ├── ChangeLog.24 ├── ChangeLog.25 ├── ChangeLog.26 ├── ChangeLog.27 ├── ChangeLog.28 ├── ChangeLog.29 ├── ChangeLog.3 ├── ChangeLog.30 ├── ChangeLog.31 ├── 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.help ├── Makefile.in ├── Makerules ├── NEWS ├── README ├── Rules ├── SECURITY.md ├── SHARED-FILES ├── abi-tags ├── aclocal.m4 ├── advisories ├── GLIBC-SA-2023-0001 ├── GLIBC-SA-2023-0002 ├── GLIBC-SA-2023-0003 ├── GLIBC-SA-2023-0004 ├── GLIBC-SA-2023-0005 ├── GLIBC-SA-2024-0001 ├── GLIBC-SA-2024-0002 ├── GLIBC-SA-2024-0003 ├── GLIBC-SA-2024-0004 ├── GLIBC-SA-2024-0005 ├── GLIBC-SA-2024-0006 ├── GLIBC-SA-2024-0007 ├── GLIBC-SA-2024-0008 ├── GLIBC-SA-2025-0001 ├── GLIBC-SA-2025-0002 ├── GLIBC-SA-2025-0003 ├── GLIBC-SA-2025-0004 ├── GLIBC-SA-2025-0005 └── README ├── 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 ├── __libc_assert_fail.c ├── assert-perr.c ├── assert.c ├── assert.h ├── test-assert-2.c ├── test-assert-c99.c ├── test-assert-gnu99.c ├── test-assert-perr.c ├── test-assert-variadic.c ├── test-assert.c ├── tst-assert-c++.cc ├── tst-assert-g++.cc └── tst-assert-sa-2025-0001.c ├── benchtests ├── Makefile ├── README ├── acos-inputs ├── acosf-inputs ├── acosh-inputs ├── acoshf-inputs ├── acospi-inputs ├── acospif-inputs ├── asin-inputs ├── asinf-inputs ├── asinh-inputs ├── asinhf-inputs ├── asinpi-inputs ├── asinpif-inputs ├── atan-inputs ├── atan2-inputs ├── atan2f-inputs ├── atan2pi-inputs ├── atan2pif-inputs ├── atanf-inputs ├── atanh-inputs ├── atanhf-inputs ├── atanpi-inputs ├── atanpif-inputs ├── bench-arc4random.c ├── bench-bsearch.c ├── bench-bzero-large.c ├── bench-bzero.c ├── bench-calloc-simple.c ├── bench-calloc-tcache.c ├── bench-calloc-thread.c ├── bench-dl-elf-hash.c ├── bench-dl-new-hash.c ├── bench-fclose.c ├── bench-hash-funcs-kernel.h ├── bench-hash-funcs.c ├── bench-libmvec-skeleton.c ├── bench-malloc-simple.c ├── bench-malloc-tcache.c ├── bench-malloc-thread.c ├── bench-math-inlines.c ├── bench-memccpy.c ├── bench-memchr.c ├── bench-memcmp.c ├── bench-memcmpeq.c ├── bench-memcpy-large.c ├── bench-memcpy-random.c ├── bench-memcpy.c ├── bench-memmem.c ├── bench-memmove-large.c ├── bench-memmove.c ├── bench-mempcpy.c ├── bench-memrchr.c ├── bench-memset-large.c ├── bench-memset-random.c ├── bench-memset-zero-large.c ├── bench-memset-zero.c ├── bench-memset.c ├── bench-nss-hash.c ├── bench-pthread-lock-base.c ├── bench-pthread-locks.c ├── bench-pthread-mutex-lock.c ├── bench-pthread-mutex-trylock.c ├── bench-pthread-spin-lock.c ├── bench-pthread-spin-trylock.c ├── bench-random-lock.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-random.c ├── 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-wcrtomb.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 ├── cbrt-inputs ├── cbrtf-inputs ├── cbrtl-inputs ├── ceil-inputs ├── ceilf-inputs ├── cos-inputs ├── cosf-inputs ├── cosh-inputs ├── coshf-inputs ├── cospi-inputs ├── cospif-inputs ├── erf-inputs ├── erfc-inputs ├── erfcf-inputs ├── erff-inputs ├── exp-inputs ├── exp10-inputs ├── exp10f-inputs ├── exp10m1-inputs ├── exp10m1f-inputs ├── exp2-inputs ├── exp2f-inputs ├── exp2m1-inputs ├── exp2m1f-inputs ├── expf-inputs ├── expf128-inputs ├── expl-inputs ├── expm1-inputs ├── expm1f-inputs ├── ffs-inputs ├── ffsll-inputs ├── floor-inputs ├── floorf-inputs ├── fma-inputs ├── fmaf-inputs ├── fmal-inputs ├── fmax-inputs ├── fmaxf-inputs ├── fmin-inputs ├── fminf-inputs ├── fmod-inputs ├── fmodf-inputs ├── frexp-inputs ├── frexpf-inputs ├── frexpl-inputs ├── hypot-inputs ├── hypotf-inputs ├── ilogb-inputs ├── ilogbf-inputs ├── ilogbf128-inputs ├── inet_ntop_ipv4-inputs ├── inet_ntop_ipv4-source.c ├── inet_ntop_ipv6-inputs ├── inet_ntop_ipv6-source.c ├── isfinite-inputs ├── isinf-inputs ├── isnan-inputs ├── j0-inputs ├── j1-inputs ├── json-lib.c ├── json-lib.h ├── lgamma-inputs ├── lgammaf-inputs ├── lgammaf_r-inputs ├── libmvec │ ├── acos-inputs │ ├── acosf-inputs │ ├── acosh-inputs │ ├── acoshf-inputs │ ├── acospi-inputs │ ├── acospif-inputs │ ├── asin-inputs │ ├── asinf-inputs │ ├── asinh-inputs │ ├── asinhf-inputs │ ├── asinpi-inputs │ ├── asinpif-inputs │ ├── atan-inputs │ ├── atan2-inputs │ ├── atan2f-inputs │ ├── atan2pi-inputs │ ├── atan2pif-inputs │ ├── atanf-inputs │ ├── atanh-inputs │ ├── atanhf-inputs │ ├── atanpi-inputs │ ├── atanpif-inputs │ ├── cbrt-inputs │ ├── cbrtf-inputs │ ├── cos-inputs │ ├── cosf-inputs │ ├── cosh-inputs │ ├── coshf-inputs │ ├── cospi-inputs │ ├── cospif-inputs │ ├── erf-inputs │ ├── erfc-inputs │ ├── erfcf-inputs │ ├── erff-inputs │ ├── exp-inputs │ ├── exp10-inputs │ ├── exp10f-inputs │ ├── exp10m1-inputs │ ├── exp10m1f-inputs │ ├── exp2-inputs │ ├── exp2f-inputs │ ├── exp2m1-inputs │ ├── exp2m1f-inputs │ ├── expf-inputs │ ├── expm1-inputs │ ├── expm1f-inputs │ ├── hypot-inputs │ ├── hypotf-inputs │ ├── log-inputs │ ├── log10-inputs │ ├── log10f-inputs │ ├── log10p1-inputs │ ├── log10p1f-inputs │ ├── log1p-inputs │ ├── log1pf-inputs │ ├── log2-inputs │ ├── log2f-inputs │ ├── log2p1-inputs │ ├── log2p1f-inputs │ ├── logf-inputs │ ├── pow-inputs │ ├── powf-inputs │ ├── rsqrt-inputs │ ├── rsqrtf-inputs │ ├── sin-inputs │ ├── sinf-inputs │ ├── sinh-inputs │ ├── sinhf-inputs │ ├── sinpi-inputs │ ├── sinpif-inputs │ ├── tan-inputs │ ├── tanf-inputs │ ├── tanh-inputs │ ├── tanhf-inputs │ ├── tanpi-inputs │ └── tanpif-inputs ├── llrint-inputs ├── llrintf-inputs ├── log-inputs ├── log10-inputs ├── log10f-inputs ├── log10p1-inputs ├── log10p1f-inputs ├── log1p-inputs ├── log1pf-inputs ├── log2-inputs ├── log2f-inputs ├── log2l-inputs ├── log2p1-inputs ├── log2p1f-inputs ├── logb-inputs ├── logbf-inputs ├── logf-inputs ├── lrint-inputs ├── lrintf-inputs ├── modf-inputs ├── modff-inputs ├── nearbyint-inputs ├── nearbyintf-inputs ├── pow-inputs ├── powf-inputs ├── powf128-inputs ├── powl-inputs ├── pthread_once-inputs ├── pthread_once-source.c ├── remainder-inputs ├── remainderf-inputs ├── rint-inputs ├── rintf-inputs ├── roundeven-inputs ├── roundevenf-inputs ├── rsqrt-inputs ├── rsqrtf-inputs ├── scripts │ ├── bench.py │ ├── benchout.schema.json │ ├── benchout_strings.schema.json │ ├── compare_bench.py │ ├── compare_strings.py │ ├── import_bench.py │ ├── plot_strings.py │ └── validate_benchout.py ├── sin-inputs ├── sincos-inputs ├── sincosf-inputs ├── sinf-inputs ├── sinf128-inputs ├── sinh-inputs ├── sinhf-inputs ├── sinpi-inputs ├── sinpif-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 ├── tanf-inputs ├── tanh-inputs ├── tanhf-inputs ├── tanpi-inputs ├── tanpif-inputs ├── tgamma-inputs ├── tgammaf-inputs ├── thread_create-inputs ├── thread_create-source.c ├── trunc-inputs ├── truncf-inputs ├── y0-inputs └── y1-inputs ├── bits ├── atomic_wide_counter.h ├── byteswap.h ├── confname.h ├── dirent.h ├── dirent_ext.h ├── dl_find_object.h ├── dlfcn.h ├── elfclass.h ├── endian.h ├── environments.h ├── errno.h ├── fcntl.h ├── fenv.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 ├── link_lavcurrent.h ├── local_lim.h ├── long-double.h ├── math-vector.h ├── mathdef.h ├── mman.h ├── mman_ext.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-arch.h ├── signum-generic.h ├── sigstack.h ├── sigstksz.h ├── sigthread.h ├── sockaddr.h ├── socket.h ├── spawn_ext.h ├── ss_flags.h ├── stat.h ├── statfs.h ├── statvfs.h ├── stdint-intn.h ├── stdint-least.h ├── stdint-uintn.h ├── stdlib-bsearch.h ├── syslog-path.h ├── sysmacros.h ├── termios-baud.h ├── termios.h ├── time.h ├── time64.h ├── timesize.h ├── types │ ├── __sigset_t.h │ ├── error_t.h │ ├── once_flag.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 ├── 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 ├── csu ├── Makefile ├── Versions ├── abi-note.c ├── check_fds.c ├── dso_handle.c ├── errno-loc.c ├── errno.c ├── gmon-start.c ├── init-first.c ├── init.c ├── libc-start.c ├── libc-tls.c ├── rtld-sizes.sym ├── sem_t-align.sym ├── 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 ├── tst-ctype-tls-dlmopen.c ├── tst-ctype-tls-dlopen-static.c ├── tst-ctype-tls-mod.c └── tst-ctype-tls-skeleton.c ├── debug ├── Depend ├── Makefile ├── Versions ├── asprintf_chk.c ├── backtrace-tst.c ├── backtrace.c ├── backtracesyms.c ├── backtracesymsfd.c ├── 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 ├── inet_ntop_chk.c ├── inet_pton_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 ├── memset_explicit_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 ├── 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 ├── strlcat_chk.c ├── strlcpy_chk.c ├── strncat_chk.c ├── strncpy_chk.c ├── swprintf_chk.c ├── test-stpcpy_chk.c ├── test-strcpy_chk.c ├── tst-backtrace.h ├── tst-backtrace1.c ├── tst-backtrace2.c ├── tst-backtrace3.c ├── tst-backtrace4.c ├── tst-backtrace5.c ├── tst-backtrace6.c ├── tst-chk-cancel.c ├── tst-fortify-syslog.c ├── tst-fortify-wide.c ├── tst-fortify.c ├── tst-longjmp_chk.c ├── tst-longjmp_chk2.c ├── tst-longjmp_chk3.c ├── tst-realpath-chk.c ├── tst-sprintf-fortify-rdonly-dlopen.c ├── tst-sprintf-fortify-rdonly-mod.c ├── tst-sprintf-fortify-rdonly-static.c ├── tst-sprintf-fortify-rdonly.c ├── tst-sprintf-fortify-unchecked.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 ├── wcpcpy_chk.c ├── wcpncpy_chk.c ├── wcrtomb_chk.c ├── wcscat_chk.c ├── wcscpy_chk.c ├── wcslcat_chk.c ├── wcslcpy_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-closedir-leaks.c ├── tst-fdopendir.c ├── tst-fdopendir2.c ├── tst-readdir-long.c ├── tst-readdir-zero-inode.c ├── tst-rewinddir.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 ├── dlerror.h ├── dlfcn.h ├── 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 ├── libc_dlerror_result.c ├── libdl-compat.c ├── modatexit.c ├── modcxaatexit.c ├── moddummy1.c ├── moddummy2.c ├── modstatic.c ├── modstatic2.c ├── modstatic3.c ├── modstatic5.c ├── sdlfreeres.c ├── tst-dladdr.c ├── tst-dlinfo-phdr.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 ├── argv0test.c ├── 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-audit.c ├── dl-brk.c ├── dl-cache.c ├── dl-call-libc-early-init.c ├── dl-call_fini.c ├── dl-catch.c ├── dl-close.c ├── dl-compat.c ├── dl-debug-symbols.S ├── dl-debug.c ├── dl-debug_state.c ├── dl-deps.c ├── dl-diagnostics-cpu.c ├── dl-diagnostics-kernel.c ├── dl-diagnostics.c ├── dl-diagnostics.h ├── dl-dst.h ├── dl-early_allocate.c ├── dl-environ.c ├── dl-exception.c ├── dl-execstack-tunable.c ├── dl-execstack.c ├── dl-find_object.c ├── dl-find_object.h ├── dl-fini.c ├── dl-hwcaps-subdirs.c ├── dl-hwcaps.c ├── dl-hwcaps.h ├── dl-hwcaps_split.c ├── dl-init.c ├── dl-is_dso.h ├── dl-iterate_cpu.h ├── dl-iteratephdr.c ├── dl-libc.c ├── dl-libc_freeres.c ├── dl-load.c ├── dl-load.h ├── dl-lookup-direct.c ├── dl-lookup.c ├── dl-machine-reject-phdr.h ├── dl-main.h ├── dl-map-segments.h ├── dl-minimal-malloc.c ├── dl-minimal.c ├── dl-misc.c ├── dl-mutex.c ├── dl-object.c ├── dl-open.c ├── dl-origin.c ├── dl-printf.c ├── dl-profile.c ├── dl-readonly-area.c ├── dl-reloc-static-pie.c ├── dl-reloc.c ├── dl-runtime.c ├── dl-runtime.h ├── dl-sbrk.c ├── dl-scope.c ├── dl-setup_hash.c ├── dl-sort-maps.c ├── dl-static-tls.h ├── dl-support.c ├── dl-sym-post.h ├── dl-sym.c ├── dl-sysdep.c ├── dl-thread_gscope_wait.c ├── dl-tls.c ├── dl-tls_block_align.h ├── dl-tls_init_tp.c ├── dl-trampoline.c ├── dl-tunable-types.h ├── dl-tunables.c ├── dl-tunables.h ├── dl-tunables.list ├── dl-unmap-segments.h ├── dl-usage.c ├── dl-version.c ├── dl-write.c ├── dl-writev.h ├── do-rel.h ├── dso-sort-tests-1.def ├── dso-sort-tests-2.def ├── dso-sort-tests-all.py ├── dynamic-link.h ├── elf.h ├── enbl-secure.c ├── endswith.h ├── 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 ├── libc-dl-profstub.c ├── libc-dl_find_object.c ├── libc-early-init.h ├── libc_early_init.c ├── liborigin-mod.c ├── libtracemod1-1.c ├── libtracemod2-1.c ├── libtracemod3-1.c ├── libtracemod4-1.c ├── libtracemod5-1.c ├── link.h ├── loadfail.c ├── loadtest.c ├── ltglobmod1.c ├── ltglobmod2.c ├── markermodMARKER-VALUE.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 ├── nextmod3.c ├── nextmod3.map ├── 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 ├── rtld_static_init.c ├── setup-vdso.h ├── simple-dl-hash.h ├── simple-dl-new-hash.h ├── sln.c ├── sofini.c ├── sotruss-lib.c ├── sotruss.sh ├── sprof.c ├── static-stubs.c ├── stringtable.c ├── stringtable.h ├── stringtable_free.c ├── testobj.h ├── testobj1.c ├── testobj1_1.c ├── testobj2.c ├── testobj3.c ├── testobj4.c ├── testobj5.c ├── testobj6.c ├── 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-align3.c ├── tst-alignmod.c ├── tst-alignmod2.c ├── tst-alignmod3.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-asm-helper.h ├── tst-audit-tlsdesc-dlopen.c ├── tst-audit-tlsdesc-dlopen2.c ├── tst-audit-tlsdesc-mod1.c ├── tst-audit-tlsdesc-mod2.c ├── tst-audit-tlsdesc.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-audit14.c ├── tst-audit14.exp ├── tst-audit14a.c ├── tst-audit15.c ├── tst-audit15.exp ├── tst-audit16.c ├── tst-audit16.exp ├── tst-audit17.c ├── tst-audit18.c ├── tst-audit18mod.c ├── tst-audit19a.c ├── tst-audit19b.c ├── tst-audit19bmod.c ├── tst-audit2.c ├── tst-audit20.c ├── tst-audit21.c ├── tst-audit22.c ├── tst-audit23.c ├── tst-audit23mod.c ├── tst-audit24a.c ├── tst-audit24amod1.c ├── tst-audit24amod2.c ├── tst-audit24b.c ├── tst-audit24bmod1.c ├── tst-audit24bmod2.c ├── tst-audit24c.c ├── tst-audit24d.c ├── tst-audit24dmod1.c ├── tst-audit24dmod2.c ├── tst-audit24dmod3.c ├── tst-audit24dmod4.c ├── tst-audit25.h ├── tst-audit25a.c ├── tst-audit25b.c ├── tst-audit25mod1.c ├── tst-audit25mod2.c ├── tst-audit25mod3.c ├── tst-audit25mod4.c ├── tst-audit28.c ├── tst-audit8.c ├── tst-audit9.c ├── tst-auditlogmod-1.c ├── tst-auditlogmod-2.c ├── tst-auditlogmod-3.c ├── tst-auditmany.c ├── tst-auditmanymod.h ├── tst-auditmanymod1.c ├── tst-auditmanymod2.c ├── tst-auditmanymod3.c ├── tst-auditmanymod4.c ├── tst-auditmanymod5.c ├── tst-auditmanymod6.c ├── tst-auditmanymod7.c ├── tst-auditmanymod8.c ├── tst-auditmanymod9.c ├── tst-auditmod-tlsdesc.c ├── tst-auditmod-tlsdesc2.c ├── tst-auditmod1.c ├── tst-auditmod11.c ├── tst-auditmod12.c ├── tst-auditmod17.c ├── tst-auditmod18.c ├── tst-auditmod19a.c ├── tst-auditmod19b.c ├── tst-auditmod20.c ├── tst-auditmod21a.c ├── tst-auditmod21b.c ├── tst-auditmod22.c ├── tst-auditmod23.c ├── tst-auditmod24.h ├── tst-auditmod24a.c ├── tst-auditmod24b.c ├── tst-auditmod24c.c ├── tst-auditmod24d.c ├── tst-auditmod25.c ├── tst-auditmod28.c ├── tst-auditmod9a.c ├── tst-auditmod9b.c ├── tst-auxobj-dlopen.c ├── tst-auxobj.c ├── tst-auxv.c ├── tst-auxvalmod.c ├── tst-big-note-lib.S ├── tst-big-note.c ├── tst-create_format1.c ├── tst-debug1.c ├── tst-decorate-maps.c ├── tst-deep1.c ├── tst-deep1mod1.c ├── tst-deep1mod2.c ├── tst-deep1mod3.c ├── tst-dl-hash.c ├── tst-dl-hwcaps_split.c ├── tst-dl-is_dso.c ├── tst-dl-iter-static.c ├── tst-dl-printf-static.c ├── tst-dl_find_object-mod1.c ├── tst-dl_find_object-mod2.c ├── tst-dl_find_object-mod3.c ├── tst-dl_find_object-mod4.c ├── tst-dl_find_object-mod5.c ├── tst-dl_find_object-mod6.c ├── tst-dl_find_object-mod7.c ├── tst-dl_find_object-mod8.c ├── tst-dl_find_object-mod9.c ├── tst-dl_find_object-static.c ├── tst-dl_find_object-threads.c ├── tst-dl_find_object.c ├── tst-dlclose-lazy-mod1.c ├── tst-dlclose-lazy-mod2.c ├── tst-dlclose-lazy.c ├── tst-dlmodcount.c ├── tst-dlmopen-dlerror-mod.c ├── tst-dlmopen-dlerror.c ├── tst-dlmopen-gethostbyname-mod.c ├── tst-dlmopen-gethostbyname.c ├── tst-dlmopen-twice-mod1.c ├── tst-dlmopen-twice-mod2.c ├── tst-dlmopen-twice.c ├── tst-dlmopen1.c ├── tst-dlmopen1mod.c ├── tst-dlmopen2.c ├── tst-dlmopen3.c ├── tst-dlmopen4-nonpic.c ├── tst-dlmopen4-pic.c ├── tst-dlmopen4.c ├── tst-dlopen-auditdup-auditmod.c ├── tst-dlopen-auditdup.c ├── tst-dlopen-auditdupmod.c ├── tst-dlopen-constructor-null-mod1.c ├── tst-dlopen-constructor-null-mod2.c ├── tst-dlopen-constructor-null.c ├── tst-dlopen-nodelete-reloc-mod1.c ├── tst-dlopen-nodelete-reloc-mod10.c ├── tst-dlopen-nodelete-reloc-mod11.cc ├── tst-dlopen-nodelete-reloc-mod12.cc ├── tst-dlopen-nodelete-reloc-mod13.cc ├── tst-dlopen-nodelete-reloc-mod13.h ├── tst-dlopen-nodelete-reloc-mod14.cc ├── tst-dlopen-nodelete-reloc-mod15.cc ├── tst-dlopen-nodelete-reloc-mod16.c ├── tst-dlopen-nodelete-reloc-mod17.c ├── tst-dlopen-nodelete-reloc-mod2.c ├── tst-dlopen-nodelete-reloc-mod3.c ├── tst-dlopen-nodelete-reloc-mod4.c ├── tst-dlopen-nodelete-reloc-mod5.c ├── tst-dlopen-nodelete-reloc-mod6.cc ├── tst-dlopen-nodelete-reloc-mod7.cc ├── tst-dlopen-nodelete-reloc-mod8.c ├── tst-dlopen-nodelete-reloc-mod9.cc ├── tst-dlopen-nodelete-reloc.c ├── tst-dlopen-nodelete-reloc.h ├── tst-dlopen-pie.c ├── tst-dlopen-self-container.c ├── tst-dlopen-self-pie.c ├── tst-dlopen-self.c ├── tst-dlopen-sgid-mod.c ├── tst-dlopen-sgid.c ├── tst-dlopen-tlsmodid-container.c ├── tst-dlopen-tlsmodid-pie.c ├── tst-dlopen-tlsmodid.c ├── tst-dlopen-tlsmodid.h ├── tst-dlopen-tlsreinit1.c ├── tst-dlopen-tlsreinit2.c ├── tst-dlopen-tlsreinit3.c ├── tst-dlopen-tlsreinit4.c ├── tst-dlopen-tlsreinitmod1.c ├── tst-dlopen-tlsreinitmod2.c ├── tst-dlopen-tlsreinitmod3.c ├── tst-dlopenfail-2.c ├── tst-dlopenfail.c ├── tst-dlopenfaillinkmod.c ├── tst-dlopenfailmod1.c ├── tst-dlopenfailmod2.c ├── tst-dlopenfailmod3.c ├── tst-dlopenfailnodelmod.c ├── tst-dlopenrpath.c ├── tst-dlopenrpathmod.c ├── tst-dlsym-error.c ├── tst-dst-static.c ├── tst-env-setuid-static.c ├── tst-env-setuid-tunables.c ├── tst-env-setuid.c ├── tst-execstack-mod.c ├── tst-execstack-needed.c ├── tst-execstack-prog-static-tunable.c ├── tst-execstack-prog-static.c ├── tst-execstack-prog.c ├── tst-execstack-tunable.c ├── tst-execstack.c ├── tst-filterobj-aux.c ├── tst-filterobj-dlopen.c ├── tst-filterobj-filtee.c ├── tst-filterobj-filtee.h ├── tst-filterobj-flt.c ├── tst-filterobj.c ├── tst-finilazyfailmod.c ├── tst-getauxval-static.c ├── tst-glibc-hwcaps-2-cache.c ├── tst-glibc-hwcaps-2-cache.root │ └── postclean.req ├── tst-glibc-hwcaps-2-cache.script ├── tst-glibc-hwcaps-cache.c ├── tst-glibc-hwcaps-cache.root │ └── postclean.req ├── tst-glibc-hwcaps-cache.script ├── tst-glibc-hwcaps-mask.c ├── tst-glibc-hwcaps-prepend-cache.c ├── tst-glibc-hwcaps-prepend-cache.root │ ├── ldconfig.run │ └── postclean.req ├── tst-glibc-hwcaps-prepend.c ├── tst-glibc-hwcaps.c ├── tst-glibcelf.py ├── tst-global1.c ├── tst-global2.c ├── tst-globalmod2.c ├── tst-gnu2-tls1.c ├── tst-gnu2-tls1mod.c ├── tst-gnu2-tls2.c ├── tst-gnu2-tls2.h ├── tst-gnu2-tls2mod0.c ├── tst-gnu2-tls2mod1.c ├── tst-gnu2-tls2mod2.c ├── tst-hash-collision1-gnu.c ├── tst-hash-collision1-mod-gnu.c ├── tst-hash-collision1-mod-sysv.c ├── tst-hash-collision1-mod.c ├── tst-hash-collision1-sysv.c ├── tst-hash-collision1.c ├── tst-hash-collision2-gnu.c ├── tst-hash-collision2-mod1-gnu.c ├── tst-hash-collision2-mod1-sysv.c ├── tst-hash-collision2-mod1.c ├── tst-hash-collision2-mod2-gnu.c ├── tst-hash-collision2-mod2-sysv.c ├── tst-hash-collision2-mod2.c ├── tst-hash-collision2-sysv.c ├── tst-hash-collision2.c ├── tst-hash-collision3-mod.c ├── tst-hash-collision3-mod.map ├── tst-hash-collision3.c ├── tst-ifunc-fault-bindnow.c ├── tst-ifunc-fault-lazy.c ├── tst-ifunc-textrel.c ├── tst-initfinilazyfail.c ├── tst-initlazyfailmod.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 │ └── postclean.req ├── tst-ldconfig-ld-mod.c ├── tst-ldconfig-ld_so_conf-update.c ├── tst-ldconfig-ld_so_conf-update.root │ ├── ldconfig.run │ ├── postclean.req │ └── tst-ldconfig-ld_so_conf-update.script ├── tst-ldconfig-p.sh ├── tst-ldconfig-soname-lib-with-soname.c ├── tst-ldconfig-soname-lib-without-soname.c ├── tst-ldconfig-soname.sh ├── tst-leaks1.c ├── tst-link-map-contiguous-ldso.c ├── tst-link-map-contiguous-libc.c ├── tst-link-map-contiguous-main.c ├── tst-linkall-static.c ├── tst-main1.c ├── tst-main1mod.c ├── tst-next-ver.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-nodeps1-mod.c ├── tst-nodeps1.c ├── tst-nodeps2-mod.c ├── tst-nodeps2.c ├── tst-noload.c ├── tst-non-directory-mod.c ├── tst-non-directory-path.c ├── tst-non-directory-path.sh ├── 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-origin.c ├── tst-origin.sh ├── tst-p_align.h ├── tst-p_align1.c ├── tst-p_align2.c ├── tst-p_align3.c ├── tst-p_align3.sh ├── tst-p_alignmod-base.c ├── tst-p_alignmod3.c ├── tst-pathopt.c ├── tst-pathopt.sh ├── tst-pie-address-static.c ├── tst-pie-address.c ├── tst-pie-bss-static.c ├── tst-pie-bss.c ├── tst-pie1.c ├── tst-pie2.c ├── tst-piemod1.c ├── tst-pldd.c ├── tst-preload-pthread-libc.c ├── tst-protected1a.c ├── tst-protected1b.c ├── tst-protected1mod.h ├── tst-protected1moda.c ├── tst-protected1modb.c ├── tst-ptrguard1-static.c ├── tst-ptrguard1.c ├── tst-recursive-tls.c ├── tst-recursive-tlsmallocmod.c ├── tst-recursive-tlsmodN.c ├── tst-relr-mod2.c ├── tst-relr-mod3a.c ├── tst-relr-mod3b.c ├── tst-relr-mod4a.c ├── tst-relr-mod4b.c ├── tst-relr-mod4b.map ├── tst-relr-pie.c ├── tst-relr.c ├── tst-relr2.c ├── tst-relr3.c ├── tst-relr4.c ├── tst-relro-symbols.py ├── tst-relsort1.c ├── tst-relsort1mod1.c ├── tst-relsort1mod2.c ├── tst-ro-dynamic-mod.c ├── tst-ro-dynamic-mod.map ├── tst-ro-dynamic.c ├── tst-rootdir-lib.c ├── tst-rootdir.c ├── tst-rootdir.root │ └── preclean.req ├── tst-rootdir.script ├── tst-rtld-argv0.sh ├── tst-rtld-dash-dash.sh ├── tst-rtld-does-not-exist.sh ├── tst-rtld-list-diagnostics.py ├── tst-rtld-list-tunables.exp ├── tst-rtld-list-tunables.sh ├── tst-rtld-load-self.sh ├── tst-rtld-no-malloc-audit.c ├── tst-rtld-no-malloc-preload.c ├── tst-rtld-no-malloc.c ├── tst-rtld-preload.sh ├── tst-rtld-run-static.c ├── tst-single_threaded-mod1.c ├── tst-single_threaded-mod2.c ├── tst-single_threaded-mod3.c ├── tst-single_threaded-mod4.c ├── tst-single_threaded-pthread-static.c ├── tst-single_threaded-pthread.c ├── tst-single_threaded-static-dlopen.c ├── tst-single_threaded-static.c ├── tst-single_threaded.c ├── 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-sprof-basic.c ├── tst-sprof-basic.sh ├── tst-sprof-mod.c ├── tst-stackguard1-static.c ├── tst-stackguard1.c ├── tst-startup-errno.c ├── tst-stringtable.c ├── tst-thrlock.c ├── tst-tls-allocation-failure-static.c ├── tst-tls-dlinfo.c ├── tst-tls-ie-dlmopen.c ├── tst-tls-ie-mod.h ├── tst-tls-ie-mod0.c ├── tst-tls-ie-mod1.c ├── tst-tls-ie-mod2.c ├── tst-tls-ie-mod3.c ├── tst-tls-ie-mod4.c ├── tst-tls-ie-mod5.c ├── tst-tls-ie-mod6.c ├── tst-tls-ie.c ├── tst-tls-manydynamic.c ├── tst-tls-manydynamic.h ├── tst-tls-manydynamicmod.c ├── tst-tls-surplus.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-tls20.c ├── tst-tls20mod-bad.c ├── tst-tls21.c ├── tst-tls21mod.c ├── tst-tls22-gnu2.c ├── tst-tls22-mod1-gnu2.c ├── tst-tls22-mod1-vars.c ├── tst-tls22-mod1.c ├── tst-tls22-mod2-gnu2.c ├── tst-tls22-mod2-vars.c ├── tst-tls22-mod2.c ├── tst-tls22-vars.c ├── tst-tls22.c ├── tst-tls22.h ├── tst-tls23-mod.c ├── tst-tls23.c ├── tst-tls23.h ├── 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-tls_tp_offset.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-tlsgap-mod0.c ├── tst-tlsgap-mod1.c ├── tst-tlsgap-mod2.c ├── tst-tlsgap.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-trace1.exp ├── tst-trace2.exp ├── tst-trace3.exp ├── tst-trace4.exp ├── tst-trace5.exp ├── tst-tunables-enable_secure-env.c ├── tst-tunables-enable_secure.c ├── tst-tunables.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 ├── tst-valgrind-smoke.sh ├── tst-version-hash-zero-linkmod.c ├── tst-version-hash-zero-linkmod.map ├── tst-version-hash-zero-mod.c ├── tst-version-hash-zero-mod.map ├── tst-version-hash-zero-refmod.c ├── tst-version-hash-zero.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 ├── valgrind-test.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-mcleanup.c ├── tst-mcount-overflow-check.sh ├── tst-mcount-overflow.c ├── tst-profile-static.c └── tst-sprofil.c ├── gnulib ├── Makefile └── tst-gcc.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 ├── cancellation.c ├── configure ├── configure.in ├── htlfreeres.c ├── libpthread.a ├── libpthread_pic.a ├── libpthread_syms.a ├── 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-internal.h ├── pt-join.c ├── pt-nthreads.c ├── pt-self.c ├── pt-setcancelstate.c ├── pt-setcanceltype.c ├── pt-sigmask.c ├── pt-spin-inlines.c ├── pt-testcancel.c ├── pt-yield.c ├── semaphoreP.h ├── 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 ├── RPC_gsync_wait_intr.c ├── 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-cleanup.c ├── 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-hooks.h ├── set-host.c ├── setauth.c ├── seteuids.c ├── siginfo.c ├── sigunwind.c ├── stack_chk_fail_local.c ├── task2pid.c ├── test-sig-rpc-interrupted.c ├── test-sig-xstate.c ├── test-xstate.h ├── 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.c ├── gconv_charset.h ├── gconv_close.c ├── gconv_conf.c ├── gconv_db.c ├── gconv_dl.c ├── gconv_int.h ├── gconv_open.c ├── gconv_parseconfdir.h ├── 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-iconv-opt.c ├── tst-iconv-sticky-input-error.c ├── tst-iconv1.c ├── tst-iconv2.c ├── tst-iconv3.c ├── tst-iconv4.c ├── tst-iconv5.c ├── tst-iconv6.c ├── tst-iconv7.c ├── tst-iconv8.c ├── tst-iconv9.c ├── tst-iconv_prog-buffer.sh ├── tst-iconv_prog.sh ├── tst-iconvconfig.sh ├── tst-translit-locale ├── tst-translit-mchar.c └── tst-translit-mchar.sh ├── 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-iconv13.c ├── bug-iconv14.c ├── bug-iconv15.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-modules-extra.conf ├── 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-IMAP │ ├── UTF-7-IMAP..UTF8 │ ├── 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-iconv-big5-hkscs-to-2ucs4.c ├── tst-iconv-iso-2022-cn-ext.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 ├── atomic_wide_counter.h ├── bits │ ├── argp-ldbl.h │ ├── atomic_wide_counter.h │ ├── cmathcalls.h │ ├── cpu-set.h │ ├── dl_find_object.h │ ├── dlfcn.h │ ├── endian.h │ ├── err-ldbl.h │ ├── error-ldbl.h │ ├── error.h │ ├── fcntl2.h │ ├── getopt_core.h │ ├── getopt_ext.h │ ├── getopt_posix.h │ ├── inet-fortified-decl.h │ ├── inet-fortified.h │ ├── locale.h │ ├── mathcalls-helper-functions.h │ ├── mathcalls-macros.h │ ├── mathcalls-narrow.h │ ├── mathcalls.h │ ├── monetary-ldbl.h │ ├── mqueue2.h │ ├── poll2.h │ ├── posix1_lim.h │ ├── posix2_lim.h │ ├── printf-ldbl.h │ ├── select-decl.h │ ├── select2.h │ ├── setjmp2.h │ ├── sigstack.h │ ├── sigstksz.h │ ├── socket2.h │ ├── stab.def │ ├── statx-generic.h │ ├── statx.h │ ├── stdio-ldbl.h │ ├── stdio.h │ ├── stdio2-decl.h │ ├── stdio2.h │ ├── stdlib-float.h │ ├── stdlib-ldbl.h │ ├── stdlib.h │ ├── string2.h │ ├── string_fortified.h │ ├── strings_fortified.h │ ├── syslog-decl.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___jmp_buf_tag.h │ │ ├── struct_iovec.h │ │ ├── struct_itimerspec.h │ │ ├── struct_osockaddr.h │ │ ├── struct_rusage.h │ │ ├── struct_sigstack.h │ │ ├── struct_statx.h │ │ ├── struct_statx_timestamp.h │ │ ├── struct_timeb.h │ │ ├── struct_timespec.h │ │ ├── struct_timeval.h │ │ ├── struct_tm.h │ │ ├── time_t.h │ │ ├── timer_t.h │ │ └── wint_t.h │ ├── unistd-decl.h │ ├── unistd.h │ ├── unistd_ext.h │ ├── wchar-ldbl.h │ ├── wchar2-decl.h │ ├── wchar2.h │ ├── wctype-wchar.h │ └── xopen_lim.h ├── byteswap.h ├── clone_internal.h ├── complex.h ├── cpio.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-time64.h ├── features.h ├── fenv.h ├── file_change_detection.h ├── filename.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 ├── idx.h ├── ifaddrs.h ├── ifreq.h ├── ifunc-impl-list.h ├── inline-hashtab.h ├── intprops-internal.h ├── intprops.h ├── inttypes.h ├── langinfo.h ├── lastlog.h ├── libc-diag.h ├── libc-internal.h ├── libc-misc.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 ├── nss_dns.h ├── nss_files.h ├── nsswitch.h ├── obstack.h ├── plural-exp.h ├── poll.h ├── printf.h ├── printf_buffer.h ├── programs │ ├── xasprintf.h │ └── 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 ├── register-atfork.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 │ ├── ypclnt.h │ └── ypupd.h ├── rtld-malloc.h ├── sched.h ├── scratch_buffer.h ├── search.h ├── set-freeres.h ├── setjmp.h ├── sgtty.h ├── shadow.h ├── shlib-compat.h ├── shm-directory.h ├── signal.h ├── spawn.h ├── stab.h ├── stackinfo.h ├── stap-probe.h ├── stdbit.h ├── stdc-predef.h ├── stdint.h ├── stdio.h ├── stdio_ext.h ├── stdlib.h ├── string.h ├── strings.h ├── struct___timeb64.h ├── struct___timespec64.h ├── struct___timeval64.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 │ ├── single_threaded.h │ ├── socket.h │ ├── stat.h │ ├── statfs.h │ ├── statvfs.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 │ ├── 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 ├── unistd_ext.h ├── utime.h ├── utmp.h ├── values.h ├── verify.h ├── wait.h ├── wchar.h ├── wctype.h └── wordexp.h ├── inet ├── Makefile ├── Versions ├── arpa │ ├── ftp.h │ ├── inet.h │ ├── telnet.h │ └── tftp.h ├── bindresvport.c ├── bits │ ├── inet-fortified-decl.h │ └── inet-fortified.h ├── bug-if1.c ├── check_native.c ├── check_pf.c ├── deadline.c ├── etc.rpc ├── ether_aton.c ├── ether_aton_r.c ├── ether_line.c ├── ether_ntoa.c ├── ether_ntoa_r.c ├── getipv4sourcefilter.c ├── getsourcefilter.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 ├── netinet │ ├── ether.h │ ├── icmp6.h │ ├── igmp.h │ ├── in.h │ └── ip6.h ├── protocols │ ├── routed.h │ ├── rwhod.h │ ├── talkd.h │ └── timed.h ├── rcmd.c ├── rexec.c ├── rpc │ └── netdb.h ├── 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-getni1.c ├── tst-getni2.c ├── tst-idna_name_classify.c ├── tst-if_index-long.c ├── tst-if_nameindex.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-utf8.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 ├── close_range.c ├── closefrom.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 ├── file_change_detection.c ├── flock.c ├── fstat.c ├── fstat64.c ├── fstatat.c ├── fstatat64.c ├── fstatfs.c ├── fstatfs64.c ├── fstatvfs.c ├── fstatvfs64.c ├── fts.c ├── fts.h ├── fts64-time64.c ├── fts64.c ├── ftw.c ├── ftw.h ├── ftw64-time64.c ├── ftw64.c ├── ftwtest-sh ├── ftwtest-time64.c ├── ftwtest.c ├── futimens.c ├── getcwd.c ├── getdirname.c ├── getwd.c ├── lchmod.c ├── lchown.c ├── link.c ├── linkat.c ├── lockf.c ├── lockf64.c ├── lseek.c ├── lseek64.c ├── lstat.c ├── lstat64.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-close_range.c ├── tst-closefrom.c ├── tst-copy_file_range.c ├── tst-faccessat-setuid.c ├── tst-faccessat.c ├── tst-fchmod-errors.c ├── tst-fchmod-fuse.c ├── tst-fchmodat.c ├── tst-fchownat.c ├── tst-fcntl-lock-lfs.c ├── tst-fcntl-lock.c ├── tst-fcntl-time64.c ├── tst-fcntl.c ├── tst-file_change_detection.c ├── tst-fstatat.c ├── tst-fts-lfs.c ├── tst-fts-time64-y2038.c ├── tst-fts-time64.c ├── tst-fts.c ├── tst-ftw-bz26353.c ├── tst-ftw-bz28126.c ├── tst-ftw-lnk.c ├── tst-futimens-time64.c ├── tst-futimens.c ├── tst-futimes-time64.c ├── tst-futimes.c ├── tst-futimesat-time64.c ├── tst-futimesat.c ├── tst-getcwd-abspath.c ├── tst-getcwd.c ├── tst-lchmod-time64.c ├── tst-lchmod.c ├── tst-linkat.c ├── tst-lockf.c ├── tst-lstat-nofollow-time64.c ├── tst-lstat-nofollow.c ├── tst-lutimes-time64.c ├── tst-lutimes.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-read-zero.c ├── tst-readlinkat.c ├── tst-renameat.c ├── tst-stat-lfs.c ├── tst-stat-time64.c ├── tst-stat.c ├── tst-statvfs.c ├── tst-statx.c ├── tst-symlinkat.c ├── tst-ttyname_r.c ├── tst-unlinkat.c ├── tst-utime-time64.c ├── tst-utime.c ├── tst-utimensat-skeleton.c ├── tst-utimensat-time64.c ├── tst-utimensat.c ├── tst-utimes-time64.c ├── tst-utimes.c ├── ttyname.c ├── ttyname_r.c ├── umask.c ├── unlink.c ├── unlinkat.c ├── utime.c ├── utime.h ├── utimensat.c └── write.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-decl.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-macros.sym ├── 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 ├── rewind.c ├── setbuf.c ├── setlinebuf.c ├── stdfiles.c ├── stdio.c ├── stdio.h ├── strfile.h ├── strops.c ├── swprintf.c ├── swscanf.c ├── test-fmemopen.c ├── test-fputs-unbuffered-full.c ├── test-fputws-unbuffered-full.c ├── test-freopen.c ├── test-freopen.sh ├── tst-asprintf-null.c ├── tst-atime.c ├── tst-bz22415.c ├── tst-bz24051.c ├── tst-bz24153.c ├── tst-bz24228.c ├── tst-bz24228.map ├── tst-bz28828.c ├── tst-bz28828.input ├── tst-cleanup-default-static.c ├── tst-cleanup-default.c ├── tst-cleanup-nostart-stop-gc-static.c ├── tst-cleanup-nostart-stop-gc.c ├── tst-cleanup-start-stop-gc-static.c ├── tst-cleanup-start-stop-gc.c ├── tst-cleanup.c ├── tst-cleanup.exp ├── tst-closeall.c ├── tst-eof.c ├── tst-ext.c ├── tst-ext2.c ├── tst-fclose-unopened.c ├── tst-fclose-unopened2.c ├── tst-fclose-unopened2.input ├── tst-fdopen-seek-failure.c ├── tst-fflush-NULL.c ├── tst-fflush-skeleton.c ├── tst-fflush.c ├── tst-fgetc-after-eof.c ├── tst-fgetwc.c ├── tst-fgetwc.input ├── tst-fgetws.c ├── tst-fopen-compat.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-getdelim.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-popen-fork.c ├── tst-popen1.c ├── tst-setvbuf1.c ├── tst-sprintf-chk-ub.c ├── tst-sprintf-ub.c ├── tst-sscanf.c ├── tst-stderr-compat.c ├── tst-stdio-static.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-widetext.c ├── tst-widetext.input ├── tst-wmemstream1.c ├── tst-wmemstream2.c ├── tst-wmemstream3.c ├── tst-wmemstream4.c ├── tst-wmemstream5.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-seq.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 │ ├── md5-block.c │ ├── md5.c │ ├── md5.h │ ├── record-status.c │ ├── record-status.h │ ├── repertoire.c │ ├── repertoire.h │ ├── simple-hash.c │ ├── simple-hash.h │ ├── xasprintf.c │ ├── xmalloc.c │ └── xstrdup.c ├── setlocale.c ├── strlen-hash.h ├── tst-C-locale.c ├── tst-duplocale.c ├── tst-locale-locpath.sh ├── tst-localedef-path-norm.c ├── tst-localedef-path-norm.root │ ├── postclean.req │ └── tst-localedef-path-norm.script ├── tst-locname.c ├── uselocale.c ├── weight.h ├── weightwc.h └── xlocale.c ├── localedata ├── C.UTF-8.in ├── 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 ├── ckb_IQ.UTF-8.in ├── 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 │ ├── C │ ├── POSIX │ ├── aa_DJ │ ├── aa_ER │ ├── aa_ET │ ├── ab_GE │ ├── 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 │ ├── ckb_IQ │ ├── cmn_TW │ ├── cns11643_stroke │ ├── crh_RU │ ├── 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_SE │ ├── 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 │ ├── gbm_IN │ ├── 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 │ ├── kv_RU │ ├── kw_GB │ ├── ky_KG │ ├── lb_LU │ ├── lg_UG │ ├── li_BE │ ├── li_NL │ ├── lij_IT │ ├── ln_CD │ ├── lo_LA │ ├── lt_LT │ ├── ltg_LV │ ├── lv_LV │ ├── lzh_TW │ ├── mag_IN │ ├── mai_IN │ ├── mai_NP │ ├── mdf_RU │ ├── mfe_MU │ ├── mg_MG │ ├── mhr_RU │ ├── mi_NZ │ ├── miq_NI │ ├── mjw_IN │ ├── mk_MK │ ├── ml_IN │ ├── mn_MN │ ├── mni_IN │ ├── mnw_MM │ ├── 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 │ ├── rif_MA │ ├── ro_RO │ ├── ru_RU │ ├── ru_UA │ ├── rw_RW │ ├── sa_IN │ ├── sah_RU │ ├── sat_IN │ ├── sc_IT │ ├── scn_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 │ ├── ssy_ER │ ├── st_ZA │ ├── su_ID │ ├── sv_FI │ ├── sv_FI@euro │ ├── sv_SE │ ├── sw_KE │ ├── sw_TZ │ ├── syr │ ├── 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 │ ├── tok │ ├── tpi_PG │ ├── tr_CY │ ├── tr_TR │ ├── translit_circle │ ├── translit_cjk_compat │ ├── translit_cjk_variants │ ├── translit_combining │ ├── translit_compat │ ├── translit_emojis │ ├── 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 │ ├── zgh_MA │ ├── zh_CN │ ├── zh_HK │ ├── zh_SG │ ├── zh_TW │ └── zu_ZA ├── lt_LT.UTF-8.in ├── ltg_LV.UTF-8.in ├── lv_LV.UTF-8.in ├── mdf_RU.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 ├── or_IN.UTF-8.in ├── os_RU.UTF-8.in ├── pl_PL.UTF-8.in ├── ps_AF.UTF-8.in ├── rif_MA.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 ├── syr.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.UTF-8.in ├── tk_TM.UTF-8.in ├── tr_TR.UTF-8.in ├── tst-bz12701-lc.c ├── tst-bz13988.c ├── tst-c-utf8-consistency.c ├── 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-iconv-emojis-trans.c ├── tst-iconv-math-trans.c ├── 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-loadlocale.c ├── tst-locale.sh ├── tst-localedef-hardlinks.c ├── tst-localedef-hardlinks.root │ ├── postclean.req │ ├── test1_locale │ ├── test2_locale │ └── tst-localedef-hardlinks.script ├── 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-scanf-width-digit.c ├── tst-scanf-width-point.c ├── 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 │ ├── HangulSyllableType.txt │ ├── Makefile │ ├── 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 ├── libutil-compat.c ├── 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-pututxline-cache.c ├── tst-pututxline-lockfail.c ├── tst-updwtmpx.c ├── tst-utmp-size-64.c ├── tst-utmp-size.c ├── tst-utmp-unsigned-64.c ├── tst-utmp-unsigned.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_memcpy.c ├── mig_strlen.c ├── mig_strncpy.c ├── msg-destroy.c ├── msg.c ├── msgserver.c ├── mutex-init.c ├── setup-thread.c ├── setup-thread.h ├── 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-check.c ├── malloc-debug.c ├── malloc-internal.h ├── malloc.c ├── malloc.h ├── mallocbug.c ├── mcheck-impl.c ├── mcheck-init.c ├── mcheck.c ├── mcheck.h ├── memusage.c ├── memusage.sh ├── memusagestat.c ├── morecore.c ├── mtrace-impl.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-aligned-alloc-random-thread-cross.c ├── tst-aligned-alloc-random-thread.c ├── tst-aligned-alloc-random.c ├── tst-aligned-alloc-static.c ├── tst-aligned-alloc.c ├── tst-aligned_alloc-lib.c ├── tst-alloc_buffer.c ├── tst-calloc.c ├── tst-compathooks-off.c ├── tst-compathooks-on.c ├── tst-dynarray-at-fail.c ├── tst-dynarray-fail.c ├── tst-dynarray-shared.h ├── tst-dynarray.c ├── tst-free-aligned-sized-trace.c ├── tst-free-aligned-sized.c ├── tst-free-errno.c ├── tst-free-sized-trace.c ├── tst-free-sized.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-mallinfo2.c ├── tst-malloc-alternate-path.c ├── tst-malloc-aux.h ├── tst-malloc-backtrace.c ├── tst-malloc-check.c ├── tst-malloc-fork-deadlock.c ├── tst-malloc-random.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-tunables.c ├── tst-malloc-usable.c ├── tst-malloc.c ├── tst-malloc_info.c ├── tst-mallocalign1.c ├── tst-mallocfork.c ├── tst-mallocfork2.c ├── tst-mallocfork3.c ├── tst-mallocstate.c ├── tst-mallopt.c ├── tst-memalign-2.c ├── tst-memalign-3.c ├── tst-memalign.c ├── tst-mtrace.c ├── tst-mtrace.sh ├── tst-mxfast.c ├── tst-obstack.c ├── tst-posix_memalign.c ├── tst-pvalloc-fortify.c ├── tst-pvalloc.c ├── tst-realloc.c ├── tst-reallocarray.c ├── tst-safe-linking.c ├── tst-scratch_buffer.c ├── tst-tcfree1.c ├── tst-tcfree2.c ├── tst-tcfree3.c ├── tst-tcfree4.c ├── tst-trim1.c └── tst-valloc.c ├── manual ├── Makefile ├── README.pretty-printers ├── README.tunables ├── argp.texi ├── arith.texi ├── charset.texi ├── check-deftype.sh ├── check-safety.sh ├── conf.texi ├── contrib.texi ├── creature.texi ├── crypt.texi ├── ctype.texi ├── debug.texi ├── dir ├── dynlink.texi ├── 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 │ ├── 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 │ ├── timespec_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 ├── 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 ├── stdbit.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-acospi ├── auto-libm-test-out-asin ├── auto-libm-test-out-asinh ├── auto-libm-test-out-asinpi ├── auto-libm-test-out-atan ├── auto-libm-test-out-atan2 ├── auto-libm-test-out-atan2pi ├── auto-libm-test-out-atanh ├── auto-libm-test-out-atanpi ├── 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-compoundn ├── auto-libm-test-out-cos ├── auto-libm-test-out-cosh ├── auto-libm-test-out-cospi ├── 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-exp10m1 ├── auto-libm-test-out-exp2 ├── auto-libm-test-out-exp2m1 ├── 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-log10p1 ├── auto-libm-test-out-log1p ├── auto-libm-test-out-log2 ├── auto-libm-test-out-log2p1 ├── auto-libm-test-out-narrow-add ├── auto-libm-test-out-narrow-div ├── auto-libm-test-out-narrow-fma ├── auto-libm-test-out-narrow-mul ├── auto-libm-test-out-narrow-sqrt ├── auto-libm-test-out-narrow-sub ├── auto-libm-test-out-pow ├── auto-libm-test-out-pown ├── auto-libm-test-out-powr ├── auto-libm-test-out-rootn ├── auto-libm-test-out-rsqrt ├── auto-libm-test-out-sin ├── auto-libm-test-out-sincos ├── auto-libm-test-out-sinh ├── auto-libm-test-out-sinpi ├── auto-libm-test-out-sqrt ├── auto-libm-test-out-tan ├── auto-libm-test-out-tanh ├── auto-libm-test-out-tanpi ├── 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-macros.h │ ├── mathcalls-narrow.h │ └── mathcalls.h ├── bug-nextafter.c ├── bug-nexttoward.c ├── bug-tgmath1.c ├── cabs_template.c ├── carg_template.c ├── cimag_template.c ├── compat_fromfp.h ├── complex.h ├── conj_template.c ├── creal_template.c ├── divtc3.c ├── e_exp2_template.c ├── e_scalb_template.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-acospi.inc ├── libm-test-asin.inc ├── libm-test-asinh.inc ├── libm-test-asinpi.inc ├── libm-test-atan.inc ├── libm-test-atan2.inc ├── libm-test-atan2pi.inc ├── libm-test-atanh.inc ├── libm-test-atanpi.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-compat_fromfp.inc ├── libm-test-compat_fromfpx.inc ├── libm-test-compat_totalorder.inc ├── libm-test-compat_totalordermag.inc ├── libm-test-compat_ufromfp.inc ├── libm-test-compat_ufromfpx.inc ├── libm-test-compoundn.inc ├── libm-test-conj.inc ├── libm-test-copysign.inc ├── libm-test-cos.inc ├── libm-test-cosh.inc ├── libm-test-cospi.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-exp10m1.inc ├── libm-test-exp2.inc ├── libm-test-exp2m1.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-fmaximum.inc ├── libm-test-fmaximum_mag.inc ├── libm-test-fmaximum_mag_num.inc ├── libm-test-fmaximum_num.inc ├── libm-test-fmaxmag.inc ├── libm-test-fmin.inc ├── libm-test-fminimum.inc ├── libm-test-fminimum_mag.inc ├── libm-test-fminimum_mag_num.inc ├── libm-test-fminimum_num.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-log10p1.inc ├── libm-test-log1p.inc ├── libm-test-log2.inc ├── libm-test-log2p1.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-fma.inc ├── libm-test-narrow-mul.inc ├── libm-test-narrow-sqrt.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-pown.inc ├── libm-test-powr.inc ├── libm-test-remainder.inc ├── libm-test-remquo.inc ├── libm-test-rint.inc ├── libm-test-rootn.inc ├── libm-test-round.inc ├── libm-test-roundeven.inc ├── libm-test-rsqrt.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-sinpi.inc ├── libm-test-sqrt.inc ├── libm-test-support.c ├── libm-test-support.h ├── libm-test-tan.inc ├── libm-test-tanh.inc ├── libm-test-tanpi.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_acospi_template.c ├── s_asinpi_template.c ├── s_atan2pi_template.c ├── s_atanpi_template.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_compoundn_template.c ├── s_cospi_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_exp10m1_template.c ├── s_exp2m1_template.c ├── s_fdim_template.c ├── s_fmax_template.c ├── s_fmaximum_mag_num_template.c ├── s_fmaximum_mag_template.c ├── s_fmaximum_num_template.c ├── s_fmaximum_template.c ├── s_fmaxmag_template.c ├── s_fmin_template.c ├── s_fminimum_mag_num_template.c ├── s_fminimum_mag_template.c ├── s_fminimum_num_template.c ├── s_fminimum_template.c ├── s_fminmag_template.c ├── s_iscanonicall.c ├── s_iseqsig_template.c ├── s_ldexp_template.c ├── s_log10p1_template.c ├── s_log2p1_template.c ├── s_nan_template.c ├── s_nextafter.c ├── s_nextdown_template.c ├── s_nexttowardf.c ├── s_nexttowardl.c ├── s_pown_template.c ├── s_powr_template.c ├── s_rootn_template.c ├── s_rsqrt_template.c ├── s_significand_template.c ├── s_sinpi_template.c ├── s_tanpi_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-ceil-except-2.c ├── test-double-static.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-fesetexcept-traps.c ├── test-fesetexcept.c ├── test-fetestexceptflag.c ├── test-fexcept-traps.c ├── test-fexcept.c ├── test-float-static.h ├── test-float-vlen16.h ├── test-float-vlen4.h ├── test-float-vlen8.h ├── test-float.h ├── test-float128-static.h ├── test-float128.h ├── test-float32-static.h ├── test-float32.h ├── test-float32x-static.h ├── test-float32x.h ├── test-float64-static.h ├── test-float64.h ├── test-float64x-static.h ├── test-float64x.h ├── test-floor-except-2.c ├── 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-ibm128-static.h ├── test-ibm128.h ├── test-iseqsig-excess-precision.c ├── test-iszero-excess-precision.c ├── test-ldouble-static.h ├── test-ldouble.h ├── test-math-cxx11.cc ├── test-math-errno.h ├── test-math-exceptions.h ├── test-math-floatn.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-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-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 ├── test-trunc-except-2.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.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.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.c ├── w_hypot_compat.c ├── w_hypot_template.c ├── w_hypotf.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_scalb_template.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 ├── atomic_wide_counter.c ├── bits │ ├── err-ldbl.h │ ├── error-ldbl.h │ ├── error.h │ ├── select-decl.h │ ├── select2.h │ ├── stab.def │ ├── syslog-decl.h │ ├── 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-dbl-macros.h ├── efgcvt-ldbl-macros.h ├── efgcvt-template.c ├── efgcvt.c ├── efgcvt_r-template.c ├── efgcvt_r.c ├── err.c ├── err.h ├── error.c ├── error.h ├── fchflags.c ├── fd_to_filename.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 ├── single_threaded.c ├── 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 │ ├── single_threaded.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-fd_to_filename.c ├── tst-fdset.c ├── tst-gethostid.c ├── tst-hsearch.c ├── tst-insremque.c ├── tst-ioctl-time64.c ├── tst-ioctl.c ├── tst-ldbl-efgcvt.c ├── tst-ldbl-error.c ├── tst-ldbl-errorfptr.c ├── tst-ldbl-warn.c ├── tst-makedev.c ├── tst-mkstemp-fuse-parallel.c ├── tst-mkstemp-fuse.c ├── tst-mntent-autofs.c ├── tst-mntent-blank-corrupt.c ├── tst-mntent-blank-passno.c ├── tst-mntent-escape.c ├── tst-mntent.c ├── tst-mntent2.c ├── tst-mremap1.c ├── tst-mremap2.c ├── tst-preadvwritev-common.c ├── tst-preadvwritev.c ├── tst-preadvwritev2-common.c ├── tst-preadvwritev2.c ├── tst-preadvwritev64.c ├── tst-preadvwritev64v2.c ├── tst-pselect-time64.c ├── tst-pselect.c ├── tst-select-time64.c ├── tst-select.c ├── tst-syscalls.c ├── tst-syslog-long-progname.c ├── tst-syslog-long-progname.root │ └── postclean.req ├── tst-syslog.c ├── tst-tsearch.c ├── tst-warn-wide.c ├── ttyent.h ├── ttyslot.c ├── ualarm.c ├── unwind-link.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 ├── rpcsvc │ ├── nis.h │ ├── nis_callback.h │ ├── nis_tags.h │ ├── nislib.h │ ├── yp.h │ ├── ypclnt.h │ └── ypupd.h ├── yp_xdr.c ├── ypclnt.c └── ypupdate_xdr.c ├── nptl ├── DESIGN-systemtap-probes.txt ├── Makefile ├── TODO ├── TODO-kernel ├── TODO-testing ├── Versions ├── alloca_cutoff.c ├── allocatestack.c ├── cancellation.c ├── cleanup.c ├── cleanup_compat.c ├── cleanup_defer.c ├── cleanup_defer_compat.c ├── cleanup_routine.c ├── default-sched.h ├── descr-const.sym ├── descr.h ├── errno-loc.c ├── events.c ├── futex-internal.c ├── libc-cleanup.c ├── libpthread-compat.c ├── lowlevellock.c ├── nptl-printers.py ├── nptl-stack.c ├── nptl-stack.h ├── nptl_deallocate_tsd.c ├── nptl_free_tcb.c ├── nptl_lock_constants.pysym ├── nptl_nthreads.c ├── nptl_setxid.c ├── nptlfreeres.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 ├── pthread_attr_copy.c ├── pthread_attr_destroy.c ├── pthread_attr_extension.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_getsigmask.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_setsigmask.c ├── pthread_attr_setsigmask_internal.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_cleanup_upto.c ├── pthread_clockjoin.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_gettid_np.c ├── pthread_join.c ├── pthread_join_common.c ├── pthread_key_create.c ├── pthread_key_delete.c ├── pthread_keys.c ├── pthread_kill.c ├── pthread_kill_other_threads.c ├── pthread_mutex_cond_lock.c ├── pthread_mutex_conf.c ├── pthread_mutex_consistent.c ├── pthread_mutex_destroy.c ├── pthread_mutex_getprioceiling.c ├── pthread_mutex_init.c ├── pthread_mutex_lock.c ├── pthread_mutex_setprioceiling.c ├── pthread_mutex_timedlock.c ├── pthread_mutex_trylock.c ├── pthread_mutex_unlock.c ├── pthread_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_setname.c ├── pthread_setschedparam.c ├── pthread_setschedprio.c ├── pthread_setspecific.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 ├── sem_clockwait.c ├── sem_destroy.c ├── sem_getvalue.c ├── sem_init.c ├── sem_post.c ├── sem_timedwait.c ├── sem_wait.c ├── sem_waitcommon.c ├── semaphoreP.h ├── shlib-versions ├── 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_current.c ├── thrd_yield.c ├── tpp.c ├── tst-attr2.c ├── tst-attr3.c ├── tst-attr4.c ├── tst-audit-threads-mod1.c ├── tst-audit-threads-mod2.c ├── tst-audit-threads.c ├── tst-audit-threads.h ├── tst-barrier5.c ├── tst-cancel17.c ├── tst-cancel24-static.cc ├── tst-cancel24.cc ├── tst-cancel31.c ├── tst-cancel4_1.c ├── tst-cancel4_2-time64.c ├── tst-cancel4_2.c ├── tst-cancel7.c ├── tst-cancelx17.c ├── tst-cancelx7.c ├── tst-cleanup4.c ├── tst-cleanup4aux.c ├── tst-cleanupx4.c ├── tst-cleanupx4aux.c ├── tst-clock2.c ├── tst-compat-forwarder-mod.c ├── tst-compat-forwarder.c ├── tst-cond22.c ├── tst-cond26.c ├── tst-context1.c ├── tst-default-attr.c ├── tst-dl-debug-tid.c ├── tst-dl-debug-tid.sh ├── tst-dlsym1.c ├── tst-eintr1.c ├── tst-exec4.c ├── tst-exec5.c ├── tst-execstack-threads-mod.c ├── tst-execstack-threads.c ├── tst-guard1.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-minstack-cancel.c ├── tst-minstack-exit.c ├── tst-minstack-throw.cc ├── tst-mutex5a.c ├── tst-mutex7a.c ├── tst-mutex8-static.c ├── tst-mutex8.c ├── tst-mutexpi1.c ├── tst-mutexpi10.c ├── tst-mutexpi11.c ├── tst-mutexpi12.c ├── tst-mutexpi2.c ├── tst-mutexpi3.c ├── tst-mutexpi4.c ├── tst-mutexpi5.c ├── tst-mutexpi6.c ├── tst-mutexpi7.c ├── tst-mutexpi8-static.c ├── tst-mutexpi8.c ├── tst-mutexpi9.c ├── tst-mutexpp1.c ├── tst-mutexpp10.c ├── tst-mutexpp5.c ├── tst-mutexpp6.c ├── tst-mutexpp9.c ├── tst-oddstacklimit.c ├── tst-once5.cc ├── tst-pthread-affinity-inheritance.c ├── tst-pthread-attr-affinity-fail.c ├── tst-pthread-attr-affinity.c ├── tst-pthread-attr-sigmask.c ├── tst-pthread-defaultattr-free.c ├── tst-pthread-gdb-attach-static.c ├── tst-pthread-gdb-attach.c ├── tst-pthread-getattr.c ├── tst-pthread-getcpuclockid-invalid.c ├── tst-pthread-key1-static.c ├── tst-pthread-timedlock-lockloop.c ├── tst-pthread_exit-nothreads-static.c ├── tst-pthread_exit-nothreads.c ├── tst-pthread_gettid_np.c ├── tst-robust-fork.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-rwlock10.c ├── tst-rwlock11.c ├── tst-rwlock15.c ├── tst-rwlock17.c ├── tst-rwlock18.c ├── tst-rwlock19.c ├── tst-rwlock2.c ├── tst-rwlock20.c ├── tst-rwlock21.c ├── tst-rwlock22.c ├── tst-rwlock3.c ├── tst-rwlock6.c ├── tst-rwlock7.c ├── tst-rwlock8.c ├── tst-rwlock9.c ├── tst-sched1.c ├── tst-sem11-static.c ├── tst-sem11.c ├── tst-sem12-static.c ├── tst-sem12.c ├── tst-sem13.c ├── tst-sem17.c ├── tst-setgetname.c ├── tst-setgroups.c ├── tst-setuid1-static.c ├── tst-setuid1.c ├── tst-setuid2.c ├── tst-signal3.c ├── tst-signal7.c ├── tst-skeleton-affinity-inheritance.c ├── tst-stack2.c ├── tst-stack3.c ├── tst-stack4.c ├── tst-stack4mod.c ├── tst-stackguard1-static.c ├── tst-stackguard1.c ├── tst-thread-affinity-pthread.c ├── tst-thread-affinity-pthread2.c ├── tst-thread-affinity-sched.c ├── tst-thread-exit-clobber.cc ├── tst-thread-setspecific.c ├── tst-thread_local1.cc ├── tst-tls3-malloc.c ├── tst-tls3.c ├── tst-tls3mod.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-tsd3.c ├── tst-tsd4.c ├── unwind.c ├── unwindbuf.sym └── vars.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 ├── cachedumper.c ├── connections.c ├── dbg_log.c ├── dbg_log.h ├── 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 ├── aliases.h ├── bug-erange.c ├── bug17079.c ├── compat-lookup.c ├── databases.def ├── db-Makefile ├── digits_dots.c ├── ether_hton.c ├── ether_ntoh.c ├── ethers-lookup.c ├── fgetgrent.c ├── fgetgrent_r.c ├── fgetpwent.c ├── fgetpwent_r.c ├── fgetsgent.c ├── fgetsgent_r.c ├── fgetspent.c ├── fgetspent_r.c ├── function.def ├── getXXbyYY.c ├── getXXbyYY_r.c ├── getXXent.c ├── getXXent_r.c ├── getaddrinfo.c ├── getaliasent.c ├── getaliasent_r.c ├── getaliasname.c ├── getaliasname_r.c ├── getent.c ├── getgrent.c ├── getgrent_r.c ├── getgrgid.c ├── getgrgid_r.c ├── getgrnam.c ├── getgrnam_r.c ├── gethstbyad.c ├── gethstbyad_r.c ├── gethstbynm.c ├── gethstbynm2.c ├── gethstbynm2_r.c ├── gethstbynm_r.c ├── gethstent.c ├── gethstent_r.c ├── getnameinfo.c ├── getnetbyad.c ├── getnetbyad_r.c ├── getnetbynm.c ├── getnetbynm_r.c ├── getnetent.c ├── getnetent_r.c ├── getnetgrent.c ├── getnetgrent_r.c ├── getnssent.c ├── getnssent_r.c ├── getproto.c ├── getproto_r.c ├── getprtent.c ├── getprtent_r.c ├── getprtname.c ├── getprtname_r.c ├── getpw.c ├── getpwent.c ├── getpwent_r.c ├── getpwnam.c ├── getpwnam_r.c ├── getpwuid.c ├── getpwuid_r.c ├── getrpcbyname.c ├── getrpcbyname_r.c ├── getrpcbynumber.c ├── getrpcbynumber_r.c ├── getrpcent.c ├── getrpcent_r.c ├── getservent.c ├── getservent_r.c ├── getsgent.c ├── getsgent_r.c ├── getsgnam.c ├── getsgnam_r.c ├── getspent.c ├── getspent_r.c ├── getspnam.c ├── getspnam_r.c ├── getsrvbynm.c ├── getsrvbynm_r.c ├── getsrvbypt.c ├── getsrvbypt_r.c ├── grp-lookup.c ├── grp-merge.c ├── grp-merge.h ├── grp.h ├── gshadow.h ├── hosts-lookup.c ├── initgroups-fallback.c ├── initgroups.c ├── key-lookup.c ├── lckpwdf.c ├── makedb.c ├── netgroup.h ├── netgrp-lookup.c ├── network-lookup.c ├── nss.h ├── nss_action.c ├── nss_action.h ├── nss_action_parse.c ├── nss_compat │ ├── compat-grp.c │ ├── compat-initgroups.c │ ├── compat-pwd.c │ ├── compat-spwd.c │ ├── nisdomain.c │ └── nisdomain.h ├── nss_database.c ├── nss_database.h ├── nss_db │ ├── db-XXX.c │ ├── db-init.c │ ├── db-initgroups.c │ ├── db-netgrp.c │ ├── db-open.c │ └── nss_db.h ├── nss_fgetent_r.c ├── nss_files │ ├── files-XXX.c │ ├── files-alias.c │ ├── files-ethers.c │ ├── files-grp.c │ ├── files-hosts.c │ ├── files-init.c │ ├── files-initgroups.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_files_data.c ├── nss_files_fopen.c ├── nss_files_functions.c ├── nss_hash.c ├── nss_module.c ├── nss_module.h ├── nss_parse_line_result.c ├── nss_readline.c ├── nss_test.h ├── nss_test.ver ├── nss_test1.c ├── nss_test2.c ├── nss_test_errno.c ├── nss_test_gai_hv2_canonname.c ├── nsswitch.c ├── nsswitch.conf ├── nsswitch.h ├── proto-lookup.c ├── putgrent.c ├── putpwent.c ├── putsgent.c ├── putspent.c ├── pwd-lookup.c ├── pwd.h ├── rewrite_field.c ├── rpc-lookup.c ├── service-lookup.c ├── sgetsgent.c ├── sgetsgent_r.c ├── sgetspent.c ├── sgetspent_r.c ├── sgrp-lookup.c ├── shadow.h ├── simple-nss-hash.h ├── spwd-lookup.c ├── test-digits-dots.c ├── test-netdb.c ├── test-rpcent.c ├── testgrp.c ├── tst-cancel-getpwuid_r.c ├── tst-fgetsgent_r.c ├── tst-field.c ├── tst-getaddrinfo.c ├── tst-getaddrinfo2.c ├── tst-getaddrinfo3.c ├── tst-getaddrinfo4.c ├── tst-getaddrinfo5.c ├── tst-gethnm.c ├── tst-getpw.c ├── tst-gshadow.c ├── tst-initgroups1.c ├── tst-initgroups1.root │ └── etc │ │ ├── group │ │ ├── nsswitch.conf │ │ └── passwd ├── tst-initgroups2.c ├── tst-initgroups2.root │ └── etc │ │ ├── group │ │ ├── nsswitch.conf │ │ └── passwd ├── tst-nss-action-parse.c ├── tst-nss-action-parse.root │ └── etc │ │ ├── group │ │ └── nsswitch.conf ├── tst-nss-compat1.c ├── tst-nss-compat1.root │ ├── etc │ │ ├── group │ │ ├── nsswitch.conf │ │ ├── passwd │ │ └── shadow │ └── tst-nss-compat1.script ├── 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 │ │ └── nsswitch.conf ├── tst-nss-files-hosts-multi.c ├── tst-nss-files-hosts-v4mapped.c ├── tst-nss-files-hosts-v4mapped.root │ └── etc │ │ ├── hosts │ │ └── nsswitch.conf ├── tst-nss-files-network.c ├── tst-nss-gai-actions.c ├── tst-nss-gai-actions.root │ └── etc │ │ ├── host.conf │ │ └── hosts ├── tst-nss-gai-hv2-canonname.c ├── tst-nss-gai-hv2-canonname.h ├── tst-nss-gai-hv2-canonname.root │ ├── postclean.req │ └── tst-nss-gai-hv2-canonname.script ├── tst-nss-getpwent.c ├── tst-nss-hash.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 ├── tst-nss-test_errno.c ├── tst-putgrent.c ├── tst-putpwent.c ├── tst-putsgent.c ├── tst-putspent.c ├── tst-reload1.c ├── tst-reload1.root │ ├── etc │ │ ├── nsswitch.conf │ │ ├── nsswitch.conf2 │ │ └── services │ ├── postclean.req │ └── tst-reload1.script ├── tst-reload2.c ├── tst-reload2.root │ ├── etc │ │ ├── hosts │ │ └── nsswitch.conf │ ├── subdir │ │ └── etc │ │ │ ├── group │ │ │ ├── hosts │ │ │ └── nsswitch.conf │ └── tst-reload2.script ├── tst-rfc3484-2.c ├── tst-rfc3484-3.c ├── tst-rfc3484.c ├── tst-sgetsgent.c ├── tst-shadow.c ├── tst_fgetgrent.c ├── tst_fgetgrent.sh ├── 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 ├── ka.po ├── ko.po ├── libc.pot ├── lt.po ├── nb.po ├── nl.po ├── pl.po ├── pot.header ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── rw.po ├── sk.po ├── sl.po ├── sr.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 ├── _Fork.c ├── _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-decl.h │ └── unistd.h ├── bsd-getpgrp.c ├── bug-ga1.c ├── bug-ga2.c ├── bug-ga2.root │ └── etc │ │ ├── hosts │ │ ├── nsswitch.conf │ │ └── services ├── 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 ├── execveat.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 ├── 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-time64.c ├── glob64.c ├── glob_internal.h ├── glob_pattern_p.c ├── globfree.c ├── globfree64-time64.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 ├── register-atfork.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 ├── setgroups.c ├── setpgid.c ├── setpgrp.c ├── setresgid.c ├── setresuid.c ├── setsid.c ├── setuid.c ├── shm-directory.c ├── sleep.c ├── spawn.c ├── spawn.h ├── spawn_faction_addchdir.c ├── spawn_faction_addclose.c ├── spawn_faction_addclosefrom.c ├── spawn_faction_adddup2.c ├── spawn_faction_addfchdir.c ├── spawn_faction_addopen.c ├── spawn_faction_addtcsetpgrp_np.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-_Fork.c ├── tst-boost.c ├── tst-chmod.c ├── tst-cpucount.c ├── tst-cpuset-dynamic.c ├── tst-cpuset-skeleton.c ├── tst-cpuset-static.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-execveat.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-fnmatch6.c ├── tst-fnmatch7.c ├── tst-fork.c ├── tst-gai_strerror.c ├── tst-getconf.sh ├── tst-getopt-cancel.c ├── tst-getopt_long1.c ├── tst-glob-bz30635.c ├── tst-glob-tilde.c ├── tst-glob_lstat_compat.c ├── tst-glob_symlinks.c ├── tst-gnuglob-skeleton.c ├── tst-gnuglob.c ├── tst-gnuglob64-time64.c ├── tst-gnuglob64.c ├── tst-libc-message.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-bracket-free.c ├── tst-regcomp-truncated.c ├── tst-regex.c ├── tst-regex.input ├── tst-regex2.c ├── tst-regexloc.c ├── tst-rxspencer-no-utf8.c ├── tst-rxspencer.c ├── tst-sched_getaffinity.c ├── tst-sched_rr_get_interval-time64.c ├── tst-sched_rr_get_interval.c ├── tst-spawn-chdir.c ├── tst-spawn-static.c ├── tst-spawn.c ├── tst-spawn.h ├── tst-spawn2.c ├── tst-spawn3.c ├── tst-spawn4-compat.c ├── tst-spawn4.c ├── tst-spawn5.c ├── tst-spawn6.c ├── tst-spawn7.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-wait-skeleton.c ├── tst-wait3-time64.c ├── tst-wait3.c ├── tst-wait4-time64.c ├── tst-wait4.c ├── tst-waitid.c ├── tst-wordexp-nocmd.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 ├── resolv ├── Depend ├── Makefile ├── README ├── Versions ├── arpa │ ├── nameser.h │ └── nameser_compat.h ├── base64.c ├── bits │ └── types │ │ └── res_state.h ├── compat-gethnamaddr.c ├── compat-hooks.c ├── dn_comp.c ├── dn_expand.c ├── dn_skipname.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 ├── inet_pton_length.c ├── libanl-compat.c ├── mapv4v6addr.h ├── netdb.h ├── ns_date.c ├── ns_makecanon.c ├── ns_name.c ├── ns_name_compress.c ├── ns_name_length_uncompressed.c ├── ns_name_ntop.c ├── ns_name_pack.c ├── ns_name_pton.c ├── ns_name_skip.c ├── ns_name_uncompress.c ├── ns_name_unpack.c ├── ns_netint.c ├── ns_parse.c ├── ns_print.c ├── ns_rr_cursor_init.c ├── ns_rr_cursor_next.c ├── ns_samebinaryname.c ├── ns_samedomain.c ├── ns_samename.c ├── ns_ttl.c ├── nsap_addr.c ├── nss_dns │ ├── dns-canon.c │ ├── dns-host.c │ └── dns-network.c ├── nss_dns_functions.c ├── res-close.c ├── res-name-checking.c ├── res-noaaaa.c ├── res-putget.c ├── res-state.c ├── res_context_hostalias.c ├── res_data.c ├── res_debug.c ├── res_enable_icmp.c ├── res_get_nsaddr.c ├── res_hconf.c ├── res_hconf.h ├── res_hostalias.c ├── res_init.c ├── res_isourserver.c ├── res_libc.c ├── res_mkquery.c ├── res_nameinquery.c ├── res_queriesmatch.c ├── res_query.c ├── res_randomid.c ├── res_send.c ├── resolv-deprecated.c ├── resolv-internal.h ├── resolv.h ├── resolv_conf.c ├── resolv_conf.h ├── resolv_context.c ├── resolv_context.h ├── sys │ └── bitypes.h ├── tst-aton.c ├── tst-bug18665-tcp.c ├── tst-bug18665.c ├── tst-getaddrinfo-eai-again-timeout.c ├── tst-getaddrinfo-eai-again.c ├── tst-inet_addr-binary.c ├── tst-inet_aton_exact.c ├── tst-inet_ntop.c ├── tst-inet_pton.c ├── tst-leaks.c ├── tst-leaks2.c ├── tst-leaks2.root │ └── etc │ │ ├── hosts │ │ └── nsswitch.conf ├── tst-no-libidn2.c ├── tst-ns_name.c ├── tst-ns_name.data ├── tst-ns_name_compress.c ├── tst-ns_name_length_uncompressed.c ├── tst-ns_name_pton.c ├── tst-ns_rr_cursor.c ├── tst-ns_samebinaryname.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-aliases.c ├── tst-resolv-basic.c ├── tst-resolv-binary.c ├── tst-resolv-byaddr.c ├── tst-resolv-canonname.c ├── tst-resolv-edns.c ├── tst-resolv-getaddrinfo-fqdn.c ├── tst-resolv-invalid-cname.c ├── tst-resolv-maybe_insert_sig.h ├── tst-resolv-network.c ├── tst-resolv-noaaaa-vc.c ├── tst-resolv-noaaaa.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-semi-failure.c ├── tst-resolv-short-response.c ├── tst-resolv-threads.c ├── tst-resolv-trailing.c ├── tst-resolv-trustad.c └── tst-resolv-txnid-collision.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 ├── 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 ├── librt-compat.c ├── lio_listio-common.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-time64.c ├── tst-aio6.c ├── tst-aio64.c ├── tst-aio7.c ├── tst-aio8.c ├── tst-aio9.c ├── tst-bz28213.c ├── tst-clock_nanosleep2-time64.c ├── tst-clock_nanosleep2.c ├── tst-cpuclock2-time64.c ├── tst-cpuclock2.c ├── tst-cputimer1.c ├── tst-cputimer2.c ├── tst-cputimer3.c ├── tst-mqueue.h ├── tst-mqueue1-time64.c ├── tst-mqueue1.c ├── tst-mqueue10-time64.c ├── tst-mqueue10.c ├── tst-mqueue2-time64.c ├── tst-mqueue2.c ├── tst-mqueue3.c ├── tst-mqueue4-time64.c ├── tst-mqueue4.c ├── tst-mqueue5.c ├── tst-mqueue6.c ├── tst-mqueue7.c ├── tst-mqueue8-time64.c ├── tst-mqueue8.c ├── tst-mqueue9.c ├── tst-shm-cancel.c ├── tst-shm.c ├── tst-timer-sigmask.c ├── tst-timer.c ├── tst-timer2.c ├── tst-timer3.c ├── tst-timer4-time64.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 ├── check-wx-segment.py ├── config-uname.sh ├── config.guess ├── config.sub ├── cpp ├── cross-test-ssh.sh ├── documented.sh ├── dso-ordering-test.py ├── 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 ├── glibc_shared_code.py ├── glibcelf.py ├── glibcextract.py ├── glibcpp.py ├── glibcsymbols.py ├── haveversions.awk ├── install-sh ├── lib-names.awk ├── lint-makefiles.sh ├── list-fixed-bugs.py ├── list-sources.sh ├── localplt.awk ├── merge-test-results.sh ├── mkinstalldirs ├── move-if-change ├── move-symbol-to-libc.py ├── process-advisories.sh ├── pylint ├── pylintrc ├── rellns-sh ├── sort-makefile-lines.py ├── soversions.awk ├── sysd-rules.awk ├── test-installation.pl ├── test_printers_common.py ├── test_printers_exceptions.py ├── tst-elf-edit.py ├── tst-ld-trace.py ├── update-abilist.sh ├── update-copyrights ├── vcstocl_quirks.py ├── versionlist.awk └── versions.awk ├── setjmp ├── Makefile ├── Versions ├── __longjmp.c ├── bits │ ├── setjmp2.h │ └── types │ │ └── struct___jmp_buf_tag.h ├── bsd-_setjmp.c ├── bsd-setjmp.c ├── bug269-setjmp.c ├── jmp-unwind.c ├── jmp_buf-macros.sym ├── jmpbug.c ├── longjmp.c ├── setjmp.c ├── setjmp.h ├── sigjmp.c ├── tst-setjmp-check.c ├── tst-setjmp-fp.c ├── tst-setjmp-static.c ├── tst-setjmp.c └── tst-sigsetjmp.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 ├── libc_sigaction.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-minsigstksz-5.c ├── tst-raise.c ├── tst-sigaction.c ├── tst-sigisemptyset.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 ├── sockaddr_un_set.c ├── sockatmark.c ├── socket.c ├── socketpair.c ├── sys │ ├── socket.h │ └── un.h ├── tst-accept4.c ├── tst-cmsg_cloexec.c ├── tst-cmsghdr-skeleton.c ├── tst-cmsghdr.c ├── tst-connect.c ├── tst-shutdown.c ├── tst-sockaddr_un_set.c ├── tst-sockopt-time64.c └── tst-sockopt.c ├── soft-fp ├── Makefile ├── adddf3.c ├── addsf3.c ├── addtf3.c ├── brain.h ├── divdf3.c ├── divsf3.c ├── divtf3.c ├── double.h ├── eqdf2.c ├── eqhf2.c ├── eqsf2.c ├── eqtf2.c ├── extendbfsf2.c ├── extenddftf2.c ├── extended.h ├── extendhfdf2.c ├── extendhfsf2.c ├── extendhftf2.c ├── extendhfxf2.c ├── extendsfdf2.c ├── extendsftf2.c ├── extendxftf2.c ├── fixdfdi.c ├── fixdfsi.c ├── fixdfti.c ├── fixhfdi.c ├── fixhfsi.c ├── fixhfti.c ├── fixsfdi.c ├── fixsfsi.c ├── fixsfti.c ├── fixtfdi.c ├── fixtfsi.c ├── fixtfti.c ├── fixunsdfdi.c ├── fixunsdfsi.c ├── fixunsdfti.c ├── fixunshfdi.c ├── fixunshfsi.c ├── fixunshfti.c ├── fixunssfdi.c ├── fixunssfsi.c ├── fixunssfti.c ├── fixunstfdi.c ├── fixunstfsi.c ├── fixunstfti.c ├── floatdibf.c ├── floatdidf.c ├── floatdihf.c ├── floatdisf.c ├── floatditf.c ├── floatsidf.c ├── floatsihf.c ├── floatsisf.c ├── floatsitf.c ├── floattibf.c ├── floattidf.c ├── floattihf.c ├── floattisf.c ├── floattitf.c ├── floatundibf.c ├── floatundidf.c ├── floatundihf.c ├── floatundisf.c ├── floatunditf.c ├── floatunsidf.c ├── floatunsihf.c ├── floatunsisf.c ├── floatunsitf.c ├── floatuntibf.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 ├── truncbfhf2.c ├── truncdfbf2.c ├── truncdfhf2.c ├── truncdfsf2.c ├── trunchfbf2.c ├── truncsfbf2.c ├── truncsfhf2.c ├── trunctfbf2.c ├── trunctfdf2.c ├── trunctfhf2.c ├── trunctfsf2.c ├── trunctfxf2.c ├── truncxfbf2.c ├── truncxfhf2.c ├── unorddf2.c ├── unordsf2.c └── unordtf2.c ├── stdio-common ├── Depend ├── Makefile ├── Versions ├── Xprintf_buffer_done.c ├── Xprintf_buffer_flush.c ├── Xprintf_buffer_pad_1.c ├── Xprintf_buffer_putc_1.c ├── Xprintf_buffer_puts_1.c ├── Xprintf_buffer_write.c ├── Xprintf_function_invoke.c ├── _fitoa_word.c ├── _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.c ├── bug24.c ├── bug25.c ├── bug26.c ├── bug27.c ├── bug28.c ├── bug29.c ├── bug3.c ├── bug4.c ├── bug5.c ├── bug6.c ├── bug6.input ├── bug7.c ├── bug8.c ├── bug9.c ├── ctermid.c ├── cuserid.c ├── dprintf.c ├── err_map.h ├── errlist-compat-data.h ├── errlist-data-gen.c ├── errlist-data.S ├── errlist.c ├── errname.c ├── errnobug.c ├── flockfile.c ├── fprintf.c ├── fscanf.c ├── ftrylockfile.c ├── funlockfile.c ├── fxprintf.c ├── gentempfd.c ├── getline.c ├── getw.c ├── grouping_iterator.c ├── grouping_iterator.h ├── iovfscanf.c ├── isoc23_fscanf.c ├── isoc23_scanf.c ├── isoc23_sscanf.c ├── isoc23_vfscanf.c ├── isoc23_vscanf.c ├── isoc23_vsscanf.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_buffer-char.h ├── printf_buffer-wchar_t.h ├── printf_buffer_as_file.c ├── printf_buffer_as_file.h ├── printf_buffer_done.c ├── printf_buffer_flush.c ├── printf_buffer_pad_1.c ├── printf_buffer_putc_1.c ├── printf_buffer_puts_1.c ├── printf_buffer_to_file.c ├── printf_buffer_to_file.h ├── printf_buffer_write.c ├── printf_fp.c ├── printf_fphex.c ├── printf_function_invoke.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 ├── scanf15.c ├── scanf16.c ├── scanf17.c ├── scanf18.c ├── scanf19.c ├── scanf2.c ├── scanf3.c ├── scanf4.c ├── scanf5.c ├── scanf7.c ├── scanf8.c ├── scanf9.c ├── siglist-gen.c ├── siglist.S ├── snprintf.c ├── sprintf.c ├── sscanf.c ├── stdio_ext.h ├── tempnam.c ├── tempname.c ├── temptest.c ├── test-fseek.c ├── test-fwrite.c ├── test-popen.c ├── test-strerr.c ├── test-vfprintf.c ├── test_rdwr.c ├── tfformat.c ├── tiformat.c ├── tllformat.c ├── tmpdir.c ├── tmpdir.h ├── tmpfile.c ├── tmpfile64.c ├── tmpnam.c ├── tmpnam_r.c ├── translated_number_width.c ├── tst-bz11319-fortify2.c ├── tst-bz11319.c ├── tst-bz12701-c.c ├── tst-cookie.c ├── tst-dprintf-length.c ├── tst-errno-manual.py ├── tst-fclose-devzero.c ├── tst-fclose-offset.c ├── tst-fdopen.c ├── tst-fdopen2.c ├── tst-ferror.c ├── tst-ferror.input ├── tst-fflush-all-input.c ├── tst-fflush-mmap.c ├── tst-fgets.c ├── tst-fgets2.c ├── tst-fileno.c ├── tst-fmemopen.c ├── tst-fmemopen2.c ├── tst-fmemopen3.c ├── tst-fmemopen4.c ├── tst-fopen.c ├── tst-fphex-wide.c ├── tst-fphex.c ├── tst-fread.c ├── tst-freopen2-main.c ├── tst-freopen2.c ├── tst-freopen3-main.c ├── tst-freopen3.c ├── tst-freopen4-main.c ├── tst-freopen4.c ├── tst-freopen5.c ├── tst-freopen6-main.c ├── tst-freopen6.c ├── tst-freopen64-2.c ├── tst-freopen64-3.c ├── tst-freopen64-4.c ├── tst-freopen64-6.c ├── tst-freopen64-7.c ├── tst-freopen7-main.c ├── tst-freopen7.c ├── tst-fseek-mmap.c ├── tst-fseek.c ├── tst-fwrite-bz29459.c ├── tst-fwrite-bz29459.sh ├── tst-fwrite-memstrm.c ├── tst-fwrite-overflow.c ├── tst-fwrite-pipe.c ├── tst-fwrite-pos.c ├── tst-fwrite-ro.c ├── tst-fwrite.c ├── tst-getline-enomem.c ├── tst-getline.c ├── tst-gets.c ├── tst-gets.input ├── tst-grouping.c ├── tst-grouping2.c ├── tst-grouping3.c ├── tst-grouping_iterator.c ├── tst-long-dbl-fphex.c ├── tst-memstream-string.c ├── tst-obprintf.c ├── tst-perror.c ├── tst-popen.c ├── tst-popen2.c ├── tst-popen3.c ├── tst-printf-binary-main.c ├── tst-printf-binary.c ├── tst-printf-bz18872.sh ├── tst-printf-bz25691.c ├── tst-printf-format-as-c.c ├── tst-printf-format-as-char.c ├── tst-printf-format-as-double.c ├── tst-printf-format-as-int.c ├── tst-printf-format-as-ldouble.c ├── tst-printf-format-as-llong.c ├── tst-printf-format-as-long.c ├── tst-printf-format-as-s.c ├── tst-printf-format-as-short.c ├── tst-printf-format-as-uchar.c ├── tst-printf-format-as-uint.c ├── tst-printf-format-as-ullong.c ├── tst-printf-format-as-ulong.c ├── tst-printf-format-as-ushort.c ├── tst-printf-format-as.h ├── tst-printf-format-c.sh ├── tst-printf-format-char.sh ├── tst-printf-format-d-c.c ├── tst-printf-format-d-char.c ├── tst-printf-format-d-double.c ├── tst-printf-format-d-int.c ├── tst-printf-format-d-ldouble.c ├── tst-printf-format-d-llong.c ├── tst-printf-format-d-long.c ├── tst-printf-format-d-s.c ├── tst-printf-format-d-short.c ├── tst-printf-format-d-uchar.c ├── tst-printf-format-d-uint.c ├── tst-printf-format-d-ullong.c ├── tst-printf-format-d-ulong.c ├── tst-printf-format-d-ushort.c ├── tst-printf-format-d.h ├── tst-printf-format-double.sh ├── tst-printf-format-f-c.c ├── tst-printf-format-f-char.c ├── tst-printf-format-f-double.c ├── tst-printf-format-f-int.c ├── tst-printf-format-f-ldouble.c ├── tst-printf-format-f-llong.c ├── tst-printf-format-f-long.c ├── tst-printf-format-f-s.c ├── tst-printf-format-f-short.c ├── tst-printf-format-f-uchar.c ├── tst-printf-format-f-uint.c ├── tst-printf-format-f-ullong.c ├── tst-printf-format-f-ulong.c ├── tst-printf-format-f-ushort.c ├── tst-printf-format-f.h ├── tst-printf-format-int.sh ├── tst-printf-format-ldouble.sh ├── tst-printf-format-llong.sh ├── tst-printf-format-long.sh ├── tst-printf-format-p-c.c ├── tst-printf-format-p-char.c ├── tst-printf-format-p-double.c ├── tst-printf-format-p-int.c ├── tst-printf-format-p-ldouble.c ├── tst-printf-format-p-llong.c ├── tst-printf-format-p-long.c ├── tst-printf-format-p-s.c ├── tst-printf-format-p-short.c ├── tst-printf-format-p-uchar.c ├── tst-printf-format-p-uint.c ├── tst-printf-format-p-ullong.c ├── tst-printf-format-p-ulong.c ├── tst-printf-format-p-ushort.c ├── tst-printf-format-p.h ├── tst-printf-format-s-c.c ├── tst-printf-format-s-char.c ├── tst-printf-format-s-double.c ├── tst-printf-format-s-int.c ├── tst-printf-format-s-ldouble.c ├── tst-printf-format-s-llong.c ├── tst-printf-format-s-long.c ├── tst-printf-format-s-s.c ├── tst-printf-format-s-short.c ├── tst-printf-format-s-uchar.c ├── tst-printf-format-s-uint.c ├── tst-printf-format-s-ullong.c ├── tst-printf-format-s-ulong.c ├── tst-printf-format-s-ushort.c ├── tst-printf-format-s.h ├── tst-printf-format-s.sh ├── tst-printf-format-short.sh ├── tst-printf-format-skeleton-c.c ├── tst-printf-format-skeleton-char.c ├── tst-printf-format-skeleton-double.c ├── tst-printf-format-skeleton-int.c ├── tst-printf-format-skeleton-ldouble.c ├── tst-printf-format-skeleton-llong.c ├── tst-printf-format-skeleton-long.c ├── tst-printf-format-skeleton-s.c ├── tst-printf-format-skeleton-short.c ├── tst-printf-format-skeleton-uchar.c ├── tst-printf-format-skeleton-uint.c ├── tst-printf-format-skeleton-ullong.c ├── tst-printf-format-skeleton-ulong.c ├── tst-printf-format-skeleton-ushort.c ├── tst-printf-format-skeleton.c ├── tst-printf-format-sn-c.c ├── tst-printf-format-sn-char.c ├── tst-printf-format-sn-double.c ├── tst-printf-format-sn-int.c ├── tst-printf-format-sn-ldouble.c ├── tst-printf-format-sn-llong.c ├── tst-printf-format-sn-long.c ├── tst-printf-format-sn-s.c ├── tst-printf-format-sn-short.c ├── tst-printf-format-sn-uchar.c ├── tst-printf-format-sn-uint.c ├── tst-printf-format-sn-ullong.c ├── tst-printf-format-sn-ulong.c ├── tst-printf-format-sn-ushort.c ├── tst-printf-format-sn.h ├── tst-printf-format-uchar.sh ├── tst-printf-format-uint.sh ├── tst-printf-format-ullong.sh ├── tst-printf-format-ulong.sh ├── tst-printf-format-ushort.sh ├── tst-printf-format-v-c.c ├── tst-printf-format-v-char.c ├── tst-printf-format-v-double.c ├── tst-printf-format-v-int.c ├── tst-printf-format-v-ldouble.c ├── tst-printf-format-v-llong.c ├── tst-printf-format-v-long.c ├── tst-printf-format-v-s.c ├── tst-printf-format-v-short.c ├── tst-printf-format-v-uchar.c ├── tst-printf-format-v-uint.c ├── tst-printf-format-v-ullong.c ├── tst-printf-format-v-ulong.c ├── tst-printf-format-v-ushort.c ├── tst-printf-format-v.h ├── tst-printf-format-vas-c.c ├── tst-printf-format-vas-char.c ├── tst-printf-format-vas-double.c ├── tst-printf-format-vas-int.c ├── tst-printf-format-vas-ldouble.c ├── tst-printf-format-vas-llong.c ├── tst-printf-format-vas-long.c ├── tst-printf-format-vas-s.c ├── tst-printf-format-vas-short.c ├── tst-printf-format-vas-uchar.c ├── tst-printf-format-vas-uint.c ├── tst-printf-format-vas-ullong.c ├── tst-printf-format-vas-ulong.c ├── tst-printf-format-vas-ushort.c ├── tst-printf-format-vas.h ├── tst-printf-format-vd-c.c ├── tst-printf-format-vd-char.c ├── tst-printf-format-vd-double.c ├── tst-printf-format-vd-int.c ├── tst-printf-format-vd-ldouble.c ├── tst-printf-format-vd-llong.c ├── tst-printf-format-vd-long.c ├── tst-printf-format-vd-s.c ├── tst-printf-format-vd-short.c ├── tst-printf-format-vd-uchar.c ├── tst-printf-format-vd-uint.c ├── tst-printf-format-vd-ullong.c ├── tst-printf-format-vd-ulong.c ├── tst-printf-format-vd-ushort.c ├── tst-printf-format-vd.h ├── tst-printf-format-vf-c.c ├── tst-printf-format-vf-char.c ├── tst-printf-format-vf-double.c ├── tst-printf-format-vf-int.c ├── tst-printf-format-vf-ldouble.c ├── tst-printf-format-vf-llong.c ├── tst-printf-format-vf-long.c ├── tst-printf-format-vf-s.c ├── tst-printf-format-vf-short.c ├── tst-printf-format-vf-uchar.c ├── tst-printf-format-vf-uint.c ├── tst-printf-format-vf-ullong.c ├── tst-printf-format-vf-ulong.c ├── tst-printf-format-vf-ushort.c ├── tst-printf-format-vf.h ├── tst-printf-format-vs-c.c ├── tst-printf-format-vs-char.c ├── tst-printf-format-vs-double.c ├── tst-printf-format-vs-int.c ├── tst-printf-format-vs-ldouble.c ├── tst-printf-format-vs-llong.c ├── tst-printf-format-vs-long.c ├── tst-printf-format-vs-s.c ├── tst-printf-format-vs-short.c ├── tst-printf-format-vs-uchar.c ├── tst-printf-format-vs-uint.c ├── tst-printf-format-vs-ullong.c ├── tst-printf-format-vs-ulong.c ├── tst-printf-format-vs-ushort.c ├── tst-printf-format-vs.h ├── tst-printf-format-vsn-c.c ├── tst-printf-format-vsn-char.c ├── tst-printf-format-vsn-double.c ├── tst-printf-format-vsn-int.c ├── tst-printf-format-vsn-ldouble.c ├── tst-printf-format-vsn-llong.c ├── tst-printf-format-vsn-long.c ├── tst-printf-format-vsn-s.c ├── tst-printf-format-vsn-short.c ├── tst-printf-format-vsn-uchar.c ├── tst-printf-format-vsn-uint.c ├── tst-printf-format-vsn-ullong.c ├── tst-printf-format-vsn-ulong.c ├── tst-printf-format-vsn-ushort.c ├── tst-printf-format-vsn.h ├── tst-printf-format.awk ├── tst-printf-format.sh ├── tst-printf-fp-free.c ├── tst-printf-fp-leak.c ├── tst-printf-intn-main.c ├── tst-printf-intn.c ├── tst-printf-macro.c ├── tst-printf-oct.c ├── 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-read-offset.c ├── tst-renameat2.c ├── tst-rndseek.c ├── tst-scanf-binary-c11.c ├── tst-scanf-binary-c23.c ├── tst-scanf-binary-gnu11.c ├── tst-scanf-binary-gnu89.c ├── tst-scanf-binary-main.c ├── tst-scanf-bz27650.c ├── tst-scanf-format-c-b.input ├── tst-scanf-format-c-c.input ├── tst-scanf-format-c-s.input ├── tst-scanf-format-char-d.input ├── tst-scanf-format-char-i.input ├── tst-scanf-format-character.h ├── tst-scanf-format-f-c.c ├── tst-scanf-format-f-char.c ├── tst-scanf-format-f-double.c ├── tst-scanf-format-f-float.c ├── tst-scanf-format-f-int.c ├── tst-scanf-format-f-ldouble.c ├── tst-scanf-format-f-llong.c ├── tst-scanf-format-f-long.c ├── tst-scanf-format-f-short.c ├── tst-scanf-format-f-uchar.c ├── tst-scanf-format-f-uint.c ├── tst-scanf-format-f-ullong.c ├── tst-scanf-format-f-ulong.c ├── tst-scanf-format-f-ushort.c ├── tst-scanf-format-f.h ├── tst-scanf-format-integer.h ├── tst-scanf-format-llong-d.input ├── tst-scanf-format-llong-i.input ├── tst-scanf-format-real.h ├── tst-scanf-format-s-c.c ├── tst-scanf-format-s-char.c ├── tst-scanf-format-s-double.c ├── tst-scanf-format-s-float.c ├── tst-scanf-format-s-int.c ├── tst-scanf-format-s-ldouble.c ├── tst-scanf-format-s-llong.c ├── tst-scanf-format-s-long.c ├── tst-scanf-format-s-short.c ├── tst-scanf-format-s-uchar.c ├── tst-scanf-format-s-uint.c ├── tst-scanf-format-s-ullong.c ├── tst-scanf-format-s-ulong.c ├── tst-scanf-format-s-ushort.c ├── tst-scanf-format-s.h ├── tst-scanf-format-short-d.input ├── tst-scanf-format-short-i.input ├── tst-scanf-format-skeleton-c.c ├── tst-scanf-format-skeleton-char.c ├── tst-scanf-format-skeleton-double.c ├── tst-scanf-format-skeleton-float.c ├── tst-scanf-format-skeleton-int.c ├── tst-scanf-format-skeleton-ldouble.c ├── tst-scanf-format-skeleton-llong.c ├── tst-scanf-format-skeleton-long.c ├── tst-scanf-format-skeleton-short.c ├── tst-scanf-format-skeleton-uchar.c ├── tst-scanf-format-skeleton-uint.c ├── tst-scanf-format-skeleton-ullong.c ├── tst-scanf-format-skeleton-ulong.c ├── tst-scanf-format-skeleton-ushort.c ├── tst-scanf-format-skeleton.c ├── tst-scanf-format-skeleton.h ├── tst-scanf-format-ss-c.c ├── tst-scanf-format-ss-char.c ├── tst-scanf-format-ss-double.c ├── tst-scanf-format-ss-float.c ├── tst-scanf-format-ss-int.c ├── tst-scanf-format-ss-ldouble.c ├── tst-scanf-format-ss-llong.c ├── tst-scanf-format-ss-long.c ├── tst-scanf-format-ss-short.c ├── tst-scanf-format-ss-uchar.c ├── tst-scanf-format-ss-uint.c ├── tst-scanf-format-ss-ullong.c ├── tst-scanf-format-ss-ulong.c ├── tst-scanf-format-ss-ushort.c ├── tst-scanf-format-ss.h ├── tst-scanf-format-uchar-b.input ├── tst-scanf-format-uchar-o.input ├── tst-scanf-format-uchar-u.input ├── tst-scanf-format-uchar-x.input ├── tst-scanf-format-uchar-xx.input ├── tst-scanf-format-ullong-b.input ├── tst-scanf-format-ullong-o.input ├── tst-scanf-format-ullong-u.input ├── tst-scanf-format-ullong-x.input ├── tst-scanf-format-ullong-xx.input ├── tst-scanf-format-ushort-b.input ├── tst-scanf-format-ushort-o.input ├── tst-scanf-format-ushort-u.input ├── tst-scanf-format-ushort-x.input ├── tst-scanf-format-ushort-xx.input ├── tst-scanf-format-v-c.c ├── tst-scanf-format-v-char.c ├── tst-scanf-format-v-double.c ├── tst-scanf-format-v-float.c ├── tst-scanf-format-v-int.c ├── tst-scanf-format-v-ldouble.c ├── tst-scanf-format-v-llong.c ├── tst-scanf-format-v-long.c ├── tst-scanf-format-v-short.c ├── tst-scanf-format-v-uchar.c ├── tst-scanf-format-v-uint.c ├── tst-scanf-format-v-ullong.c ├── tst-scanf-format-v-ulong.c ├── tst-scanf-format-v-ushort.c ├── tst-scanf-format-v.h ├── tst-scanf-format-vf-c.c ├── tst-scanf-format-vf-char.c ├── tst-scanf-format-vf-double.c ├── tst-scanf-format-vf-float.c ├── tst-scanf-format-vf-int.c ├── tst-scanf-format-vf-ldouble.c ├── tst-scanf-format-vf-llong.c ├── tst-scanf-format-vf-long.c ├── tst-scanf-format-vf-short.c ├── tst-scanf-format-vf-uchar.c ├── tst-scanf-format-vf-uint.c ├── tst-scanf-format-vf-ullong.c ├── tst-scanf-format-vf-ulong.c ├── tst-scanf-format-vf-ushort.c ├── tst-scanf-format-vf.h ├── tst-scanf-format-vs-c.c ├── tst-scanf-format-vs-char.c ├── tst-scanf-format-vs-double.c ├── tst-scanf-format-vs-float.c ├── tst-scanf-format-vs-int.c ├── tst-scanf-format-vs-ldouble.c ├── tst-scanf-format-vs-llong.c ├── tst-scanf-format-vs-long.c ├── tst-scanf-format-vs-short.c ├── tst-scanf-format-vs-uchar.c ├── tst-scanf-format-vs-uint.c ├── tst-scanf-format-vs-ullong.c ├── tst-scanf-format-vs-ulong.c ├── tst-scanf-format-vs-ushort.c ├── tst-scanf-format-vs.h ├── tst-scanf-intn-main.c ├── tst-scanf-intn.c ├── tst-scanf-nan.c ├── tst-scanf-round.c ├── tst-scanf-to_inpunct.c ├── tst-setvbuf1.c ├── tst-setvbuf1.expect ├── tst-setvbuf2-ind.c ├── tst-setvbuf2.c ├── tst-sprintf-errno.c ├── 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-fflush.c ├── tst-ungetc-leak.c ├── tst-ungetc-nomem.c ├── tst-ungetc.c ├── tst-unlockedio.c ├── tst-vfprintf-mbs-prec.c ├── tst-vfprintf-user-type.c ├── tst-vfprintf-width-i18n.c ├── tst-vfprintf-width-prec-alloc.c ├── tst-vfprintf-width-prec.c ├── tst-wc-printf.c ├── tstdiomisc.c ├── tstgetln.c ├── tstgetln.input ├── tstscanf.c ├── tstscanf.input ├── vfprintf-internal.c ├── vfprintf-process-arg.c ├── vfprintf.c ├── vfscanf-internal.c ├── vfscanf.c ├── vfwprintf-internal.c ├── vfwprintf.c ├── vfwscanf-internal.c ├── vfwscanf.c ├── vprintf.c ├── wprintf_buffer_as_file.c ├── wprintf_buffer_done.c ├── wprintf_buffer_flush.c ├── wprintf_buffer_pad_1.c ├── wprintf_buffer_putc_1.c ├── wprintf_buffer_puts_1.c ├── wprintf_buffer_to_file.c ├── wprintf_buffer_write.c ├── wprintf_function_invoke.c └── xbug.c ├── stdlib ├── Depend ├── Makefile ├── Versions ├── a64l.c ├── abort.c ├── abs.c ├── add_n.c ├── addmul_1.c ├── alloca.h ├── arc4random.c ├── arc4random_uniform.c ├── 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 ├── lrand48.c ├── lrand48_r.c ├── lshift.c ├── makecontext.c ├── mblen.c ├── mbstowcs.c ├── mbtowc.c ├── memalignment.c ├── mod_1.c ├── monetary.h ├── mpn2dbl.c ├── mpn2flt.c ├── mpn2ldbl.c ├── mrand48.c ├── mrand48_r.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 ├── setenv.h ├── srand48.c ├── srand48_r.c ├── stdbit.h ├── stdc_bit_ceil_uc.c ├── stdc_bit_ceil_ui.c ├── stdc_bit_ceil_ul.c ├── stdc_bit_ceil_ull.c ├── stdc_bit_ceil_us.c ├── stdc_bit_floor_uc.c ├── stdc_bit_floor_ui.c ├── stdc_bit_floor_ul.c ├── stdc_bit_floor_ull.c ├── stdc_bit_floor_us.c ├── stdc_bit_width_uc.c ├── stdc_bit_width_ui.c ├── stdc_bit_width_ul.c ├── stdc_bit_width_ull.c ├── stdc_bit_width_us.c ├── stdc_count_ones_uc.c ├── stdc_count_ones_ui.c ├── stdc_count_ones_ul.c ├── stdc_count_ones_ull.c ├── stdc_count_ones_us.c ├── stdc_count_zeros_uc.c ├── stdc_count_zeros_ui.c ├── stdc_count_zeros_ul.c ├── stdc_count_zeros_ull.c ├── stdc_count_zeros_us.c ├── stdc_first_leading_one_uc.c ├── stdc_first_leading_one_ui.c ├── stdc_first_leading_one_ul.c ├── stdc_first_leading_one_ull.c ├── stdc_first_leading_one_us.c ├── stdc_first_leading_zero_uc.c ├── stdc_first_leading_zero_ui.c ├── stdc_first_leading_zero_ul.c ├── stdc_first_leading_zero_ull.c ├── stdc_first_leading_zero_us.c ├── stdc_first_trailing_one_uc.c ├── stdc_first_trailing_one_ui.c ├── stdc_first_trailing_one_ul.c ├── stdc_first_trailing_one_ull.c ├── stdc_first_trailing_one_us.c ├── stdc_first_trailing_zero_uc.c ├── stdc_first_trailing_zero_ui.c ├── stdc_first_trailing_zero_ul.c ├── stdc_first_trailing_zero_ull.c ├── stdc_first_trailing_zero_us.c ├── stdc_has_single_bit_uc.c ├── stdc_has_single_bit_ui.c ├── stdc_has_single_bit_ul.c ├── stdc_has_single_bit_ull.c ├── stdc_has_single_bit_us.c ├── stdc_leading_ones_uc.c ├── stdc_leading_ones_ui.c ├── stdc_leading_ones_ul.c ├── stdc_leading_ones_ull.c ├── stdc_leading_ones_us.c ├── stdc_leading_zeros_uc.c ├── stdc_leading_zeros_ui.c ├── stdc_leading_zeros_ul.c ├── stdc_leading_zeros_ull.c ├── stdc_leading_zeros_us.c ├── stdc_trailing_ones_uc.c ├── stdc_trailing_ones_ui.c ├── stdc_trailing_ones_ul.c ├── stdc_trailing_ones_ull.c ├── stdc_trailing_ones_us.c ├── stdc_trailing_zeros_uc.c ├── stdc_trailing_zeros_ui.c ├── stdc_trailing_zeros_ul.c ├── stdc_trailing_zeros_ull.c ├── stdc_trailing_zeros_us.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 ├── 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 ├── 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-atexit-recursive.c ├── test-bz22786.c ├── test-canon.c ├── test-canon2.c ├── test-cxa_atexit-race.c ├── test-cxa_atexit-race2.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-abs.c ├── tst-arc4random-fork.c ├── tst-arc4random-stats.c ├── tst-arc4random-thread.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-canon-bz26341.c ├── tst-concurrent-exit-skeleton.c ├── tst-concurrent-exit.c ├── tst-concurrent-quick_exit.c ├── tst-const.c ├── tst-cxa_atexit.c ├── tst-empty-env.c ├── tst-environ-change-1.c ├── tst-environ-change-2.c ├── tst-environ-change-3.c ├── tst-environ-change-4.c ├── tst-environ-change-skeleton.c ├── tst-environ.c ├── tst-fmtmsg.c ├── tst-fmtmsg.sh ├── tst-getenv-signal.c ├── tst-getenv-static.c ├── tst-getenv-thread.c ├── tst-getenv-unsetenv.c ├── tst-getrandom-errno.c ├── tst-getrandom.c ├── tst-getrandom2.c ├── tst-labs.c ├── tst-limits.c ├── tst-llabs.c ├── tst-makecontext-align.c ├── tst-makecontext.c ├── tst-makecontext2.c ├── tst-makecontext3.c ├── tst-memalignment.c ├── tst-on_exit.c ├── tst-putenv.c ├── tst-putenvmod.c ├── tst-qsort.c ├── tst-qsort2.c ├── tst-qsort3.c ├── tst-qsort4.c ├── tst-qsort6.c ├── tst-qsort7.c ├── tst-qsortx7.c ├── tst-quick_exit.cc ├── tst-rand-sequence.c ├── tst-rand48-2.c ├── tst-rand48.c ├── tst-random-bz30584.c ├── tst-random.c ├── tst-random2.c ├── tst-realpath-toolong.c ├── tst-realpath.c ├── tst-secure-getenv.c ├── tst-setcontext.c ├── tst-setcontext10.c ├── tst-setcontext11.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-setenv-environ.c ├── tst-stdbit-Wconversion.c ├── tst-stdbit-builtins.c ├── tst-stdbit.h ├── tst-stdc_bit_ceil.c ├── tst-stdc_bit_floor.c ├── tst-stdc_bit_width.c ├── tst-stdc_count_ones.c ├── tst-stdc_count_zeros.c ├── tst-stdc_first_leading_one.c ├── tst-stdc_first_leading_zero.c ├── tst-stdc_first_trailing_one.c ├── tst-stdc_first_trailing_zero.c ├── tst-stdc_has_single_bit.c ├── tst-stdc_leading_ones.c ├── tst-stdc_leading_zeros.c ├── tst-stdc_trailing_ones.c ├── tst-stdc_trailing_zeros.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-binary-c11.c ├── tst-strtol-binary-c23.c ├── tst-strtol-binary-gnu11.c ├── tst-strtol-binary-gnu23.c ├── tst-strtol-binary-main.c ├── tst-strtol-locale-main.c ├── tst-strtol-locale.c ├── tst-strtol.c ├── tst-strtoll.c ├── tst-swapcontext1.c ├── tst-swapcontext2.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-uabs.c ├── tst-uimaxabs.c ├── tst-ulabs.c ├── tst-ullabs.c ├── tst-umaxabs.c ├── tst-unsetenv1.c ├── tst-width-stdint.c ├── tst-width.c ├── tst-xpg-basename.c ├── uabs.c ├── ucontext.h ├── ulabs.c ├── ullabs.c ├── wcstombs.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 │ ├── endian.h │ ├── 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 ├── memcmpeq.c ├── memcpy.c ├── memfrob.c ├── memmem.c ├── memmove.c ├── memory.h ├── mempcpy.c ├── memrchr.c ├── memset.c ├── memset_explicit.c ├── noinl-tester.c ├── rawmemchr.c ├── sigabbrev_np.c ├── sigdescr_np.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 ├── strerrordesc_np.c ├── strerrorname_np.c ├── strfry.c ├── string-inlines.c ├── string.h ├── strings.h ├── strlcat.c ├── strlcpy.c ├── 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-Xncmp-nonarray.c ├── test-Xnlen-nonarray.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-memcmpeq.c ├── test-memcpy-large.c ├── test-memcpy-support.h ├── test-memcpy.c ├── test-memmem.c ├── test-memmove.c ├── test-mempcpy.c ├── test-memrchr.c ├── test-memset.c ├── test-memset_explicit.c ├── test-memswap.c ├── test-rawmemchr.c ├── test-sig_np.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-strdup.c ├── test-strerror-errno.c ├── test-string.h ├── test-strlen.c ├── test-strncasecmp.c ├── test-strncat.c ├── test-strncmp-nonarray.c ├── test-strncmp.c ├── test-strncpy.c ├── test-strndup.c ├── test-strnlen-nonarray.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-const.c ├── tst-endian.c ├── tst-inlcall.c ├── tst-memmove-overflow.c ├── tst-strcoll-overflow.c ├── tst-strerror-fail.c ├── tst-strerror.c ├── tst-strfry.c ├── tst-strlcat.c ├── tst-strlcat2.c ├── tst-strlcpy.c ├── tst-strlcpy2.c ├── tst-strlen.c ├── tst-strsignal.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 ├── tst-xmemset-opt.c ├── wordcopy.c └── xpg-strerror.c ├── sunrpc ├── Makefile ├── Versions ├── auth_des.c ├── auth_none.c ├── auth_unix.c ├── authdes_prot.c ├── authuxprot.c ├── clnt_gen.c ├── clnt_perr.c ├── clnt_raw.c ├── clnt_simp.c ├── clnt_tcp.c ├── clnt_udp.c ├── clnt_unix.c ├── create_xid.c ├── des_crypt.c ├── des_impl.c ├── des_soft.c ├── get_myaddr.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 ├── publickey.c ├── rpc │ ├── auth.h │ ├── auth_des.h │ ├── auth_unix.h │ ├── clnt.h │ ├── des_crypt.h │ ├── key_prot.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_cmsg.c ├── rpc_common.c ├── rpc_dtable.c ├── rpc_gethostbyname.c ├── rpc_prot.c ├── rpc_thread.c ├── 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 ├── thrsvc.c ├── tst-bug22542.c ├── tst-bug28768.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 ├── Depend ├── Makefile ├── README ├── README-testing.c ├── blob_repeat.c ├── blob_repeat.h ├── bundled │ ├── README │ └── linux │ │ ├── COPYING │ │ ├── LICENSES │ │ ├── exceptions │ │ │ └── Linux-syscall-note │ │ └── preferred │ │ │ └── GPL-2.0 │ │ └── include │ │ └── uapi │ │ └── linux │ │ └── fuse.h ├── capture_subprocess.h ├── check.c ├── check.h ├── check_addrinfo.c ├── check_dns_packet.c ├── check_hostent.c ├── check_mem_access.h ├── check_netent.c ├── check_nss.h ├── delayed_exit.c ├── descriptors.h ├── dtotimespec-time64.c ├── dtotimespec.c ├── echo-container.c ├── file_contents.h ├── format_nss.h ├── fuse.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 ├── process_state.h ├── readdir.h ├── resolv_response_context_duplicate.c ├── resolv_response_context_free.c ├── resolv_test.c ├── resolv_test.h ├── run_diff.h ├── set_fortify_handler.c ├── shell-container.c ├── subprocess.h ├── support-open-dev-null-range.c ├── support.h ├── support_become_root.c ├── support_can_chroot.c ├── support_capture_subprocess.c ├── support_capture_subprocess_check.c ├── support_check_stat_fd.c ├── support_check_stat_path.c ├── support_chroot.c ├── support_compare_file_bytes.c ├── support_compare_file_string.c ├── support_copy_file.c ├── support_copy_file_range.c ├── support_create_timer.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_fuse.c ├── support_isolate_in_subprocess.c ├── support_mem_access.c ├── support_mutex_pi_monotonic.c ├── support_need_proc.c ├── support_open_and_compare_file_bytes.c ├── support_open_and_compare_file_string.c ├── support_openpty.c ├── support_path_support_time64.c ├── support_paths.c ├── support_process_state.c ├── support_ptrace.c ├── support_quote_blob.c ├── support_quote_blob_main.c ├── support_quote_blob_wide.c ├── support_quote_string.c ├── support_readdir.c ├── support_readdir_check.c ├── support_readdir_r_check.c ├── support_record_failure.c ├── support_run_diff.c ├── support_select_modifies_timeout.c ├── support_select_normalizes_timeout.c ├── support_set_small_thread_stack_size.c ├── support_set_vma_name_supported.c ├── support_shared_allocate.c ├── support_small_stack_thread_attribute.c ├── support_socket_so_timestamp_time64.c ├── support_stack_alloc.c ├── support_stat_nanoseconds.c ├── support_subprocess.c ├── support_test_compare_blob.c ├── support_test_compare_failure.c ├── support_test_compare_string.c ├── support_test_compare_string_main.c ├── support_test_compare_string_wide.c ├── support_test_in_thread_wrapper.c ├── support_test_main.c ├── support_test_verify_impl.c ├── support_wait_for_thread_exit.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 ├── test-run-command.c ├── timespec-add-time64.c ├── timespec-add.c ├── timespec-sub-time64.c ├── timespec-sub.c ├── timespec-time64.c ├── timespec.c ├── timespec.h ├── true-container.c ├── tst-glibcpp.py ├── tst-support-namespace.c ├── tst-support-open-dev-null-range.c ├── tst-support-openpty-c.c ├── tst-support-openpty.c ├── tst-support-process_state.c ├── tst-support_accept_oom.c ├── tst-support_blob_repeat.c ├── tst-support_capture_subprocess.c ├── tst-support_descriptors.c ├── tst-support_format_dns_packet.c ├── tst-support_fuse.c ├── tst-support_quote_blob.c ├── tst-support_quote_blob_wide.c ├── tst-support_quote_string.c ├── tst-support_readdir.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-test_compare_string_wide.c ├── tst-timespec.c ├── tst-xdirent.c ├── tst-xreadlink.c ├── tst-xsigstack.c ├── tty.h ├── write_message.c ├── xaccept.c ├── xaccept4.c ├── xasprintf.c ├── xbind.c ├── xcalloc.c ├── xchdir.c ├── xchmod.c ├── xchroot.c ├── xclock_gettime.c ├── xclock_gettime_time64.c ├── xclock_settime.c ├── xclock_settime_time64.c ├── xclone.c ├── xclose.c ├── xclosedir.c ├── xconnect.c ├── xcopy_file_range.c ├── xdirent.h ├── xdlfcn.c ├── xdlfcn.h ├── xdlmopen.c ├── xdup.c ├── xdup2.c ├── xfchmod.c ├── xfclose.c ├── xfdopendir.c ├── xfgets.c ├── xfmemopen.c ├── xfopen.c ├── xfork.c ├── xfread.c ├── xfreopen.c ├── xftruncate.c ├── xgetline.c ├── xgetpeername.c ├── xgetsockname.c ├── xlisten.c ├── xlseek.c ├── xmalloc.c ├── xmemstream.c ├── xmemstream.h ├── xmkdir.c ├── xmkdirp.c ├── xmkfifo.c ├── xmmap.c ├── xmprotect.c ├── xmunmap.c ├── xnewlocale.c ├── xopen.c ├── xopendir.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_setaffinity_np.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_signal.c ├── xpthread_cond_wait.c ├── xpthread_create.c ├── xpthread_detach.c ├── xpthread_join.c ├── xpthread_key_create.c ├── xpthread_key_delete.c ├── xpthread_kill.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 ├── xptrace.h ├── xraise.c ├── xread.c ├── xreadlink.c ├── xrealloc.c ├── xrecvfrom.c ├── xsched.h ├── xsendto.c ├── xsetlocale.c ├── xsetsockopt.c ├── xsigaction.c ├── xsignal.c ├── xsignal.h ├── xsigstack.c ├── xsocket.c ├── xsocket.h ├── xspawn.h ├── xstatx.c ├── xstdio.h ├── xstdlib.h ├── xstrdup.c ├── xstrndup.c ├── xsymlink.c ├── xsysconf.c ├── xsystem.c ├── xthread.h ├── xtime.h ├── xunistd.h ├── xunlink.c ├── xuselocale.c ├── xwaitpid.c └── xwrite.c ├── sysdeps ├── aarch64 │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── __alloc_gcs.c │ ├── __arm_za_disable.S │ ├── __longjmp.S │ ├── __mtag_tag_region.S │ ├── __mtag_tag_zero_region.S │ ├── aarch64-gcs.h │ ├── abort-instr.h │ ├── bits │ │ ├── endianness.h │ │ ├── fenv.h │ │ ├── fp-fast.h │ │ ├── indirect-return.h │ │ ├── link.h │ │ ├── setjmp.h │ │ └── wordsize.h │ ├── bsd-_setjmp.c │ ├── bsd-setjmp.c │ ├── configure │ ├── configure.ac │ ├── cpu-features.h │ ├── crti.S │ ├── crtn.S │ ├── dl-audit-check.h │ ├── dl-bti.c │ ├── dl-diagnostics-cpu.c │ ├── dl-dtprocnum.h │ ├── dl-gcs.c │ ├── dl-irel.h │ ├── dl-link.sym │ ├── dl-lookupcfg.h │ ├── dl-machine.h │ ├── dl-prop.h │ ├── dl-start.S │ ├── dl-tlsdesc.S │ ├── dl-tlsdesc.h │ ├── dl-trampoline.S │ ├── dl-tunables.list │ ├── e_sqrtl.c │ ├── elf-initfini.h │ ├── fpu │ │ ├── Makefile │ │ ├── Versions │ │ ├── acos_advsimd.c │ │ ├── acos_sve.c │ │ ├── acosf_advsimd.c │ │ ├── acosf_sve.c │ │ ├── acosh_advsimd.c │ │ ├── acosh_sve.c │ │ ├── acoshf_advsimd.c │ │ ├── acoshf_sve.c │ │ ├── acospi_advsimd.c │ │ ├── acospi_sve.c │ │ ├── acospif_advsimd.c │ │ ├── acospif_sve.c │ │ ├── advsimd_f32_protos.h │ │ ├── asin_advsimd.c │ │ ├── asin_sve.c │ │ ├── asinf_advsimd.c │ │ ├── asinf_sve.c │ │ ├── asinh_advsimd.c │ │ ├── asinh_sve.c │ │ ├── asinhf_advsimd.c │ │ ├── asinhf_sve.c │ │ ├── asinpi_advsimd.c │ │ ├── asinpi_sve.c │ │ ├── asinpif_advsimd.c │ │ ├── asinpif_sve.c │ │ ├── atan2_advsimd.c │ │ ├── atan2_sve.c │ │ ├── atan2f_advsimd.c │ │ ├── atan2f_sve.c │ │ ├── atan2pi_advsimd.c │ │ ├── atan2pi_sve.c │ │ ├── atan2pif_advsimd.c │ │ ├── atan2pif_sve.c │ │ ├── atan_advsimd.c │ │ ├── atan_sve.c │ │ ├── atanf_advsimd.c │ │ ├── atanf_sve.c │ │ ├── atanh_advsimd.c │ │ ├── atanh_sve.c │ │ ├── atanhf_advsimd.c │ │ ├── atanhf_sve.c │ │ ├── atanpi_advsimd.c │ │ ├── atanpi_sve.c │ │ ├── atanpif_advsimd.c │ │ ├── atanpif_sve.c │ │ ├── bench-libmvec-arch.h │ │ ├── bits │ │ │ └── math-vector.h │ │ ├── cbrt_advsimd.c │ │ ├── cbrt_sve.c │ │ ├── cbrtf_advsimd.c │ │ ├── cbrtf_sve.c │ │ ├── cos_advsimd.c │ │ ├── cos_sve.c │ │ ├── cosf_advsimd.c │ │ ├── cosf_sve.c │ │ ├── cosh_advsimd.c │ │ ├── cosh_sve.c │ │ ├── coshf_advsimd.c │ │ ├── coshf_sve.c │ │ ├── cospi_advsimd.c │ │ ├── cospi_sve.c │ │ ├── cospif_advsimd.c │ │ ├── cospif_sve.c │ │ ├── erf_advsimd.c │ │ ├── erf_data.c │ │ ├── erf_sve.c │ │ ├── erfc_advsimd.c │ │ ├── erfc_data.c │ │ ├── erfc_sve.c │ │ ├── erfcf_advsimd.c │ │ ├── erfcf_data.c │ │ ├── erfcf_sve.c │ │ ├── erff_advsimd.c │ │ ├── erff_data.c │ │ ├── erff_sve.c │ │ ├── exp10_advsimd.c │ │ ├── exp10_sve.c │ │ ├── exp10f_advsimd.c │ │ ├── exp10f_sve.c │ │ ├── exp10m1_advsimd.c │ │ ├── exp10m1_sve.c │ │ ├── exp10m1f_advsimd.c │ │ ├── exp10m1f_sve.c │ │ ├── exp2_advsimd.c │ │ ├── exp2_sve.c │ │ ├── exp2f_advsimd.c │ │ ├── exp2f_sve.c │ │ ├── exp2m1_advsimd.c │ │ ├── exp2m1_sve.c │ │ ├── exp2m1f_advsimd.c │ │ ├── exp2m1f_sve.c │ │ ├── exp_advsimd.c │ │ ├── exp_sve.c │ │ ├── expf_advsimd.c │ │ ├── expf_sve.c │ │ ├── expm1_advsimd.c │ │ ├── expm1_sve.c │ │ ├── expm1f_advsimd.c │ │ ├── expm1f_sve.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 │ │ ├── finclude │ │ │ └── math-vector-fortran.h │ │ ├── finite_pow.h │ │ ├── fpu_control.h │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── get-rounding-mode.h │ │ ├── hypot_advsimd.c │ │ ├── hypot_sve.c │ │ ├── hypotf_advsimd.c │ │ ├── hypotf_sve.c │ │ ├── log10_advsimd.c │ │ ├── log10_sve.c │ │ ├── log10f_advsimd.c │ │ ├── log10f_sve.c │ │ ├── log10p1_advsimd.c │ │ ├── log10p1_sve.c │ │ ├── log10p1f_advsimd.c │ │ ├── log10p1f_sve.c │ │ ├── log1p_advsimd.c │ │ ├── log1p_sve.c │ │ ├── log1pf_advsimd.c │ │ ├── log1pf_sve.c │ │ ├── log2_advsimd.c │ │ ├── log2_sve.c │ │ ├── log2f_advsimd.c │ │ ├── log2f_sve.c │ │ ├── log2p1_advsimd.c │ │ ├── log2p1_sve.c │ │ ├── log2p1f_advsimd.c │ │ ├── log2p1f_sve.c │ │ ├── log_advsimd.c │ │ ├── log_sve.c │ │ ├── logf_advsimd.c │ │ ├── logf_sve.c │ │ ├── math-barriers.h │ │ ├── math-tests-arch.h │ │ ├── math-use-builtins-ceil.h │ │ ├── math-use-builtins-floor.h │ │ ├── math-use-builtins-fma.h │ │ ├── math-use-builtins-fmax.h │ │ ├── math-use-builtins-fmin.h │ │ ├── math-use-builtins-llrint.h │ │ ├── math-use-builtins-llround.h │ │ ├── math-use-builtins-lrint.h │ │ ├── math-use-builtins-lround.h │ │ ├── math-use-builtins-nearbyint.h │ │ ├── math-use-builtins-rint.h │ │ ├── math-use-builtins-round.h │ │ ├── math-use-builtins-roundeven.h │ │ ├── math-use-builtins-sqrt.h │ │ ├── math-use-builtins-trunc.h │ │ ├── math_private.h │ │ ├── poly_advsimd_f32.h │ │ ├── poly_advsimd_f64.h │ │ ├── poly_generic.h │ │ ├── poly_sve_f32.h │ │ ├── poly_sve_f64.h │ │ ├── poly_sve_generic.h │ │ ├── pow_advsimd.c │ │ ├── pow_sve.c │ │ ├── powf_advsimd.c │ │ ├── powf_sve.c │ │ ├── rsqrt_advsimd.c │ │ ├── rsqrt_sve.c │ │ ├── rsqrtf_advsimd.c │ │ ├── rsqrtf_sve.c │ │ ├── scripts │ │ │ ├── bench_libmvec_advsimd.py │ │ │ └── bench_libmvec_sve.py │ │ ├── sin_advsimd.c │ │ ├── sin_sve.c │ │ ├── sinf_advsimd.c │ │ ├── sinf_sve.c │ │ ├── sinh_advsimd.c │ │ ├── sinh_sve.c │ │ ├── sinhf_advsimd.c │ │ ├── sinhf_sve.c │ │ ├── sinpi_advsimd.c │ │ ├── sinpi_sve.c │ │ ├── sinpif_advsimd.c │ │ ├── sinpif_sve.c │ │ ├── sv_expf_inline.h │ │ ├── sv_expm1f_inline.h │ │ ├── sv_log1p_inline.h │ │ ├── sv_log1pf_inline.h │ │ ├── sv_math.h │ │ ├── tan_advsimd.c │ │ ├── tan_sve.c │ │ ├── tanf_advsimd.c │ │ ├── tanf_sve.c │ │ ├── tanh_advsimd.c │ │ ├── tanh_sve.c │ │ ├── tanhf_advsimd.c │ │ ├── tanhf_sve.c │ │ ├── tanpi_advsimd.c │ │ ├── tanpi_sve.c │ │ ├── tanpif_advsimd.c │ │ ├── tanpif_sve.c │ │ ├── test-double-advsimd-wrappers.c │ │ ├── test-double-advsimd.h │ │ ├── test-double-sve-wrappers.c │ │ ├── test-double-sve.h │ │ ├── test-float-advsimd-wrappers.c │ │ ├── test-float-advsimd.h │ │ ├── test-float-sve-wrappers.c │ │ ├── test-float-sve.h │ │ ├── test-vpcs-vector-wrapper.h │ │ ├── v_exp_data.c │ │ ├── v_exp_tail_data.c │ │ ├── v_expf_inline.h │ │ ├── v_expm1_inline.h │ │ ├── v_expm1f_inline.h │ │ ├── v_log10_data.c │ │ ├── v_log1p_inline.h │ │ ├── v_log1pf_inline.h │ │ ├── v_log2_data.c │ │ ├── v_log_data.c │ │ ├── v_math.h │ │ ├── v_pow_exp_data.c │ │ ├── v_pow_log_data.c │ │ ├── v_powf_data.c │ │ └── vecmath_config.h │ ├── hp-timing.h │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libc-mtag.h │ ├── libc-start.c │ ├── libc-tls.c │ ├── linkmap.h │ ├── machine-gmon.h │ ├── math-tests-trap.h │ ├── math-use-builtins-ffs.h │ ├── mcount.c │ ├── memchr.S │ ├── memcmp.S │ ├── memcpy.S │ ├── memmove.c │ ├── memrchr.S │ ├── memset.S │ ├── multiarch │ │ ├── Makefile │ │ ├── dl-symbol-redir-ifunc.h │ │ ├── ifunc-impl-list.c │ │ ├── init-arch.h │ │ ├── memchr.c │ │ ├── memchr_generic.S │ │ ├── memchr_nosimd.S │ │ ├── memcpy.c │ │ ├── memcpy_a64fx.S │ │ ├── memcpy_generic.S │ │ ├── memcpy_mops.S │ │ ├── memcpy_oryon1.S │ │ ├── memcpy_sve.S │ │ ├── memmove.c │ │ ├── memmove_mops.S │ │ ├── memset.c │ │ ├── memset_a64fx.S │ │ ├── memset_emag.S │ │ ├── memset_generic.S │ │ ├── memset_kunpeng.S │ │ ├── memset_mops.S │ │ ├── memset_oryon1.S │ │ ├── memset_sve_zva64.S │ │ ├── memset_zva64.S │ │ ├── strlen.c │ │ ├── strlen_asimd.S │ │ └── strlen_generic.S │ ├── nptl │ │ ├── bits │ │ │ ├── pthreadtypes-arch.h │ │ │ ├── semaphore.h │ │ │ └── struct_rwlock.h │ │ ├── pthread-offsets.h │ │ ├── pthreaddef.h │ │ └── tls.h │ ├── preconfigure │ ├── rawmemchr.S │ ├── rtld-global-offsets.sym │ ├── setjmp.S │ ├── sfp-machine.h │ ├── sotruss-lib.c │ ├── start.S │ ├── stpcpy.S │ ├── strchr.S │ ├── strchrnul.S │ ├── strcmp.S │ ├── strcpy.S │ ├── strcspn.S │ ├── strlen.S │ ├── strncmp.S │ ├── strnlen.S │ ├── strrchr.S │ ├── strspn.S │ ├── sys │ │ └── ifunc.h │ ├── sysdep.h │ ├── tlsdesc.c │ ├── tlsdesc.sym │ ├── tst-audit.h │ ├── tst-audit26.c │ ├── tst-audit26mod.c │ ├── tst-audit26mod.h │ ├── tst-audit27.c │ ├── tst-audit27mod.c │ ├── tst-audit27mod.h │ ├── tst-auditmod26.c │ ├── tst-auditmod27.c │ ├── tst-bti-abort-imm.c │ ├── tst-bti-abort-transitive.c │ ├── tst-bti-abort-unprot.c │ ├── tst-bti-abort.sh │ ├── tst-bti-dep-prot.c │ ├── tst-bti-dlopen-imm.c │ ├── tst-bti-dlopen-prot.c │ ├── tst-bti-dlopen-transitive.c │ ├── tst-bti-mod-prot.c │ ├── tst-bti-mod-unprot.c │ ├── tst-bti-mod.c │ ├── tst-bti-permissive-dlopen.c │ ├── tst-bti-permissive-imm.c │ ├── tst-bti-permissive-transitive.c │ ├── tst-bti-skeleton-dlopen.c │ ├── tst-bti-skeleton.c │ ├── tst-ifunc-arg-1.c │ ├── tst-ifunc-arg-2.c │ ├── tst-ifunc-arg-3.c │ ├── tst-ifunc-arg-4.c │ ├── tst-sme-clone.c │ ├── tst-sme-clone3.c │ ├── tst-sme-fork.c │ ├── tst-sme-helper.h │ ├── tst-sme-jmp.c │ ├── tst-sme-signal.c │ ├── tst-sme-skeleton.c │ ├── tst-sme-vfork.c │ ├── tst-sme-za-state.c │ ├── tst-vpcs-mod.S │ ├── tst-vpcs.c │ └── wordcopy.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 │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── stxcpy.S │ │ └── stxncpy.S │ ├── alphaev67 │ │ ├── Implies │ │ ├── fpu │ │ │ └── Implies │ │ ├── rawmemchr.S │ │ ├── stpcpy.S │ │ ├── stpncpy.S │ │ ├── strcat.S │ │ ├── strchr.S │ │ ├── strlen.S │ │ ├── strncat.S │ │ └── strrchr.S │ ├── atomic-machine.h │ ├── bits │ │ ├── endianness.h │ │ ├── link.h │ │ ├── mathdef.h │ │ └── setjmp.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.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-trampoline.S │ ├── e_sqrtl.c │ ├── elf-initfini.h │ ├── fix-fp-int-convert-overflow.h │ ├── 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 │ │ ├── math-barriers.h │ │ ├── math-use-builtins-sqrt.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_cpowf.c │ │ ├── s_cprojf.c │ │ ├── s_csinf.c │ │ ├── s_csinhf.c │ │ ├── s_csqrtf.c │ │ ├── s_ctanf.c │ │ ├── s_ctanhf.c │ │ ├── s_isnan.c │ │ ├── s_isnanf.c │ │ ├── s_rint.c │ │ └── s_rintf.c │ ├── gccframe.h │ ├── gmp-arch.h │ ├── hp-timing.h │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldiv.S │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── lldiv.S │ ├── local-soft-fp.h │ ├── lshift.S │ ├── machine-gmon.h │ ├── math-use-builtins-ffs.h │ ├── memchr.c │ ├── memset.S │ ├── mul_1.S │ ├── nptl │ │ ├── bits │ │ │ └── struct_rwlock.h │ │ ├── pthread-offsets.h │ │ ├── pthread_spin_lock.S │ │ ├── pthread_spin_trylock.S │ │ ├── pthreaddef.h │ │ └── 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 │ ├── string-fza.h │ ├── string-fzb.h │ ├── string-fzi.h │ ├── string-shift.h │ ├── strlen.S │ ├── strncat.S │ ├── strncpy.S │ ├── strrchr.S │ ├── stxcpy.S │ ├── stxncpy.S │ ├── sub_n.S │ ├── submul_1.S │ ├── tininess.h │ ├── tst-audit.h │ ├── tst-file-align.h │ ├── udiv_qrnnd.S │ └── unwind-arch.h ├── arc │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── __longjmp.S │ ├── abort-instr.h │ ├── bits │ │ ├── endianness.h │ │ ├── fenv.h │ │ ├── link.h │ │ └── setjmp.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── configure │ ├── configure.ac │ ├── dl-machine.h │ ├── dl-runtime.h │ ├── dl-trampoline.S │ ├── entry.h │ ├── fpu │ │ ├── fclrexcpt.c │ │ ├── fegetenv.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 │ │ ├── math-use-builtins-fma.h │ │ └── math-use-builtins-sqrt.h │ ├── fpu_control.h │ ├── gccframe.h │ ├── get-rounding-mode.h │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── machine-gmon.h │ ├── math-tests-trap.h │ ├── math-use-builtins-ffs.h │ ├── nofpu │ │ ├── Implies │ │ ├── math-tests-exceptions.h │ │ └── math-tests-rounding.h │ ├── nptl │ │ ├── pthreaddef.h │ │ └── tls.h │ ├── preconfigure │ ├── setjmp.S │ ├── sfp-machine.h │ ├── sotruss-lib.c │ ├── start.S │ ├── sysdep.h │ ├── tininess.h │ ├── tst-audit.h │ └── utmp-size.h ├── arm │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── __longjmp.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 │ │ ├── math-use-builtins-ffs.h │ │ ├── memchr.S │ │ ├── string-fza.h │ │ └── strlen.S │ ├── armv7 │ │ ├── Implies │ │ ├── fpu │ │ │ └── multiarch │ │ │ │ ├── Makefile │ │ │ │ ├── s_fma-generic.c │ │ │ │ ├── s_fma-vpfv4.c │ │ │ │ ├── s_fma.c │ │ │ │ ├── s_fmaf-generic.c │ │ │ │ ├── s_fmaf-vpfv4.c │ │ │ │ └── s_fmaf.c │ │ ├── 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 │ ├── backtrace.c │ ├── be │ │ ├── Implies │ │ ├── armv6 │ │ │ └── Implies │ │ ├── armv6t2 │ │ │ └── Implies │ │ ├── armv7 │ │ │ ├── Implies │ │ │ ├── fpu │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ └── multiarch │ │ │ │ └── Implies │ │ └── nofpu │ │ │ └── Implies │ ├── bits │ │ ├── dl_find_object.h │ │ ├── endianness.h │ │ ├── fenv.h │ │ ├── link.h │ │ ├── setjmp.h │ │ └── wordsize.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── configure │ ├── configure.ac │ ├── crti.S │ ├── crtn.S │ ├── dl-irel.h │ ├── dl-lookupcfg.h │ ├── dl-machine-rel.h │ ├── dl-machine.h │ ├── dl-tlsdesc.S │ ├── dl-tlsdesc.h │ ├── dl-trampoline.S │ ├── elf-initfini.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 │ ├── find_exidx.c │ ├── fix-fp-int-convert-overflow.h │ ├── fpu │ │ ├── math-use-builtins-fma.h │ │ └── math_private.h │ ├── fpu_control.h │ ├── fraiseexcpt.c │ ├── framestate.c │ ├── fsetexcptflg.c │ ├── ftestexcept.c │ ├── gcc-compat.h │ ├── gccframe.h │ ├── get-rounding-mode.h │ ├── include │ │ └── bits │ │ │ └── setjmp.h │ ├── jmpbuf-unwind.h │ ├── ldbl-classify-compat.h │ ├── ldsodefs.h │ ├── le │ │ ├── Implies │ │ ├── armv6 │ │ │ └── Implies │ │ ├── armv6t2 │ │ │ └── Implies │ │ ├── armv7 │ │ │ ├── Implies │ │ │ ├── fpu │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ └── multiarch │ │ │ │ └── Implies │ │ └── nofpu │ │ │ └── Implies │ ├── libc-aeabi_read_tp.S │ ├── libc-tls.c │ ├── linkmap.h │ ├── machine-gmon.h │ ├── math-tests-trap.h │ ├── math-use-builtins-sqrt.h │ ├── memcpy.S │ ├── memmove.S │ ├── memset.S │ ├── nofpu │ │ ├── Implies │ │ ├── math-tests-exceptions.h │ │ └── math-tests-rounding.h │ ├── nptl │ │ ├── Makefile │ │ ├── pthreaddef.h │ │ └── tls.h │ ├── pointer_guard.h │ ├── preconfigure │ ├── preconfigure.ac │ ├── 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 │ ├── 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 │ ├── tst-gnu2-tls2.h │ ├── unwind-arch.h │ ├── unwind-dw2-fde-glibc.c │ ├── unwind-pe.c │ ├── unwind-resume.c │ ├── unwind-resume.h │ ├── unwind.h │ └── utmp-size.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 │ ├── abort-instr.h │ ├── bits │ │ ├── endianness.h │ │ ├── fenv.h │ │ ├── link.h │ │ ├── setjmp.h │ │ └── wordsize.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── configure │ ├── configure.ac │ ├── dl-machine.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 │ ├── fpu_control.h │ ├── gccframe.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── linkmap.h │ ├── machine-gmon.h │ ├── nofpu │ │ └── Implies │ ├── nptl │ │ ├── pthreaddef.h │ │ └── tls.h │ ├── preconfigure │ ├── preconfigure.ac │ ├── sfp-machine.h │ ├── sotruss-lib.c │ ├── sysdep.h │ ├── thread_pointer.h │ ├── tininess.h │ ├── tst-audit.h │ └── utmp-size.h ├── generic │ ├── Makefile │ ├── _G_config.h │ ├── _itoa.h │ ├── a.out.h │ ├── abort-instr.h │ ├── adaptive_spin_count.h │ ├── aio_misc.h │ ├── allocalim.h │ ├── arch-fd_to_filename.h │ ├── asm-syntax.h │ ├── atomic-machine.h │ ├── atomic-sem_t.h │ ├── c++-types.data │ ├── calloc-clear-memory.h │ ├── confstr.h │ ├── crti.S │ ├── crtn.S │ ├── device-nrs.h │ ├── dirstream.h │ ├── dl-affinity.h │ ├── dl-audit-check.h │ ├── dl-auxv.h │ ├── dl-cache.h │ ├── dl-call_tls_init_tp.h │ ├── dl-debug.h │ ├── dl-dtprocnum.h │ ├── dl-dtv.h │ ├── dl-execve.h │ ├── dl-extra_tls.h │ ├── dl-fcntl.h │ ├── dl-fileid.h │ ├── dl-fixup-attribute.h │ ├── dl-hash.h │ ├── dl-hwcap-check.h │ ├── dl-irel.h │ ├── dl-isa-level.h │ ├── dl-lookupcfg.h │ ├── dl-machine-rel.h │ ├── dl-machine.h │ ├── dl-minimal-malloc.h │ ├── dl-mman.h │ ├── dl-new-hash.h │ ├── dl-osinfo.h │ ├── dl-procinfo.c │ ├── dl-procruntime.c │ ├── dl-prop.h │ ├── dl-protected.h │ ├── dl-r_debug.h │ ├── dl-relocate-ld.h │ ├── dl-symbol-redir-ifunc.h │ ├── dl-sysdep.h │ ├── dl-tls.h │ ├── dl-tunables-parse.h │ ├── dl-unistd.h │ ├── dl-vdso-setup.c │ ├── dl-vdso-setup.h │ ├── dl-vdso.h │ ├── dwarf2.h │ ├── elf-initfini.h │ ├── elf-read-prop.h │ ├── elf_machine_sym_no_match.h │ ├── entry.h │ ├── errqueue.h │ ├── fast-jitter.h │ ├── fd_to_filename.h │ ├── features-time64.h │ ├── fenv_private.h │ ├── fix-float-double-convert-nan.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 │ ├── getrandom-internal.h │ ├── gmp-arch.h │ ├── gmp-mparam.h │ ├── hp-timing-common.h │ ├── hp-timing.h │ ├── ifreq.h │ ├── ifunc-init.h │ ├── ifunc-sel.h │ ├── internal-signals.h │ ├── internal-sigset.h │ ├── intr-msg.h │ ├── ld.abilist │ ├── ldbl-classify-compat.h │ ├── ldconfig.h │ ├── ldsodefs.h │ ├── libBrokenLocale.abilist │ ├── libanl.abilist │ ├── libc-lock-arch.h │ ├── libc-lock.h │ ├── libc-mmap.h │ ├── libc-mtag.h │ ├── libc-start.h │ ├── libc-symver.h │ ├── libc.abilist │ ├── libc_malloc_debug.abilist │ ├── libc_start_call_main.h │ ├── libdl.abilist │ ├── libm-alias-double.h │ ├── libm-alias-float.h │ ├── libm-alias-float128.h │ ├── libm-alias-ldouble.h │ ├── 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-hugepages.c │ ├── malloc-hugepages.h │ ├── malloc-machine.h │ ├── malloc-size.h │ ├── malloc-sysdep.h │ ├── math-barriers.h │ ├── math-nan-payload-double.h │ ├── math-nan-payload-float.h │ ├── math-narrow-alias-float128.h │ ├── math-narrow-alias.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-use-builtins-ceil.h │ ├── math-use-builtins-copysign.h │ ├── math-use-builtins-fabs.h │ ├── math-use-builtins-ffs.h │ ├── math-use-builtins-floor.h │ ├── math-use-builtins-fma.h │ ├── math-use-builtins-fmax.h │ ├── math-use-builtins-fmin.h │ ├── math-use-builtins-llrint.h │ ├── math-use-builtins-llround.h │ ├── math-use-builtins-logb.h │ ├── math-use-builtins-lrint.h │ ├── math-use-builtins-lround.h │ ├── math-use-builtins-nearbyint.h │ ├── math-use-builtins-rint.h │ ├── math-use-builtins-round.h │ ├── math-use-builtins-roundeven.h │ ├── math-use-builtins-sqrt.h │ ├── math-use-builtins-trunc.h │ ├── math-use-builtins.h │ ├── math_ldbl.h │ ├── math_ldbl_opt.h │ ├── math_private.h │ ├── math_private_calls.h │ ├── math_uint128.h │ ├── memcopy.h │ ├── memswap.h │ ├── min-eloop-threshold.h │ ├── mmap_info.h │ ├── mremap-failure.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 │ ├── pointer_guard.h │ ├── profil-counter.h │ ├── pty-private.h │ ├── rtld-lowlevel.h │ ├── rtld_static_init.h │ ├── safe-fatal.h │ ├── set-freeres-fp.h │ ├── set-freeres-os.h │ ├── set-freeres-system.h │ ├── set-hooks-arch.h │ ├── setjmpP.h │ ├── setvmaname.h │ ├── sframe-read.c │ ├── sframe-read.h │ ├── sframe.c │ ├── sframe.h │ ├── sigcontextinfo.h │ ├── siglist-compat-def.h │ ├── siglist.h │ ├── sigset-cvt-mask.h │ ├── sigsetops.h │ ├── single-thread.h │ ├── spawn_int_def.h │ ├── stackguard-macros.h │ ├── stackinfo.h │ ├── stap-probe-machine.h │ ├── startup.h │ ├── stdio-lock.h │ ├── string-fza.h │ ├── string-fzb.h │ ├── string-fzc.h │ ├── string-fzi.h │ ├── string-misc.h │ ├── string-opthr.h │ ├── string-optype.h │ ├── string-shift.h │ ├── struct_stat_time64.h │ ├── symbol-hacks.h │ ├── sys │ │ ├── ptrace.h │ │ ├── reboot.h │ │ ├── socketvar.h │ │ ├── swap.h │ │ ├── syscall.h │ │ ├── sysinfo.h │ │ ├── ttydefaults.h │ │ └── ucontext.h │ ├── syscall_types.h │ ├── sysdep-cancel.h │ ├── sysdep.h │ ├── thread_pointer.h │ ├── thread_state.h │ ├── time-clockid.h │ ├── time64-compat.h │ ├── tininess.h │ ├── tls-internal-struct.h │ ├── tls-internal.c │ ├── tls-internal.h │ ├── tls-setup.h │ ├── tls.h │ ├── tst-audit.h │ ├── tst-file-align.h │ ├── tst-stack-align.h │ ├── unsecvars.h │ ├── unwind-arch.h │ ├── unwind-dw2-fde-glibc.c │ ├── unwind-dw2-fde.c │ ├── unwind-dw2-fde.h │ ├── unwind-dw2.c │ ├── unwind-link.h │ ├── unwind-pe.c │ ├── unwind-pe.h │ ├── unwind-resume.c │ ├── unwind-resume.h │ ├── unwind.h │ ├── utmp-equal.h │ ├── utmp-size.h │ ├── uw-sigframe.h │ └── xstatver.h ├── gnu │ ├── Makefile │ ├── bits │ │ ├── ipc-perm.h │ │ ├── ipc.h │ │ ├── msq.h │ │ ├── sem.h │ │ ├── shm.h │ │ ├── types │ │ │ ├── struct_msqid_ds.h │ │ │ └── struct_shmid_ds.h │ │ └── utmpx.h │ ├── configure │ ├── configure.ac │ ├── errlist.h │ ├── 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 │ ├── sys │ │ └── mtio.h │ ├── updwtmp.c │ ├── utmp_file.c │ └── utmpx.h ├── hppa │ ├── Makefile │ ├── Versions │ ├── __longjmp.c │ ├── abort-instr.h │ ├── add_n.S │ ├── bits │ │ ├── endianness.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-runtime.c │ ├── dl-runtime.h │ ├── dl-symaddr.c │ ├── dl-trampoline.S │ ├── elf-initfini.h │ ├── 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 │ ├── gccframe.h │ ├── get-rounding-mode.h │ ├── hppa1.1 │ │ ├── Implies │ │ ├── addmul_1.S │ │ ├── mul_1.S │ │ ├── s_signbit.c │ │ └── submul_1.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 │ ├── memcopy.h │ ├── nan-high-order-bit.h │ ├── nptl │ │ ├── bits │ │ │ ├── pthreadtypes-arch.h │ │ │ ├── struct_mutex.h │ │ │ └── struct_rwlock.h │ │ ├── jmpbuf-unwind.h │ │ ├── pthread-offsets.h │ │ ├── pthread_spin_init.c │ │ ├── pthread_spin_unlock.c │ │ ├── pthreaddef.h │ │ ├── tls.h │ │ └── tst-oddstacklimit.c │ ├── preconfigure │ ├── rshift.S │ ├── setjmp.S │ ├── shlib-versions │ ├── sotruss-lib.c │ ├── stackinfo.h │ ├── start.S │ ├── string-fzb.h │ ├── string-fzc.h │ ├── string-fzi.h │ ├── sub_n.S │ ├── sysdep.h │ ├── thread_pointer.h │ ├── tininess.h │ ├── tst-audit.h │ └── utmp-size.h ├── 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 │ │ │ ├── __pthread_t.h │ │ │ ├── __thrd_t.h │ │ │ ├── struct___pthread_attr.h │ │ │ ├── struct___pthread_barrier.h │ │ │ ├── struct___pthread_barrierattr.h │ │ │ ├── struct___pthread_cond.h │ │ │ ├── struct___pthread_condattr.h │ │ │ ├── struct___pthread_mutexattr.h │ │ │ ├── struct___pthread_once.h │ │ │ ├── struct___pthread_rwlock.h │ │ │ └── struct___pthread_rwlockattr.h │ ├── c11-thread.h │ ├── dl-support.c │ ├── dl-thread_gscope_wait.c │ ├── flockfile.c │ ├── ftrylockfile.c │ ├── funlockfile.c │ ├── futex-internal.h │ ├── include │ │ ├── bits │ │ │ └── cancelation.h │ │ ├── pthread.h │ │ └── semaphore.h │ ├── libc-lock.h │ ├── libc-lockP.h │ ├── 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-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-startup.c │ ├── pthread.h │ ├── pthreadP.h │ ├── pthread_atfork_compat.h │ ├── raise.c │ ├── sem-destroy.c │ ├── sem-getvalue.c │ ├── sem-init.c │ ├── sem-post.c │ ├── sem-timedwait.c │ ├── sem-trywait.c │ ├── sem-wait.c │ ├── sem-waitfast.c │ ├── stdio-lock.h │ ├── thrd_current.c │ ├── timer_routines.c │ └── timer_routines.h ├── hurd │ ├── htl │ │ └── pt-kill.c │ └── include │ │ ├── hurd.h │ │ ├── hurd │ │ ├── fd.h │ │ ├── port.h │ │ ├── signal.h │ │ └── sigpreempt.h │ │ └── sys │ │ ├── msg.h │ │ ├── sem.h │ │ └── shm.h ├── i386 │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── ____longjmp_chk.S │ ├── __longjmp.S │ ├── abort-instr.h │ ├── add_n.S │ ├── addmul_1.S │ ├── asm-syntax.h │ ├── backtrace.c │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── configure │ ├── configure.ac │ ├── crti.S │ ├── crtn.S │ ├── dl-fixup-attribute.h │ ├── dl-irel.h │ ├── dl-machine-rel.h │ ├── dl-machine.h │ ├── dl-procinfo.c │ ├── dl-tls-get-addr.c │ ├── dl-tls.h │ ├── dl-tlsdesc-dynamic.h │ ├── dl-tlsdesc.S │ ├── dl-tlsdesc.h │ ├── dl-trampoline.S │ ├── fpu │ │ ├── Implies │ │ ├── Versions │ │ ├── doasin.c │ │ ├── e_acos.S │ │ ├── e_acosh.S │ │ ├── e_acoshl.S │ │ ├── e_acosl.c │ │ ├── e_asin.S │ │ ├── e_atan2.S │ │ ├── e_atan2l.c │ │ ├── e_atanh.S │ │ ├── e_atanhl.S │ │ ├── e_exp.S │ │ ├── e_exp10.S │ │ ├── e_exp10l.S │ │ ├── e_exp2.S │ │ ├── e_exp2l.S │ │ ├── e_exp_data.c │ │ ├── e_expl.S │ │ ├── e_fmod.c │ │ ├── e_fmodf.c │ │ ├── e_fmodf_ver.h │ │ ├── e_fmodl.c │ │ ├── e_hypot.c │ │ ├── e_ilogbl.S │ │ ├── e_log.S │ │ ├── e_log10.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.c │ │ ├── e_remainderf.c │ │ ├── e_remainderl.S │ │ ├── e_scalb.S │ │ ├── e_scalbf.S │ │ ├── e_scalbl.S │ │ ├── e_sqrt.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 │ │ ├── i386-math-asm.h │ │ ├── libm-test-ulps │ │ ├── math-tests-snan.h │ │ ├── math-tests-trap-force.h │ │ ├── math-use-builtins-sqrt.h │ │ ├── s_asinh.S │ │ ├── s_asinhl.S │ │ ├── s_atan.S │ │ ├── s_atanl.c │ │ ├── s_cbrt.S │ │ ├── s_cbrtf.S │ │ ├── s_cbrtl.S │ │ ├── s_ceil.c │ │ ├── s_ceilf.c │ │ ├── s_expm1.S │ │ ├── s_expm1l.S │ │ ├── s_f32xaddf64.c │ │ ├── s_f32xdivf64.c │ │ ├── s_f32xmulf64.c │ │ ├── s_f32xsubf64.c │ │ ├── s_fdim.c │ │ ├── s_finite.S │ │ ├── s_finitef.S │ │ ├── s_finitel.S │ │ ├── s_floor.c │ │ ├── s_floorf.c │ │ ├── s_fmax.S │ │ ├── s_fmaxf.S │ │ ├── s_fmaxl.S │ │ ├── s_fmin.S │ │ ├── s_fminf.S │ │ ├── s_fminl.S │ │ ├── s_frexp.S │ │ ├── s_frexpf.S │ │ ├── s_frexpl.S │ │ ├── s_isinfl.c │ │ ├── s_llrint.S │ │ ├── s_llrintf.S │ │ ├── s_llrintl.S │ │ ├── s_log1p.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.c │ │ ├── s_truncf.c │ │ ├── w_exp.c │ │ ├── w_exp10_compat.c │ │ ├── w_exp2.c │ │ ├── w_log.c │ │ ├── w_log2.c │ │ ├── w_pow.c │ │ ├── w_sqrt.c │ │ └── w_sqrt_compat.c │ ├── gccframe.h │ ├── htl │ │ ├── Implies │ │ ├── Makefile │ │ ├── bits │ │ │ └── pthreadtypes-arch.h │ │ ├── machine-sp.h │ │ └── tcb-offsets.sym │ ├── i386-mcount.S │ ├── i586 │ │ ├── add_n.S │ │ ├── addmul_1.S │ │ ├── isa.h │ │ ├── lshift.S │ │ ├── memcopy.h │ │ ├── memcpy.S │ │ ├── mempcpy.S │ │ ├── memset.S │ │ ├── mul_1.S │ │ ├── rshift.S │ │ ├── stpcpy.S │ │ ├── strchr.S │ │ ├── strcpy.S │ │ ├── strlen.S │ │ ├── sub_n.S │ │ └── submul_1.S │ ├── i686 │ │ ├── Makefile │ │ ├── add_n.S │ │ ├── dl-hash.h │ │ ├── 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 │ │ │ │ ├── s_cosf-sse2.c │ │ │ │ ├── s_cosf.c │ │ │ │ ├── s_sincosf-sse2.c │ │ │ │ ├── s_sincosf.c │ │ │ │ ├── s_sinf-sse2.c │ │ │ │ └── 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 │ │ ├── multiarch │ │ │ ├── Makefile │ │ │ ├── dl-symbol-redir-ifunc.h │ │ │ ├── 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.c │ │ │ ├── memmove-ia32.S │ │ │ ├── memmove-sse2-unaligned.S │ │ │ ├── memmove-ssse3-rep.S │ │ │ ├── memmove-ssse3.S │ │ │ ├── memmove.c │ │ │ ├── memmove_chk.c │ │ │ ├── mempcpy-ia32.S │ │ │ ├── mempcpy-sse2-unaligned.S │ │ │ ├── mempcpy-ssse3-rep.S │ │ │ ├── mempcpy-ssse3.S │ │ │ ├── mempcpy.c │ │ │ ├── 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.c │ │ │ ├── rawmemchr-ia32.S │ │ │ ├── rawmemchr-sse2-bsf.S │ │ │ ├── rawmemchr-sse2.S │ │ │ ├── rawmemchr.c │ │ │ ├── rtld-strncpy-c.c │ │ │ ├── rtld-strnlen.c │ │ │ ├── s_fma-fma.c │ │ │ ├── s_fma.c │ │ │ ├── s_fmaf-fma.c │ │ │ ├── s_fmaf.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 │ │ │ ├── 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 │ │ └── strcmp.S │ ├── i786 │ │ └── Implies │ ├── isa.h │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── link-defines.sym │ ├── lshift.S │ ├── machine-gmon.h │ ├── malloc-alignment.h │ ├── math-use-builtins-ffs.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 │ ├── mul_1.S │ ├── nptl │ │ ├── Makefile │ │ ├── pthread-offsets.h │ │ ├── pthread_spin_init.c │ │ ├── pthread_spin_lock.S │ │ ├── pthread_spin_trylock.S │ │ ├── pthread_spin_unlock.S │ │ ├── rseq-access.h │ │ ├── tcb-access.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── preconfigure │ ├── 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 │ ├── string-opthr.h │ ├── 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-get-addr-wrapper.h │ ├── tls_get_addr.S │ ├── tls_get_addr.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 │ └── unwind-arch.h ├── ieee754 │ ├── Makefile │ ├── dbl-64 │ │ ├── Makefile │ │ ├── asincos.tbl │ │ ├── atnat.h │ │ ├── atnat2.h │ │ ├── branred.c │ │ ├── branred.h │ │ ├── dbl2mpn.c │ │ ├── ddcoremath.h │ │ ├── dla.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 │ │ ├── k_rem_pio2.c │ │ ├── k_tan.c │ │ ├── libm-test-ulps │ │ ├── math_config.h │ │ ├── math_err.c │ │ ├── mpn2dbl.c │ │ ├── mydefs.h │ │ ├── powtwo.tbl │ │ ├── root.tbl │ │ ├── s_asincosh_data.c │ │ ├── s_asincosh_data.h │ │ ├── s_asinh.c │ │ ├── s_atan.c │ │ ├── s_atanh_data.c │ │ ├── s_atanh_data.h │ │ ├── s_cbrt.c │ │ ├── s_ceil.c │ │ ├── s_compat_fromfp.c │ │ ├── s_compat_fromfp_main.c │ │ ├── s_compat_fromfpx.c │ │ ├── s_compat_ufromfp.c │ │ ├── s_compat_ufromfpx.c │ │ ├── s_copysign.c │ │ ├── s_cos.c │ │ ├── s_erf.c │ │ ├── s_erf_common.c │ │ ├── s_erf_common.h │ │ ├── s_erf_data.c │ │ ├── s_erf_data.h │ │ ├── s_erfc.c │ │ ├── s_erfc_data.c │ │ ├── s_erfc_data.h │ │ ├── s_expm1.c │ │ ├── s_f32xaddf64.c │ │ ├── s_f32xdivf64.c │ │ ├── s_f32xfmaf64.c │ │ ├── s_f32xmulf64.c │ │ ├── s_f32xsqrtf64.c │ │ ├── s_f32xsubf64.c │ │ ├── s_fabs.c │ │ ├── s_fadd.c │ │ ├── s_fdiv.c │ │ ├── s_ffma.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_fsqrt.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 │ │ ├── sincostab.c │ │ ├── tst-scanf-format-double-a.input │ │ ├── tst-scanf-format-double-aa.input │ │ ├── tst-scanf-format-double-e.input │ │ ├── tst-scanf-format-double-ee.input │ │ ├── tst-scanf-format-double-f.input │ │ ├── tst-scanf-format-double-ff.input │ │ ├── tst-scanf-format-double-g.input │ │ ├── tst-scanf-format-double-gg.input │ │ ├── uasncs.h │ │ ├── uatan.tbl │ │ ├── usncs.h │ │ ├── utan.h │ │ ├── utan.tbl │ │ ├── w_exp.c │ │ ├── w_exp10.c │ │ ├── w_exp2.c │ │ ├── w_fmod.c │ │ ├── w_hypot.c │ │ ├── w_ilogb-impl.h │ │ ├── w_ilogb.c │ │ ├── w_llogb.c │ │ ├── w_log.c │ │ ├── w_log2.c │ │ ├── w_pow.c │ │ ├── w_remainder.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_compat_fromfpf128.c │ │ ├── s_compat_fromfpxf128.c │ │ ├── s_compat_ufromfpf128.c │ │ ├── s_compat_ufromfpxf128.c │ │ ├── s_copysignf128.c │ │ ├── s_cosf128.c │ │ ├── s_erfcf128.c │ │ ├── s_erff128.c │ │ ├── s_expm1f128.c │ │ ├── s_f32addf128.c │ │ ├── s_f32divf128.c │ │ ├── s_f32fmaf128.c │ │ ├── s_f32mulf128.c │ │ ├── s_f32sqrtf128.c │ │ ├── s_f32subf128.c │ │ ├── s_f64addf128.c │ │ ├── s_f64divf128.c │ │ ├── s_f64fmaf128.c │ │ ├── s_f64mulf128.c │ │ ├── s_f64sqrtf128.c │ │ ├── s_f64subf128.c │ │ ├── s_f64xaddf128.c │ │ ├── s_f64xdivf128.c │ │ ├── s_f64xfmaf128.c │ │ ├── s_f64xmulf128.c │ │ ├── s_f64xsqrtf128.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 │ │ ├── w_scalbf128.c │ │ ├── wcstof128.c │ │ ├── wcstof128_l.c │ │ ├── wcstof128_nan.c │ │ └── x2y2m1f128.c │ ├── flt-32 │ │ ├── Makefile │ │ ├── e_acosf.c │ │ ├── e_acoshf.c │ │ ├── e_asinf.c │ │ ├── e_atan2f.c │ │ ├── e_atanhf.c │ │ ├── e_coshf.c │ │ ├── e_exp10f.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_sincoshf_data.c │ │ ├── e_sincoshf_data.h │ │ ├── e_sinhf.c │ │ ├── e_sqrtf.c │ │ ├── k_tanf.c │ │ ├── libm-test-ulps │ │ ├── math_config.h │ │ ├── math_errf.c │ │ ├── mpn2flt.c │ │ ├── reduce_aux.h │ │ ├── s_acospif.c │ │ ├── s_asincosf_data.c │ │ ├── s_asincosf_data.h │ │ ├── s_asincoshf_data.c │ │ ├── s_asincoshf_data.h │ │ ├── s_asincospif_data.c │ │ ├── s_asincospif_data.h │ │ ├── s_asinhf.c │ │ ├── s_asinpif.c │ │ ├── s_atan2pif.c │ │ ├── s_atanf.c │ │ ├── s_atanpif.c │ │ ├── s_cbrtf.c │ │ ├── s_ceilf.c │ │ ├── s_compat_fromfpf.c │ │ ├── s_compat_fromfpf_main.c │ │ ├── s_compat_fromfpxf.c │ │ ├── s_compat_ufromfpf.c │ │ ├── s_compat_ufromfpxf.c │ │ ├── s_copysignf.c │ │ ├── s_cosf.c │ │ ├── s_cospif.c │ │ ├── s_erfcf.c │ │ ├── s_erff.c │ │ ├── s_exp10m1f.c │ │ ├── s_exp2m1f.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_log10p1f.c │ │ ├── s_log1pf.c │ │ ├── s_log2p1f.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_sincospif_data.c │ │ ├── s_sincospif_data.h │ │ ├── s_sinf.c │ │ ├── s_sinpif.c │ │ ├── s_tanf.c │ │ ├── s_tanhf.c │ │ ├── s_tanpif.c │ │ ├── s_totalorderf.c │ │ ├── s_totalordermagf.c │ │ ├── s_truncf.c │ │ ├── s_ufromfpf.c │ │ ├── s_ufromfpxf.c │ │ ├── sincosf_poly.h │ │ ├── tst-scanf-format-float-a.input │ │ ├── tst-scanf-format-float-aa.input │ │ ├── tst-scanf-format-float-e.input │ │ ├── tst-scanf-format-float-ee.input │ │ ├── tst-scanf-format-float-f.input │ │ ├── tst-scanf-format-float-ff.input │ │ ├── tst-scanf-format-float-g.input │ │ ├── tst-scanf-format-float-gg.input │ │ ├── w_acosf.c │ │ ├── w_acoshf.c │ │ ├── w_asinf.c │ │ ├── w_atan2f.c │ │ ├── w_atanhf.c │ │ ├── w_coshf.c │ │ ├── w_exp2f.c │ │ ├── w_expf.c │ │ ├── w_fmodf.c │ │ ├── w_hypotf.c │ │ ├── w_ilogbf-impl.h │ │ ├── w_ilogbf.c │ │ ├── w_j0f.c │ │ ├── w_j1f.c │ │ ├── w_jnf.c │ │ ├── w_lgammaf.c │ │ ├── w_lgammaf_r.c │ │ ├── w_llogbf.c │ │ ├── w_log10f.c │ │ ├── w_log1pf.c │ │ ├── w_log2f.c │ │ ├── w_logf.c │ │ ├── w_powf.c │ │ ├── w_remainderf.c │ │ ├── w_sinhf.c │ │ ├── w_sqrtf.c │ │ └── w_tgammaf.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_compat_fromfpl.c │ │ ├── s_compat_fromfpl_main.c │ │ ├── s_compat_fromfpxl.c │ │ ├── s_compat_ufromfpl.c │ │ ├── s_compat_ufromfpxl.c │ │ ├── s_copysignl.c │ │ ├── s_cosl.c │ │ ├── s_daddl.c │ │ ├── s_ddivl.c │ │ ├── s_dfmal.c │ │ ├── s_dmull.c │ │ ├── s_dsqrtl.c │ │ ├── s_dsubl.c │ │ ├── s_erfcl.c │ │ ├── s_erfl.c │ │ ├── s_expm1l.c │ │ ├── s_f64xaddf128.c │ │ ├── s_f64xdivf128.c │ │ ├── s_f64xfmaf128.c │ │ ├── s_f64xmulf128.c │ │ ├── s_f64xsqrtf128.c │ │ ├── s_f64xsubf128.c │ │ ├── s_fabsl.c │ │ ├── s_faddl.c │ │ ├── s_fdivl.c │ │ ├── s_ffmal.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_fsqrtl.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 │ │ ├── tst-scanf-format-ldouble-a.input │ │ ├── tst-scanf-format-ldouble-aa.input │ │ ├── tst-scanf-format-ldouble-e.input │ │ ├── tst-scanf-format-ldouble-ee.input │ │ ├── tst-scanf-format-ldouble-f.input │ │ ├── tst-scanf-format-ldouble-ff.input │ │ ├── tst-scanf-format-ldouble-g.input │ │ ├── tst-scanf-format-ldouble-gg.input │ │ └── x2y2m1l.c │ ├── ldbl-128ibm-compat │ │ ├── Makeconfig │ │ ├── Makefile │ │ ├── Versions │ │ ├── bits │ │ │ └── long-double.h │ │ ├── e_scalbf128.c │ │ ├── ieee128-argp-help.c │ │ ├── ieee128-asprintf.c │ │ ├── ieee128-asprintf_chk.c │ │ ├── ieee128-dprintf.c │ │ ├── ieee128-dprintf_chk.c │ │ ├── ieee128-err.c │ │ ├── ieee128-error.c │ │ ├── ieee128-fprintf.c │ │ ├── ieee128-fprintf_chk.c │ │ ├── ieee128-fscanf.c │ │ ├── ieee128-fwprintf.c │ │ ├── ieee128-fwprintf_chk.c │ │ ├── ieee128-fwscanf.c │ │ ├── ieee128-isoc23_fscanf.c │ │ ├── ieee128-isoc23_fwscanf.c │ │ ├── ieee128-isoc23_scanf.c │ │ ├── ieee128-isoc23_sscanf.c │ │ ├── ieee128-isoc23_swscanf.c │ │ ├── ieee128-isoc23_vfscanf.c │ │ ├── ieee128-isoc23_vfwscanf.c │ │ ├── ieee128-isoc23_vscanf.c │ │ ├── ieee128-isoc23_vsscanf.c │ │ ├── ieee128-isoc23_vswscanf.c │ │ ├── ieee128-isoc23_vwscanf.c │ │ ├── ieee128-isoc23_wscanf.c │ │ ├── ieee128-isoc99_fscanf.c │ │ ├── ieee128-isoc99_fwscanf.c │ │ ├── ieee128-isoc99_scanf.c │ │ ├── ieee128-isoc99_sscanf.c │ │ ├── ieee128-isoc99_swscanf.c │ │ ├── ieee128-isoc99_vfscanf.c │ │ ├── ieee128-isoc99_vfwscanf.c │ │ ├── ieee128-isoc99_vscanf.c │ │ ├── ieee128-isoc99_vsscanf.c │ │ ├── ieee128-isoc99_vswscanf.c │ │ ├── ieee128-isoc99_vwscanf.c │ │ ├── ieee128-isoc99_wscanf.c │ │ ├── ieee128-obprintf.c │ │ ├── ieee128-obstack_chk.c │ │ ├── ieee128-printf.c │ │ ├── ieee128-printf_chk.c │ │ ├── ieee128-printf_size.c │ │ ├── ieee128-qefgcvt.c │ │ ├── ieee128-qefgcvt_r.c │ │ ├── ieee128-scanf.c │ │ ├── ieee128-snprintf.c │ │ ├── ieee128-snprintf_chk.c │ │ ├── ieee128-sprintf.c │ │ ├── ieee128-sprintf_chk.c │ │ ├── ieee128-sscanf.c │ │ ├── ieee128-strfmon.c │ │ ├── ieee128-strfmon_l.c │ │ ├── ieee128-swprintf.c │ │ ├── ieee128-swprintf_chk.c │ │ ├── ieee128-swscanf.c │ │ ├── ieee128-syslog.c │ │ ├── ieee128-vasprintf.c │ │ ├── ieee128-vasprintf_chk.c │ │ ├── ieee128-vdprintf.c │ │ ├── ieee128-vdprintf_chk.c │ │ ├── ieee128-vfprintf.c │ │ ├── ieee128-vfprintf_chk.c │ │ ├── ieee128-vfscanf.c │ │ ├── ieee128-vfwprintf.c │ │ ├── ieee128-vfwprintf_chk.c │ │ ├── ieee128-vfwscanf.c │ │ ├── ieee128-vobstack_chk.c │ │ ├── ieee128-vprintf.c │ │ ├── ieee128-vprintf_chk.c │ │ ├── ieee128-vscanf.c │ │ ├── ieee128-vsnprintf.c │ │ ├── ieee128-vsnprintf_chk.c │ │ ├── ieee128-vsprintf.c │ │ ├── ieee128-vsprintf_chk.c │ │ ├── ieee128-vsscanf.c │ │ ├── ieee128-vswprintf.c │ │ ├── ieee128-vswprintf_chk.c │ │ ├── ieee128-vswscanf.c │ │ ├── ieee128-vwprintf.c │ │ ├── ieee128-vwprintf_chk.c │ │ ├── ieee128-vwscanf.c │ │ ├── ieee128-wprintf.c │ │ ├── ieee128-wprintf_chk.c │ │ ├── ieee128-wscanf.c │ │ ├── libm-alias-float128.h │ │ ├── math-narrow-alias-float128.h │ │ ├── math_ldbl.h │ │ ├── s_nextafterf128.c │ │ ├── s_nexttowardf128.c │ │ ├── s_significandf128.c │ │ ├── set-freeres-fp.h │ │ ├── strfromf128.c │ │ ├── strtof128.c │ │ ├── strtof128_l.c │ │ ├── test-isoc99-scanf-ibm128.c │ │ ├── test-isoc99-scanf-ieee128.c │ │ ├── test-isoc99-wscanf-ibm128.c │ │ ├── test-isoc99-wscanf-ieee128.c │ │ ├── test-obstack-chk-ibm128.c │ │ ├── test-obstack-chk-ieee128.c │ │ ├── test-obstack-chk-ldbl-compat.c │ │ ├── test-obstack-ibm128.c │ │ ├── test-obstack-ieee128.c │ │ ├── test-obstack-ldbl-compat-template.c │ │ ├── test-obstack-ldbl-compat.c │ │ ├── test-printf-chk-ibm128.c │ │ ├── test-printf-chk-ieee128.c │ │ ├── test-printf-chk-ldbl-compat.c │ │ ├── test-printf-chk-redir-ibm128.c │ │ ├── test-printf-chk-redir-ieee128.c │ │ ├── test-printf-ibm128.c │ │ ├── test-printf-ieee128.c │ │ ├── test-printf-ldbl-compat.c │ │ ├── test-printf-size-ibm128.c │ │ ├── test-printf-size-ieee128.c │ │ ├── test-scanf-ibm128.c │ │ ├── test-scanf-ieee128.c │ │ ├── test-scanf-ldbl-compat-template.c │ │ ├── test-scanf-ldbl-compat.c │ │ ├── test-scanf-ldbl-compat.sh │ │ ├── test-strfmon-ibm128.c │ │ ├── test-strfmon-ieee128.c │ │ ├── test-strfmon-ldbl-compat.c │ │ ├── test-strfrom-ibm128.c │ │ ├── test-strfrom-ieee128.c │ │ ├── test-strfrom-ldbl-compat.c │ │ ├── test-syslog-chk-ibm128.c │ │ ├── test-syslog-chk-ieee128.c │ │ ├── test-syslog-chk-ldbl-compat.c │ │ ├── test-syslog-ibm128.c │ │ ├── test-syslog-ieee128.c │ │ ├── test-syslog-ldbl-compat-template.c │ │ ├── test-syslog-ldbl-compat.c │ │ ├── test-wcstold-ibm128.c │ │ ├── test-wcstold-ieee128.c │ │ ├── test-wcstold-ldbl-compat.c │ │ ├── test-wprintf-chk-ibm128.c │ │ ├── test-wprintf-chk-ieee128.c │ │ ├── test-wprintf-chk-ldbl-compat.c │ │ ├── test-wprintf-chk-redir-ibm128.c │ │ ├── test-wprintf-chk-redir-ieee128.c │ │ ├── test-wprintf-ibm128.c │ │ ├── test-wprintf-ieee128.c │ │ ├── test-wprintf-ldbl-compat.c │ │ ├── test-wscanf-ibm128.c │ │ ├── test-wscanf-ieee128.c │ │ ├── test-wscanf-ldbl-compat.c │ │ ├── tst-ibm128-scanf-binary-c11.c │ │ ├── tst-ibm128-scanf-binary-c23.c │ │ ├── tst-ibm128-scanf-binary-gnu11.c │ │ ├── tst-ibm128-scanf-binary-gnu89.c │ │ ├── tst-ibm128-wscanf-binary-c11.c │ │ ├── tst-ibm128-wscanf-binary-c23.c │ │ ├── tst-ibm128-wscanf-binary-gnu11.c │ │ ├── tst-ibm128-wscanf-binary-gnu89.c │ │ ├── tst-ieee128-scanf-binary-c11.c │ │ ├── tst-ieee128-scanf-binary-c23.c │ │ ├── tst-ieee128-scanf-binary-gnu11.c │ │ ├── tst-ieee128-scanf-binary-gnu89.c │ │ ├── tst-ieee128-wscanf-binary-c11.c │ │ ├── tst-ieee128-wscanf-binary-c23.c │ │ ├── tst-ieee128-wscanf-binary-gnu11.c │ │ ├── tst-ieee128-wscanf-binary-gnu89.c │ │ ├── w_scalbf128.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_compat_fromfpl.c │ │ ├── s_compat_fromfpl_main.c │ │ ├── s_compat_fromfpxl.c │ │ ├── s_compat_ufromfpl.c │ │ ├── s_compat_ufromfpxl.c │ │ ├── s_copysignl.c │ │ ├── s_cosl.c │ │ ├── s_daddl.c │ │ ├── s_ddivl.c │ │ ├── s_dfmal.c │ │ ├── s_dmull.c │ │ ├── s_dsqrtl.c │ │ ├── s_dsubl.c │ │ ├── s_erfcl.c │ │ ├── s_erfl.c │ │ ├── s_expm1l.c │ │ ├── s_fabsl.c │ │ ├── s_faddl.c │ │ ├── s_fdivl.c │ │ ├── s_ffmal.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_fsqrtl.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-scanf-format-ldouble-a.input │ │ ├── tst-scanf-format-ldouble-aa.input │ │ ├── tst-scanf-format-ldouble-e.input │ │ ├── tst-scanf-format-ldouble-ee.input │ │ ├── tst-scanf-format-ldouble-f.input │ │ ├── tst-scanf-format-ldouble-ff.input │ │ ├── tst-scanf-format-ldouble-g.input │ │ ├── tst-scanf-format-ldouble-gg.input │ │ ├── tst-strtold-ldbl-128ibm.c │ │ └── x2y2m1l.c │ ├── ldbl-64-128 │ │ ├── Makefile │ │ ├── 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 │ │ ├── Makeconfig │ │ ├── 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_productl.c │ │ ├── include │ │ │ └── bits │ │ │ │ └── iscanonical.h │ │ ├── k_cosl.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 │ │ ├── nan-pseudo-number.h │ │ ├── printf_fphex.c │ │ ├── s_asinhl.c │ │ ├── s_cbrtl.c │ │ ├── s_compat_fromfpl.c │ │ ├── s_compat_fromfpl_main.c │ │ ├── s_compat_fromfpxl.c │ │ ├── s_compat_ufromfpl.c │ │ ├── s_compat_ufromfpxl.c │ │ ├── s_copysignl.c │ │ ├── s_cosl.c │ │ ├── s_daddl.c │ │ ├── s_ddivl.c │ │ ├── s_dfmal.c │ │ ├── s_dmull.c │ │ ├── s_dsqrtl.c │ │ ├── s_dsubl.c │ │ ├── s_erfcl.c │ │ ├── s_erfl.c │ │ ├── s_fabsl.c │ │ ├── s_faddl.c │ │ ├── s_fdivl.c │ │ ├── s_ffmal.c │ │ ├── s_fmal.c │ │ ├── s_fmull.c │ │ ├── s_frexpl.c │ │ ├── s_fromfpl.c │ │ ├── s_fromfpl_main.c │ │ ├── s_fromfpxl.c │ │ ├── s_fsqrtl.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-sinl-pseudo.c │ │ ├── test-totalorderl-ldbl-96.c │ │ ├── tst-scanf-format-ldouble-a.input │ │ ├── tst-scanf-format-ldouble-aa.input │ │ ├── tst-scanf-format-ldouble-e.input │ │ ├── tst-scanf-format-ldouble-ee.input │ │ ├── tst-scanf-format-ldouble-f.input │ │ ├── tst-scanf-format-ldouble-ff.input │ │ ├── tst-scanf-format-ldouble-g.input │ │ ├── tst-scanf-format-ldouble-gg.input │ │ ├── tst-scanf-format-skeleton-ldouble.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-acospi.c │ │ ├── nldbl-asin.c │ │ ├── nldbl-asinh.c │ │ ├── nldbl-asinpi.c │ │ ├── nldbl-asprintf.c │ │ ├── nldbl-asprintf_chk.c │ │ ├── nldbl-atan.c │ │ ├── nldbl-atan2.c │ │ ├── nldbl-atan2pi.c │ │ ├── nldbl-atanh.c │ │ ├── nldbl-atanpi.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-compoundn.c │ │ ├── nldbl-conj.c │ │ ├── nldbl-copysign.c │ │ ├── nldbl-cos.c │ │ ├── nldbl-cosh.c │ │ ├── nldbl-cospi.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-dfma.c │ │ ├── nldbl-dmul.c │ │ ├── nldbl-dprintf.c │ │ ├── nldbl-dprintf_chk.c │ │ ├── nldbl-dsqrt.c │ │ ├── nldbl-dsub.c │ │ ├── nldbl-erf.c │ │ ├── nldbl-erfc.c │ │ ├── nldbl-exp.c │ │ ├── nldbl-exp10.c │ │ ├── nldbl-exp10m1.c │ │ ├── nldbl-exp2.c │ │ ├── nldbl-exp2m1.c │ │ ├── nldbl-expm1.c │ │ ├── nldbl-fabs.c │ │ ├── nldbl-fadd.c │ │ ├── nldbl-fdim.c │ │ ├── nldbl-fdiv.c │ │ ├── nldbl-ffma.c │ │ ├── nldbl-finite.c │ │ ├── nldbl-floor.c │ │ ├── nldbl-fma.c │ │ ├── nldbl-fmax.c │ │ ├── nldbl-fmaximum.c │ │ ├── nldbl-fmaximum_mag.c │ │ ├── nldbl-fmaximum_mag_num.c │ │ ├── nldbl-fmaximum_num.c │ │ ├── nldbl-fmaxmag.c │ │ ├── nldbl-fmin.c │ │ ├── nldbl-fminimum.c │ │ ├── nldbl-fminimum_mag.c │ │ ├── nldbl-fminimum_mag_num.c │ │ ├── nldbl-fminimum_num.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-fsqrt.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-isoc23_fscanf.c │ │ ├── nldbl-isoc23_fwscanf.c │ │ ├── nldbl-isoc23_scanf.c │ │ ├── nldbl-isoc23_sscanf.c │ │ ├── nldbl-isoc23_swscanf.c │ │ ├── nldbl-isoc23_vfscanf.c │ │ ├── nldbl-isoc23_vfwscanf.c │ │ ├── nldbl-isoc23_vscanf.c │ │ ├── nldbl-isoc23_vsscanf.c │ │ ├── nldbl-isoc23_vswscanf.c │ │ ├── nldbl-isoc23_vwscanf.c │ │ ├── nldbl-isoc23_wscanf.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-log10p1.c │ │ ├── nldbl-log1p.c │ │ ├── nldbl-log2.c │ │ ├── nldbl-log2p1.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-pown.c │ │ ├── nldbl-powr.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-rootn.c │ │ ├── nldbl-round.c │ │ ├── nldbl-roundeven.c │ │ ├── nldbl-rsqrt.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-sinpi.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-tanpi.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 │ │ ├── test-redirection-ldbl-64.c │ │ ├── tst-nldbl-scanf-binary-c11.c │ │ ├── tst-nldbl-scanf-binary-c23.c │ │ ├── tst-nldbl-scanf-binary-gnu11.c │ │ ├── tst-nldbl-scanf-binary-gnu89.c │ │ ├── tst-nldbl-wscanf-binary-c11.c │ │ ├── tst-nldbl-wscanf-binary-c23.c │ │ ├── tst-nldbl-wscanf-binary-gnu11.c │ │ ├── tst-nldbl-wscanf-binary-gnu89.c │ │ ├── tst-scanf-format-ldouble-a.input │ │ ├── tst-scanf-format-ldouble-aa.input │ │ ├── tst-scanf-format-ldouble-e.input │ │ ├── tst-scanf-format-ldouble-ee.input │ │ ├── tst-scanf-format-ldouble-f.input │ │ ├── tst-scanf-format-ldouble-ff.input │ │ ├── tst-scanf-format-ldouble-g.input │ │ ├── tst-scanf-format-ldouble-gg.input │ │ ├── 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 │ ├── libm-alias-finite.h │ ├── s_lib_version.c │ ├── s_matherr.c │ ├── s_signgam.c │ └── soft-fp │ │ ├── Makefile │ │ ├── s_daddl.c │ │ ├── s_ddivl.c │ │ ├── s_dfmal.c │ │ ├── s_dmull.c │ │ ├── s_dsqrtl.c │ │ ├── s_dsubl.c │ │ ├── s_fadd.c │ │ ├── s_faddl.c │ │ ├── s_fdiv.c │ │ ├── s_fdivl.c │ │ ├── s_ffma.c │ │ ├── s_ffmal.c │ │ ├── s_fma.c │ │ ├── s_fmaf.c │ │ ├── s_fmal.c │ │ ├── s_fmul.c │ │ ├── s_fmull.c │ │ ├── s_fsqrt.c │ │ ├── s_fsqrtl.c │ │ ├── s_fsub.c │ │ └── s_fsubl.c ├── loongarch │ ├── Implies │ ├── Makefile │ ├── __longjmp.S │ ├── abort-instr.h │ ├── bits │ │ ├── endianness.h │ │ ├── fenv.h │ │ ├── link.h │ │ ├── link_lavcurrent.h │ │ └── setjmp.h │ ├── bsd-_setjmp.c │ ├── bsd-setjmp.c │ ├── configure │ ├── configure.ac │ ├── cpu-tunables.c │ ├── dl-audit-check.h │ ├── dl-get-cpu-features.c │ ├── dl-irel.h │ ├── dl-link.sym │ ├── dl-machine.h │ ├── dl-tls.h │ ├── dl-tlsdesc-dynamic.h │ ├── dl-tlsdesc.S │ ├── dl-tlsdesc.h │ ├── dl-trampoline.S │ ├── dl-trampoline.h │ ├── dl-tunables.list │ ├── e_sqrtl.c │ ├── fenv_private.h │ ├── fpu │ │ ├── e_ilogbf.c │ │ ├── e_scalb.c │ │ ├── e_scalbf.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 │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── get-rounding-mode.h │ │ ├── math-barriers.h │ │ ├── math-type-macros-double.h │ │ ├── math-type-macros-float.h │ │ ├── math-use-builtins-fma.h │ │ ├── math-use-builtins-fmax.h │ │ ├── math-use-builtins-fmin.h │ │ ├── math-use-builtins-llrint.h │ │ ├── math-use-builtins-logb.h │ │ ├── math-use-builtins-lrint.h │ │ ├── math-use-builtins-rint.h │ │ ├── math-use-builtins-sqrt.h │ │ ├── s_finite.c │ │ ├── s_finitef.c │ │ ├── s_fmaximum_mag_num_template.c │ │ ├── s_fmaximum_mag_template.c │ │ ├── s_fmaximum_num_template.c │ │ ├── s_fmaximum_template.c │ │ ├── s_fmaxmag.c │ │ ├── s_fmaxmagf.c │ │ ├── s_fminimum_mag_num_template.c │ │ ├── s_fminimum_mag_template.c │ │ ├── s_fminimum_num_template.c │ │ ├── s_fminimum_template.c │ │ ├── s_fminmag.c │ │ ├── s_fminmagf.c │ │ ├── s_fpclassify.c │ │ ├── s_fpclassifyf.c │ │ ├── s_isinf.c │ │ ├── s_isinff.c │ │ ├── s_isnan.c │ │ ├── s_isnanf.c │ │ ├── s_issignaling.c │ │ ├── s_issignalingf.c │ │ ├── s_scalbn.c │ │ ├── s_scalbnf.c │ │ ├── w_ilogb-impl.h │ │ └── w_ilogbf-impl.h │ ├── fpu_control.h │ ├── hp-timing.h │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── linkmap.h │ ├── lp64 │ │ ├── Implies-after │ │ └── multiarch │ │ │ ├── Makefile │ │ │ ├── dl-symbol-redir-ifunc.h │ │ │ ├── ifunc-impl-list.c │ │ │ ├── ifunc-lasx.h │ │ │ ├── ifunc-memchr.h │ │ │ ├── ifunc-memcmp.h │ │ │ ├── ifunc-memrchr.h │ │ │ ├── ifunc-rawmemchr.h │ │ │ ├── ifunc-strchr.h │ │ │ ├── ifunc-strchrnul.h │ │ │ ├── ifunc-strcmp.h │ │ │ ├── ifunc-strlen.h │ │ │ ├── ifunc-strncmp.h │ │ │ ├── ifunc-strnlen.h │ │ │ ├── ifunc-strrchr.h │ │ │ ├── memchr-aligned.S │ │ │ ├── memchr-lasx.S │ │ │ ├── memchr-lsx.S │ │ │ ├── memchr.c │ │ │ ├── memcmp-aligned.S │ │ │ ├── memcmp-lasx.S │ │ │ ├── memcmp-lsx.S │ │ │ ├── memcmp.c │ │ │ ├── memcpy-aligned.S │ │ │ ├── memcpy-lasx.S │ │ │ ├── memcpy-lsx.S │ │ │ ├── memcpy-unaligned.S │ │ │ ├── memcpy.c │ │ │ ├── memmove-aligned.S │ │ │ ├── memmove-lasx.S │ │ │ ├── memmove-lsx.S │ │ │ ├── memmove-unaligned.S │ │ │ ├── memmove.c │ │ │ ├── memrchr-generic.c │ │ │ ├── memrchr-lasx.S │ │ │ ├── memrchr-lsx.S │ │ │ ├── memrchr.c │ │ │ ├── memset-aligned.S │ │ │ ├── memset-lasx.S │ │ │ ├── memset-lsx.S │ │ │ ├── memset-unaligned.S │ │ │ ├── memset.c │ │ │ ├── rawmemchr-aligned.S │ │ │ ├── rawmemchr-lasx.S │ │ │ ├── rawmemchr-lsx.S │ │ │ ├── rawmemchr.c │ │ │ ├── stpcpy-aligned.S │ │ │ ├── stpcpy-lasx.S │ │ │ ├── stpcpy-lsx.S │ │ │ ├── stpcpy-unaligned.S │ │ │ ├── stpcpy.c │ │ │ ├── strchr-aligned.S │ │ │ ├── strchr-lasx.S │ │ │ ├── strchr-lsx.S │ │ │ ├── strchr.c │ │ │ ├── strchrnul-aligned.S │ │ │ ├── strchrnul-lasx.S │ │ │ ├── strchrnul-lsx.S │ │ │ ├── strchrnul.c │ │ │ ├── strcmp-aligned.S │ │ │ ├── strcmp-lsx.S │ │ │ ├── strcmp.c │ │ │ ├── strcpy-aligned.S │ │ │ ├── strcpy-lasx.S │ │ │ ├── strcpy-lsx.S │ │ │ ├── strcpy-unaligned.S │ │ │ ├── strcpy.c │ │ │ ├── strlen-aligned.S │ │ │ ├── strlen-lasx.S │ │ │ ├── strlen-lsx.S │ │ │ ├── strlen.c │ │ │ ├── strncmp-aligned.S │ │ │ ├── strncmp-lsx.S │ │ │ ├── strncmp.c │ │ │ ├── strnlen-aligned.S │ │ │ ├── strnlen-lasx.S │ │ │ ├── strnlen-lsx.S │ │ │ ├── strnlen.c │ │ │ ├── strrchr-aligned.S │ │ │ ├── strrchr-lasx.S │ │ │ ├── strrchr-lsx.S │ │ │ └── strrchr.c │ ├── machine-gmon.h │ ├── math-use-builtins-ffs.h │ ├── nofpu │ │ ├── Implies │ │ ├── math-tests-exceptions.h │ │ └── math-tests-rounding.h │ ├── nptl │ │ ├── pthreaddef.h │ │ └── tls.h │ ├── preconfigure │ ├── preconfigure.ac │ ├── setjmp.S │ ├── sfp-machine.h │ ├── sotruss-lib.c │ ├── start.S │ ├── sys │ │ ├── asm.h │ │ ├── ifunc.h │ │ └── regdef.h │ ├── thread_pointer.h │ ├── tininess.h │ ├── tlsdesc.c │ ├── tlsdesc.sym │ ├── tst-audit.h │ ├── tst-gnu2-tls2.h │ └── tst-hwcap-tunables.c ├── m68k │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── __longjmp.c │ ├── abort-instr.h │ ├── asm-syntax.h │ ├── backtrace.c │ ├── bits │ │ ├── endianness.h │ │ ├── fenv.h │ │ ├── link.h │ │ ├── setjmp.h │ │ └── wordsize.h │ ├── bsd-_setjmp.c │ ├── bsd-setjmp.c │ ├── coldfire │ │ ├── fpu │ │ │ ├── fraiseexcpt.c │ │ │ ├── math-use-builtins-sqrt.h │ │ │ ├── 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 │ ├── configure │ ├── configure.ac │ ├── crti.S │ ├── crtn.S │ ├── dl-machine.h │ ├── dl-tls.h │ ├── dl-trampoline.S │ ├── elf-initfini.h │ ├── 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 │ │ └── math-use-builtins-sqrt.h │ ├── 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 │ │ │ ├── Versions │ │ │ ├── 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_sqrtl.c │ │ │ ├── fraiseexcpt.c │ │ │ ├── k_cosl.c │ │ │ ├── k_rem_pio2.c │ │ │ ├── k_sinl.c │ │ │ ├── k_tanf.c │ │ │ ├── k_tanl.c │ │ │ ├── math-barriers.h │ │ │ ├── mathimpl.h │ │ │ ├── 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_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_acosf_compat.c │ │ │ ├── w_asinf_compat.c │ │ │ ├── w_atan2f_compat.c │ │ │ ├── w_atanhf_compat.c │ │ │ ├── w_coshf_compat.c │ │ │ ├── w_exp.c │ │ │ ├── w_exp10_compat.c │ │ │ ├── w_exp2.c │ │ │ ├── w_exp2f.c │ │ │ ├── w_expf.c │ │ │ ├── w_fmod_compat.c │ │ │ ├── w_log.c │ │ │ ├── w_log10f_compat.c │ │ │ ├── w_log1pf.c │ │ │ ├── w_log2.c │ │ │ ├── w_log2f.c │ │ │ ├── w_logf.c │ │ │ ├── w_pow.c │ │ │ ├── w_powf.c │ │ │ └── w_sinhf_compat.c │ │ ├── lshift.S │ │ ├── m68020 │ │ │ ├── addmul_1.S │ │ │ ├── mul_1.S │ │ │ └── submul_1.S │ │ ├── printf_fphex.c │ │ ├── rshift.S │ │ ├── strtold_l.c │ │ ├── sub_n.S │ │ ├── sysdep.h │ │ ├── unwind-arch.h │ │ ├── w_ilogb.c │ │ ├── w_ilogbf.c │ │ ├── w_llogb.c │ │ └── w_llogbf.c │ ├── math-use-builtins-ffs.h │ ├── memchr.S │ ├── memcopy.h │ ├── nptl │ │ ├── bits │ │ │ ├── pthreadtypes-arch.h │ │ │ └── semaphore.h │ │ ├── pthreaddef.h │ │ └── tls.h │ ├── preconfigure │ ├── preconfigure.ac │ ├── 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 │ ├── thread_pointer.h │ ├── tst-audit.h │ ├── unwind-arch.h │ ├── utmp-size.h │ ├── wcpcpy_chk.c │ └── wordcopy.c ├── mach │ ├── Makefile │ ├── Subdirs │ ├── _strerror.c │ ├── adjtime.c │ ├── clock_gettime.c │ ├── clock_nanosleep.c │ ├── configure │ ├── configure.ac │ ├── getloadavg.c │ ├── getpagesize.c │ ├── getsysstats.c │ ├── htl │ │ ├── Implies │ │ ├── bits │ │ │ ├── spin-lock-inline.h │ │ │ └── types │ │ │ │ └── __pthread_spinlock_t.h │ │ ├── pt-block-intr.c │ │ ├── pt-block.c │ │ ├── pt-getname-np.c │ │ ├── pt-setname-np.c │ │ ├── pt-stack-alloc.c │ │ ├── pt-thread-alloc.c │ │ ├── pt-thread-start.c │ │ ├── pt-thread-terminate.c │ │ ├── pt-timedblock-intr.c │ │ ├── pt-timedblock.c │ │ ├── pt-wakeup.c │ │ └── thrd_yield.c │ ├── hurd │ │ ├── Implies │ │ ├── Makeconfig │ │ ├── Makefile │ │ ├── Subdirs │ │ ├── Versions │ │ ├── _Fork.c │ │ ├── _exit.c │ │ ├── accept.c │ │ ├── accept4.c │ │ ├── access.c │ │ ├── adjtime.c │ │ ├── arch-fd_to_filename.h │ │ ├── bind.c │ │ ├── bits │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── ioctls.h │ │ │ ├── local_lim.h │ │ │ ├── mman_ext.h │ │ │ ├── param.h │ │ │ ├── posix_opt.h │ │ │ ├── signum-arch.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── statvfs.h │ │ │ ├── stdio_lim.h │ │ │ ├── sysmacros.h │ │ │ ├── timesize.h │ │ │ ├── types │ │ │ │ ├── error_t.h │ │ │ │ ├── idtype_t.h │ │ │ │ └── struct_flock.h │ │ │ ├── typesizes.h │ │ │ └── unistd_ext.h │ │ ├── brk.c │ │ ├── chdir.c │ │ ├── check_fds.c │ │ ├── check_native.c │ │ ├── check_pf.c │ │ ├── chflags.c │ │ ├── chmod.c │ │ ├── chown.c │ │ ├── chroot.c │ │ ├── clock.c │ │ ├── clock_settime.c │ │ ├── close.c │ │ ├── close_nocancel.c │ │ ├── close_nocancel_nostatus.c │ │ ├── close_range.c │ │ ├── closedir.c │ │ ├── configure │ │ ├── configure.ac │ │ ├── connect.c │ │ ├── device-nrs.h │ │ ├── dirfd.c │ │ ├── dirstream.h │ │ ├── dl-execstack.c │ │ ├── dl-execve.h │ │ ├── dl-fcntl.h │ │ ├── dl-mman.h │ │ ├── dl-sysdep.c │ │ ├── dl-sysdep.h │ │ ├── dl-unistd.h │ │ ├── dup2.c │ │ ├── dup3.c │ │ ├── err_hurd.sub │ │ ├── err_map.h │ │ ├── errname.c │ │ ├── errno-loc.c │ │ ├── errnos.awk │ │ ├── euidaccess.c │ │ ├── execve.c │ │ ├── execveat.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 │ │ ├── fcntl_nocancel.c │ │ ├── fdatasync.c │ │ ├── fdopendir.c │ │ ├── fexecve.c │ │ ├── fgetxattr.c │ │ ├── flistxattr.c │ │ ├── flock.c │ │ ├── fpathconf.c │ │ ├── fremovexattr.c │ │ ├── fsetxattr.c │ │ ├── fstat.c │ │ ├── fstat64.c │ │ ├── fstatat.c │ │ ├── fstatat64.c │ │ ├── fstatat_common.h │ │ ├── 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 │ │ ├── getcwd.h │ │ ├── getdents.c │ │ ├── getdomain.c │ │ ├── getdtsz.c │ │ ├── getegid.c │ │ ├── getentropy.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 │ │ ├── getrandom-internal.h │ │ ├── getrandom.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-docancel.c │ │ │ ├── pt-hurd-cond-timedwait.c │ │ │ ├── pt-hurd-cond-wait.c │ │ │ ├── pt-mutex-checklocked.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-pthread_self.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 │ │ │ ├── __longjmp.S │ │ │ ├── bits │ │ │ │ ├── ipc-perm.h │ │ │ │ ├── sigcontext.h │ │ │ │ └── types │ │ │ │ │ ├── struct_flock.h │ │ │ │ │ ├── struct_msqid_ds.h │ │ │ │ │ └── struct_shmid_ds.h │ │ │ ├── c++-types.data │ │ │ ├── dl-tls-initialized.c │ │ │ ├── getcontext.S │ │ │ ├── htl │ │ │ │ ├── Implies │ │ │ │ ├── bits │ │ │ │ │ └── types │ │ │ │ │ │ ├── __pthread_t.h │ │ │ │ │ │ └── __thrd_t.h │ │ │ │ ├── pt-machdep.c │ │ │ │ └── pt-setup.c │ │ │ ├── intr-msg.h │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc.abilist │ │ │ ├── libc_malloc_debug.abilist │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libnsl.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt.abilist │ │ │ ├── libutil.abilist │ │ │ ├── localplt.data │ │ │ ├── longjmp-ts.c │ │ │ ├── makecontext.S │ │ │ ├── setcontext.S │ │ │ ├── sigcontextinfo.h │ │ │ ├── sigreturn.c │ │ │ ├── static-start.S │ │ │ ├── swapcontext.S │ │ │ ├── tls.h │ │ │ ├── tlsdesc.sym │ │ │ ├── ucontext_i.sym │ │ │ └── vm_param.h │ │ ├── if_index.c │ │ ├── ifreq.c │ │ ├── ifreq.h │ │ ├── init-first.c │ │ ├── init-posix.c │ │ ├── ioctl.c │ │ ├── isatty.c │ │ ├── jmp-unwind.c │ │ ├── kernel-features.h │ │ ├── kill.c │ │ ├── lchmod.c │ │ ├── lchown.c │ │ ├── lgetxattr.c │ │ ├── libc-ldscript │ │ ├── libc_p-ldscript │ │ ├── libc_sigaction.c │ │ ├── libhurduser.abilist │ │ ├── link.c │ │ ├── linkat.c │ │ ├── linkat_common.h │ │ ├── listen.c │ │ ├── listxattr.c │ │ ├── llistxattr.c │ │ ├── lremovexattr.c │ │ ├── lseek.c │ │ ├── lseek64.c │ │ ├── lsetxattr.c │ │ ├── lstat.c │ │ ├── lstat64.c │ │ ├── lutimes.c │ │ ├── lxstat.c │ │ ├── lxstat64.c │ │ ├── malloc-machine.h │ │ ├── mig-reply.c │ │ ├── min-eloop-threshold.h │ │ ├── mkdir.c │ │ ├── mkdirat.c │ │ ├── mknodat.c │ │ ├── mlock.c │ │ ├── mlockall.c │ │ ├── mmap.c │ │ ├── mmap64.c │ │ ├── mremap.c │ │ ├── msync.c │ │ ├── munlock.c │ │ ├── munlockall.c │ │ ├── net │ │ │ ├── ethernet.h │ │ │ ├── if_arp.h │ │ │ ├── if_ether.h │ │ │ └── route.h │ │ ├── not-cancel.h │ │ ├── open.c │ │ ├── open64.c │ │ ├── open_nocancel.c │ │ ├── openat.c │ │ ├── openat64.c │ │ ├── openat_nocancel.c │ │ ├── opendir.c │ │ ├── pathconf.c │ │ ├── pipe.c │ │ ├── pipe2.c │ │ ├── poll.c │ │ ├── ppoll.c │ │ ├── pread.c │ │ ├── pread64.c │ │ ├── pread64_nocancel.c │ │ ├── prof-freq.c │ │ ├── profil.c │ │ ├── pselect.c │ │ ├── ptrace.c │ │ ├── ptsname.c │ │ ├── pwrite.c │ │ ├── pwrite64.c │ │ ├── pwrite64_nocancel.c │ │ ├── read.c │ │ ├── read_nocancel.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 │ │ ├── sched_gets.c │ │ ├── sched_sets.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 │ │ ├── setuid.c │ │ ├── setxattr.c │ │ ├── shlib-versions │ │ ├── shutdown.c │ │ ├── sigaltstack.c │ │ ├── siglist-compat.h │ │ ├── sigpending.c │ │ ├── sigprocmask.c │ │ ├── sigstack.c │ │ ├── sigsuspend.c │ │ ├── sigthreadmask.c │ │ ├── sigtimedwait.c │ │ ├── sigwait.c │ │ ├── sigwaitinfo.c │ │ ├── socket.c │ │ ├── socketpair.c │ │ ├── spawn_int_def.h │ │ ├── spawni.c │ │ ├── stat.c │ │ ├── stat64.c │ │ ├── statconv.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 │ │ ├── wait4_nocancel.c │ │ ├── waitid.c │ │ ├── write.c │ │ ├── write_nocancel.c │ │ ├── writev_nocancel_nostatus.c │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── dl-sysdep.c │ │ │ ├── exc2signal.c │ │ │ ├── ioperm.c │ │ │ ├── set-hooks-arch.h │ │ │ ├── signal-defines.sym │ │ │ ├── sys │ │ │ │ └── io.h │ │ │ └── trampoline.c │ │ ├── x86_64 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── ____longjmp_chk.S │ │ │ ├── __longjmp.S │ │ │ ├── __start_context.S │ │ │ ├── bits │ │ │ │ └── sigcontext.h │ │ │ ├── c++-types.data │ │ │ ├── dl-tls-initialized.c │ │ │ ├── getcontext.S │ │ │ ├── htl │ │ │ │ ├── Implies │ │ │ │ ├── pt-machdep.c │ │ │ │ └── pt-setup.c │ │ │ ├── intr-msg.h │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc.abilist │ │ │ ├── libc_malloc_debug.abilist │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libmvec.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt.abilist │ │ │ ├── localplt.data │ │ │ ├── longjmp-ts.c │ │ │ ├── makecontext.c │ │ │ ├── setcontext.S │ │ │ ├── shlib-versions │ │ │ ├── sigreturn.c │ │ │ ├── static-start.S │ │ │ ├── swapcontext.S │ │ │ ├── tls.h │ │ │ ├── tlsdesc.sym │ │ │ ├── ucontext_i.sym │ │ │ └── vm_param.h │ │ ├── xmknod.c │ │ ├── xmknodat.c │ │ ├── xstat.c │ │ └── xstat64.c │ ├── i386 │ │ ├── Implies │ │ └── syscall.S │ ├── 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 │ ├── mach_rpc.h │ ├── mprotect.c │ ├── msync.c │ ├── munmap.c │ ├── pagecopy.h │ ├── readonly-area-fallback.c │ ├── sched_yield.c │ ├── sleep.c │ ├── strerror_l.c │ ├── sys │ │ ├── reboot.h │ │ └── syscall.h │ ├── sysdep.h │ ├── thread_state.h │ ├── usleep.c │ ├── x86 │ │ ├── bits │ │ │ └── mach │ │ │ │ └── param.h │ │ ├── machine-lock.h │ │ ├── sysdep.h │ │ └── thread_state.h │ ├── x86_64 │ │ └── Implies │ └── xpg-strerror.c ├── microblaze │ ├── Implies │ ├── Makefile │ ├── __longjmp.S │ ├── _mcount.S │ ├── abort-instr.h │ ├── asm-syntax.h │ ├── backtrace.c │ ├── backtrace_linux.c │ ├── be │ │ └── Implies │ ├── bits │ │ ├── endianness.h │ │ ├── fenv.h │ │ ├── link.h │ │ ├── setjmp.h │ │ └── wordsize.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── configure │ ├── configure.ac │ ├── crti.S │ ├── crtn.S │ ├── dl-machine.h │ ├── dl-trampoline.S │ ├── elf-initfini.h │ ├── gccframe.h │ ├── jmpbuf-unwind.h │ ├── ldbl-classify-compat.h │ ├── ldsodefs.h │ ├── le │ │ └── Implies │ ├── libc-tls.c │ ├── machine-gmon.h │ ├── nptl │ │ ├── pthreaddef.h │ │ └── tls.h │ ├── preconfigure │ ├── preconfigure.ac │ ├── setjmp.S │ ├── sfp-machine.h │ ├── sotruss-lib.c │ ├── stackinfo.h │ ├── start.S │ ├── sysdep.h │ ├── thread_pointer.h │ ├── tst-audit.h │ ├── tst-file-align.h │ └── utmp-size.h ├── mips │ ├── Implies │ ├── Makefile │ ├── __longjmp.c │ ├── abort-instr.h │ ├── add_n.S │ ├── addmul_1.S │ ├── bits │ │ ├── dlfcn.h │ │ ├── endianness.h │ │ ├── fenv.h │ │ ├── ipctypes.h │ │ ├── link.h │ │ ├── setjmp.h │ │ └── wordsize.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── configure │ ├── configure.ac │ ├── dl-debug.h │ ├── dl-dtprocnum.h │ ├── dl-machine-reject-phdr.h │ ├── dl-machine-rel.h │ ├── dl-machine.h │ ├── dl-r_debug.h │ ├── dl-relocate-ld.h │ ├── dl-tls.h │ ├── dl-trampoline.c │ ├── elf-initfini.h │ ├── elf_machine_sym_no_match.h │ ├── fpregdef.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 │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── math-use-builtins-fma.h │ │ └── math-use-builtins-sqrt.h │ ├── fpu_control.h │ ├── gccframe.h │ ├── ieee754 │ │ ├── bits │ │ │ ├── floatn.h │ │ │ └── long-double.h │ │ ├── ieee754.h │ │ └── s_fmal.c │ ├── include │ │ └── sys │ │ │ └── asm.h │ ├── isarev.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 │ ├── math-use-builtins-ffs.h │ ├── memcpy.S │ ├── memset.S │ ├── mips32 │ │ ├── Implies │ │ ├── Makefile │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── fpu │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── fix-fp-int-convert-overflow.h │ │ │ └── fpucw-helpers.c │ │ ├── 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 │ │ ├── lshift.S │ │ ├── mul_1.S │ │ ├── n32 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── _itoa.h │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ └── nofpu │ │ │ │ └── Implies │ │ ├── n64 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── crti.S │ │ │ ├── crtn.S │ │ │ └── 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 │ │ ├── bits │ │ │ ├── pthreadtypes-arch.h │ │ │ ├── semaphore.h │ │ │ ├── struct_mutex.h │ │ │ └── struct_rwlock.h │ │ ├── pthread-offsets.h │ │ ├── pthreaddef.h │ │ └── tls.h │ ├── preconfigure │ ├── preconfigure.ac │ ├── regdef.h │ ├── rshift.S │ ├── setjmp.S │ ├── setjmp_aux.c │ ├── sgidefs.h │ ├── sotruss-lib.c │ ├── stackinfo.h │ ├── start.S │ ├── sub_n.S │ ├── submul_1.S │ ├── sys │ │ ├── asm.h │ │ ├── fpregdef.h │ │ ├── regdef.h │ │ ├── tas.h │ │ └── ucontext.h │ ├── tininess.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 │ ├── tst-undefined-weak-lib.S │ ├── tst-undefined-weak.c │ ├── unwind-arch.h │ └── utmp-size.h ├── nptl │ ├── Implies │ ├── Makeconfig │ ├── Makefile │ ├── Subdirs │ ├── _Fork.c │ ├── aio_misc.h │ ├── bits │ │ ├── pthreadtypes-arch.h │ │ ├── pthreadtypes.h │ │ ├── struct_mutex.h │ │ ├── struct_rwlock.h │ │ └── thread-shared-types.h │ ├── c11-thread.h │ ├── cancellation-pc-check.h │ ├── dl-mutex.c │ ├── dl-thread_gscope_wait.c │ ├── dl-tls_init_tp.c │ ├── dl-tunables.list │ ├── fork.h │ ├── futex-internal.h │ ├── gai_misc.h │ ├── internaltypes.h │ ├── jmp-unwind.c │ ├── libc-lock.h │ ├── libc-lockP.h │ ├── libc_start_call_main.h │ ├── lowlevellock-futex.h │ ├── lowlevellock.h │ ├── malloc-machine.h │ ├── proc_service.h │ ├── pthread-offsets.h │ ├── pthread.h │ ├── pthreadP.h │ ├── pthread_atfork_compat.h │ ├── pthread_early_init.h │ ├── pthread_mutex_backoff.h │ ├── pthread_mutex_conf.h │ ├── rseq-access.h │ ├── setxid.h │ ├── stdio-lock.h │ ├── sys │ │ └── procfs.h │ ├── tcb-access.h │ ├── tcb-offsets.h │ ├── thread_db.h │ ├── timer_routines.h │ └── tst-mqueue8x.c ├── or1k │ ├── Implies │ ├── Makefile │ ├── __longjmp.S │ ├── bits │ │ ├── endianness.h │ │ ├── fenv.h │ │ ├── link.h │ │ └── setjmp.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── configure │ ├── configure.ac │ ├── dl-machine.h │ ├── dl-start.S │ ├── dl-trampoline.S │ ├── fpu │ │ ├── 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 │ │ ├── fix-fp-int-convert-overflow.h │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ └── get-rounding-mode.h │ ├── fpu_control.h │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldsodefs.h │ ├── libc-tls.c │ ├── machine-gmon.h │ ├── math-tests-snan-payload.h │ ├── math-tests-trap.h │ ├── memusage.h │ ├── nofpu │ │ ├── Implies │ │ ├── math-tests-exceptions.h │ │ └── math-tests-rounding.h │ ├── nptl │ │ ├── pthreaddef.h │ │ └── tls.h │ ├── preconfigure │ ├── setjmp.S │ ├── sfp-machine.h │ ├── sotruss-lib.c │ ├── stackinfo.h │ ├── start.S │ ├── sysdep.h │ ├── thread_pointer.h │ ├── tininess.h │ ├── tst-audit.h │ └── utmp-size.h ├── posix │ ├── Subdirs │ ├── alarm.c │ ├── clock.c │ ├── clock_getres.c │ ├── ctermid.c │ ├── cuserid.c │ ├── dl-fileid.h │ ├── dup.c │ ├── dup2.c │ ├── euidaccess.c │ ├── flock.c │ ├── fpathconf.c │ ├── gai_strerror-strs.h │ ├── gai_strerror.c │ ├── getcwd.c │ ├── getdtsz.c │ ├── gethostname.c │ ├── getpagesize.c │ ├── isatty.c │ ├── isfdtype.c │ ├── killpg.c │ ├── libc_fatal.c │ ├── mkfifo.c │ ├── mkfifoat.c │ ├── nice.c │ ├── open64.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 │ ├── readv.c │ ├── remove.c │ ├── rename.c │ ├── sigblock.c │ ├── sigignore.c │ ├── sigintr.c │ ├── signal.c │ ├── sigpause.c │ ├── sigset.c │ ├── sigsetmask.c │ ├── sigsuspend.c │ ├── sigwait.c │ ├── sleep.c │ ├── sprofil.c │ ├── sysconf-pthread_stack_min.h │ ├── sysconf.c │ ├── system.c │ ├── sysv_signal.c │ ├── tempname.c │ ├── truncate.c │ ├── ttyname.c │ ├── ttyname_r.c │ ├── ulimit.c │ ├── usleep.c │ ├── utime.c │ ├── utimes.c │ ├── writev.c │ └── writev_nocancel.c ├── powerpc │ ├── Makefile │ ├── Versions │ ├── abort-instr.h │ ├── bits │ │ ├── endianness.h │ │ ├── fenv.h │ │ ├── floatn.h │ │ ├── fp-fast.h │ │ ├── hwcap.h │ │ ├── link.h │ │ └── setjmp.h │ ├── dl-diagnostics-cpu.c │ ├── dl-lookupcfg.h │ ├── dl-procinfo.c │ ├── dl-tls.c │ ├── dl-tls.h │ ├── dl-tunables.list │ ├── elf-initfini.h │ ├── fpu │ │ ├── Makefile │ │ ├── e_sqrt.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 │ │ ├── math-barriers.h │ │ ├── math-tests-trap-force.h │ │ ├── math-use-builtins-fabs.h │ │ ├── math-use-builtins-fma.h │ │ ├── math-use-builtins-sqrt.h │ │ ├── math-use-builtins-trunc.h │ │ ├── math_ldbl.h │ │ ├── math_private.h │ │ ├── round_to_integer.h │ │ ├── s_ceil.c │ │ ├── s_ceilf.c │ │ ├── s_floor.c │ │ ├── s_floorf.c │ │ ├── s_logb.c │ │ ├── s_logbf.c │ │ ├── s_logbl.c │ │ ├── s_lrintf.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 │ ├── math-use-builtins-ffs.h │ ├── mod-cache-ppc.c │ ├── mod-tlsopt-powerpc.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 │ │ ├── sfp-machine.h │ │ ├── sim-full.c │ │ ├── soft-supp.h │ │ ├── sqrtdf2.c │ │ └── sqrtsf2.c │ ├── novmx-longjmp.c │ ├── novmx-sigjmp.c │ ├── novmxsetjmp.h │ ├── nptl │ │ ├── Makefile │ │ ├── bits │ │ │ ├── struct_mutex.h │ │ │ └── struct_rwlock.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 │ │ ├── bits │ │ │ └── wordsize.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.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_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 │ │ ├── power10 │ │ │ ├── Implies │ │ │ ├── fpu │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ └── multiarch │ │ │ │ └── Implies │ │ ├── power11 │ │ │ ├── Implies │ │ │ ├── fpu │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ └── multiarch │ │ │ │ └── Implies │ │ ├── power4 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── fpu │ │ │ │ └── multiarch │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── strnlen-power7.S │ │ │ │ ├── strnlen-ppc32.c │ │ │ │ ├── strnlen.c │ │ │ │ ├── wordcopy-power7.c │ │ │ │ └── wordcopy-ppc32.c │ │ ├── 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 │ │ │ └── strnlen.S │ │ ├── power8 │ │ │ ├── Implies │ │ │ ├── fpu │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ └── multiarch │ │ │ │ └── Implies │ │ ├── power9 │ │ │ ├── Implies │ │ │ ├── fpu │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ └── multiarch │ │ │ │ └── Implies │ │ ├── ppc-mcount.S │ │ ├── rshift.S │ │ ├── rtld-memset.c │ │ ├── setjmp-common.S │ │ ├── setjmp.S │ │ ├── stackguard-macros.h │ │ ├── stackinfo.h │ │ ├── start.S │ │ ├── stpcpy.S │ │ ├── strchr.S │ │ ├── strcmp.S │ │ ├── strcpy.S │ │ ├── strlen.S │ │ ├── sub_n.S │ │ ├── submul_1.S │ │ ├── symbol-hacks.h │ │ ├── sysdep.h │ │ ├── tst-audit.h │ │ └── unwind-arch.h │ ├── powerpc64 │ │ ├── Implies │ │ ├── Makefile │ │ ├── __longjmp-common.S │ │ ├── __longjmp.S │ │ ├── a2 │ │ │ └── memcpy.S │ │ ├── addmul_1.S │ │ ├── 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 │ │ │ ├── power10 │ │ │ │ ├── Implies │ │ │ │ ├── fpu │ │ │ │ │ ├── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ └── multiarch │ │ │ │ │ └── Implies │ │ │ ├── power11 │ │ │ │ ├── Implies │ │ │ │ ├── fpu │ │ │ │ │ ├── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ └── 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 │ │ ├── cell │ │ │ └── memcpy.S │ │ ├── configure │ │ ├── configure.ac │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-dtprocnum.h │ │ ├── dl-funcdesc.h │ │ ├── dl-irel.h │ │ ├── dl-machine.c │ │ ├── dl-machine.h │ │ ├── dl-trampoline.S │ │ ├── fpu │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── dl-hwcap-check.h │ │ │ ├── dl-hwcaps-subdirs.c │ │ │ ├── fpu │ │ │ │ ├── Implies │ │ │ │ ├── e_ilogb.c │ │ │ │ ├── e_ilogbf.c │ │ │ │ ├── e_sqrtf128.c │ │ │ │ ├── multiarch │ │ │ │ │ ├── Implies │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── configure │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── e_log-power10.c │ │ │ │ │ ├── e_log-ppc64.c │ │ │ │ │ ├── e_log.c │ │ │ │ │ ├── float128-ifunc-macros.h │ │ │ │ │ ├── float128-ifunc-redirect-macros.h │ │ │ │ │ ├── float128-ifunc-redirects-mp.h │ │ │ │ │ ├── float128-ifunc-redirects.h │ │ │ │ │ ├── float128-ifunc.h │ │ │ │ │ ├── float128_private.h │ │ │ │ │ ├── math-type-macros-float128.h │ │ │ │ │ ├── math_private.h │ │ │ │ │ └── w_log.c │ │ │ │ ├── sfp-machine.h │ │ │ │ ├── w_ilogb.c │ │ │ │ ├── w_ilogb_template.c │ │ │ │ ├── w_ilogbf.c │ │ │ │ ├── w_ilogbl.c │ │ │ │ ├── w_llogb.c │ │ │ │ ├── w_llogb_template.c │ │ │ │ ├── w_llogbf.c │ │ │ │ └── w_llogbl.c │ │ │ ├── multiarch │ │ │ │ ├── Implies │ │ │ │ └── dl-symbol-redir-ifunc.h │ │ │ ├── no_ldbl_gnu_attribute.c │ │ │ ├── power10 │ │ │ │ ├── Implies │ │ │ │ ├── fpu │ │ │ │ │ ├── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ ├── memcmp.S │ │ │ │ ├── memcpy.S │ │ │ │ ├── memmove.S │ │ │ │ ├── memset.S │ │ │ │ ├── multiarch │ │ │ │ │ └── Implies │ │ │ │ ├── rawmemchr.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strlen.S │ │ │ │ └── strncmp.S │ │ │ ├── power11 │ │ │ │ ├── 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 │ │ │ │ ├── Makeconfig │ │ │ │ ├── fpu │ │ │ │ │ ├── Implies │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ ├── multiarch │ │ │ │ │ └── Implies │ │ │ │ ├── rawmemchr.S │ │ │ │ ├── rtld-strcmp.S │ │ │ │ ├── rtld-strlen.S │ │ │ │ ├── stpcpy.S │ │ │ │ ├── stpncpy.S │ │ │ │ ├── strcmp.S │ │ │ │ ├── strcpy.S │ │ │ │ ├── strlen.S │ │ │ │ ├── strncmp.S │ │ │ │ └── strncpy.S │ │ │ └── tst-glibc-hwcaps.c │ │ ├── lshift.S │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── mul_1.S │ │ ├── multiarch │ │ │ ├── Makefile │ │ │ ├── ifunc-impl-list.c │ │ │ ├── init-arch.h │ │ │ ├── memchr-power7.S │ │ │ ├── memchr-power8.S │ │ │ ├── memchr-ppc64.c │ │ │ ├── memchr.c │ │ │ ├── memcmp-power10.S │ │ │ ├── memcmp-power4.S │ │ │ ├── memcmp-power7.S │ │ │ ├── memcmp-power8.S │ │ │ ├── memcmp-ppc64.c │ │ │ ├── memcmp.c │ │ │ ├── memcpy-a2.S │ │ │ ├── memcpy-cell.S │ │ │ ├── memcpy-power10.S │ │ │ ├── memcpy-power4.S │ │ │ ├── memcpy-power6.S │ │ │ ├── memcpy-power7.S │ │ │ ├── memcpy-power8-cached.S │ │ │ ├── memcpy-ppc64.S │ │ │ ├── memcpy.c │ │ │ ├── memmove-power10.S │ │ │ ├── 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-power10.S │ │ │ ├── memset-power4.S │ │ │ ├── memset-power6.S │ │ │ ├── memset-power7.S │ │ │ ├── memset-power8.S │ │ │ ├── memset-ppc64.S │ │ │ ├── memset.c │ │ │ ├── rawmemchr-power10.S │ │ │ ├── rawmemchr-power7.S │ │ │ ├── rawmemchr-power9.S │ │ │ ├── rawmemchr-ppc64.c │ │ │ ├── rawmemchr.c │ │ │ ├── rtld-memset.c │ │ │ ├── rtld-strchr.S │ │ │ ├── rtld-strcspn.c │ │ │ ├── stpcpy-power7.c │ │ │ ├── stpcpy-power8.S │ │ │ ├── stpcpy-power9.S │ │ │ ├── stpcpy-ppc64.c │ │ │ ├── stpcpy.c │ │ │ ├── stpncpy-power7.S │ │ │ ├── stpncpy-power8.S │ │ │ ├── stpncpy-power9.S │ │ │ ├── stpncpy-ppc64.c │ │ │ ├── stpncpy.c │ │ │ ├── strcasecmp-power7.S │ │ │ ├── strcasecmp-power8.S │ │ │ ├── strcasecmp-ppc64.c │ │ │ ├── strcasecmp.c │ │ │ ├── strcasecmp_l-power7.S │ │ │ ├── strcasecmp_l.c │ │ │ ├── strcat-power10.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-power10.S │ │ │ ├── strcmp-power7.S │ │ │ ├── strcmp-power8.S │ │ │ ├── strcmp-power9.S │ │ │ ├── strcmp-ppc64.S │ │ │ ├── strcmp.c │ │ │ ├── strcpy-power7.c │ │ │ ├── strcpy-power8.S │ │ │ ├── strcpy-power9.S │ │ │ ├── strcpy-ppc64.c │ │ │ ├── strcpy.c │ │ │ ├── strcspn-power8.S │ │ │ ├── strcspn-ppc64.c │ │ │ ├── strcspn.c │ │ │ ├── strlen-power10.S │ │ │ ├── strlen-power7.S │ │ │ ├── strlen-power8.S │ │ │ ├── strlen-power9.S │ │ │ ├── strlen-ppc64.S │ │ │ ├── strlen.c │ │ │ ├── strncase-power8.S │ │ │ ├── strncase-ppc64.c │ │ │ ├── strncase.c │ │ │ ├── strncat-power7.c │ │ │ ├── strncat-power8.c │ │ │ ├── strncat-ppc64.c │ │ │ ├── strncat.c │ │ │ ├── strncmp-power10.S │ │ │ ├── strncmp-power8.S │ │ │ ├── strncmp-power9.S │ │ │ ├── strncmp-ppc64.c │ │ │ ├── strncmp.c │ │ │ ├── strncpy-power7.S │ │ │ ├── strncpy-power8.S │ │ │ ├── strncpy-power9.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 │ │ │ └── wordcopy-ppc64.c │ │ ├── power4 │ │ │ ├── Makefile │ │ │ ├── memcmp.S │ │ │ ├── memcopy.h │ │ │ ├── memcpy.S │ │ │ └── memset.S │ │ ├── power6 │ │ │ ├── memcpy.S │ │ │ └── memset.S │ │ ├── power7 │ │ │ ├── Makefile │ │ │ ├── add_n.S │ │ │ ├── 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 │ │ │ ├── strncpy.S │ │ │ ├── strnlen.S │ │ │ ├── strrchr.S │ │ │ └── sub_n.S │ │ ├── power8 │ │ │ ├── memchr.S │ │ │ ├── memcmp.S │ │ │ ├── memrchr.S │ │ │ ├── memset.S │ │ │ ├── stpcpy.S │ │ │ ├── stpncpy.S │ │ │ ├── strcasecmp.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 │ │ ├── rtld-memset.c │ │ ├── setjmp-bug21895.c │ │ ├── setjmp-common.S │ │ ├── setjmp.S │ │ ├── stackguard-macros.h │ │ ├── start.S │ │ ├── strchr.S │ │ ├── strcmp.S │ │ ├── strlen.S │ │ ├── submul_1.S │ │ ├── sysdep.h │ │ ├── tst-audit.h │ │ ├── tst-setjmp-bug21895-static.c │ │ └── tst-ucontext-ppc64-vscr.c │ ├── preconfigure │ ├── preconfigure.ac │ ├── rtld-global-offsets.sym │ ├── sigjmp.c │ ├── sotruss-lib.c │ ├── string-fza.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 │ ├── thread_pointer.h │ ├── tst-cache-ppc-static-dlopen.c │ ├── tst-cache-ppc-static.c │ ├── tst-cache-ppc.c │ ├── tst-set_ppr.c │ ├── tst-stack-align.h │ ├── tst-tlsifunc-static.c │ ├── tst-tlsifunc.c │ ├── tst-tlsopt-powerpc.c │ └── utmp-size.h ├── pthread │ ├── Makeconfig │ ├── Makefile │ ├── allocalim.h │ ├── bits │ │ ├── sigthread.h │ │ └── types │ │ │ └── sigevent_t.h │ ├── call_once.c │ ├── cnd_broadcast.c │ ├── cnd_destroy.c │ ├── cnd_init.c │ ├── cnd_signal.c │ ├── cnd_timedwait.c │ ├── cnd_wait.c │ ├── eintr.c │ ├── mtx_destroy.c │ ├── mtx_init.c │ ├── mtx_lock.c │ ├── mtx_timedlock.c │ ├── mtx_trylock.c │ ├── mtx_unlock.c │ ├── posix-timer.h │ ├── pthread_atfork.c │ ├── pthread_atfork_compat.c │ ├── pthread_early_init.h │ ├── pthread_mutex_conf.h │ ├── sem_close.c │ ├── sem_open.c │ ├── sem_routines.c │ ├── sem_routines.h │ ├── sem_unlink.c │ ├── semaphore.h │ ├── thrd_create.c │ ├── thrd_detach.c │ ├── thrd_equal.c │ ├── thrd_exit.c │ ├── thrd_join.c │ ├── thrd_priv.h │ ├── thrd_sleep.c │ ├── threads.h │ ├── tss_create.c │ ├── tss_delete.c │ ├── tss_get.c │ ├── tss_set.c │ ├── tst-_res1.c │ ├── tst-_res1mod1.c │ ├── tst-_res1mod2.c │ ├── tst-abstime-time64.c │ ├── tst-abstime.c │ ├── tst-atfork1.c │ ├── tst-atfork2.c │ ├── tst-atfork2mod.c │ ├── tst-atfork3.c │ ├── tst-atfork3mod.c │ ├── tst-atfork4.c │ ├── tst-atfork4mod.c │ ├── tst-attr1.c │ ├── tst-bad-schedattr.c │ ├── tst-barrier1.c │ ├── tst-barrier2.c │ ├── tst-barrier3.c │ ├── tst-barrier4.c │ ├── tst-basic1.c │ ├── tst-basic2.c │ ├── tst-basic3.c │ ├── tst-basic4.c │ ├── tst-basic5.c │ ├── tst-basic6.c │ ├── tst-basic7.c │ ├── tst-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-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-cancel25.c │ ├── tst-cancel26.c │ ├── tst-cancel27.c │ ├── tst-cancel28.c │ ├── tst-cancel29.c │ ├── tst-cancel3.c │ ├── tst-cancel30.c │ ├── tst-cancel32.c │ ├── tst-cancel4-common.c │ ├── tst-cancel4-common.h │ ├── tst-cancel4.c │ ├── tst-cancel5.c │ ├── tst-cancel6.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-cancelx18.c │ ├── tst-cancelx2.c │ ├── tst-cancelx20.c │ ├── tst-cancelx21.c │ ├── tst-cancelx3.c │ ├── tst-cancelx4.c │ ├── tst-cancelx5.c │ ├── tst-cancelx6.c │ ├── tst-cancelx8.c │ ├── tst-cancelx9.c │ ├── tst-cleanup0.c │ ├── tst-cleanup0.expect │ ├── tst-cleanup1.c │ ├── tst-cleanup2.c │ ├── tst-cleanup3.c │ ├── tst-cleanupx0.c │ ├── tst-cleanupx0.expect │ ├── tst-cleanupx1.c │ ├── tst-cleanupx2.c │ ├── tst-cleanupx3.c │ ├── tst-clock1.c │ ├── tst-cnd-basic.c │ ├── tst-cnd-broadcast.c │ ├── tst-cnd-timedwait-time64.c │ ├── tst-cnd-timedwait.c │ ├── tst-cond-except.c │ ├── tst-cond1.c │ ├── tst-cond10.c │ ├── tst-cond11-static.c │ ├── tst-cond11-time64.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-cond23.c │ ├── tst-cond24.c │ ├── tst-cond25.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-create-detached.c │ ├── tst-create1.c │ ├── tst-create1mod.c │ ├── tst-detach1.c │ ├── tst-eintr2.c │ ├── tst-eintr3.c │ ├── tst-eintr4.c │ ├── tst-eintr5.c │ ├── tst-exec1.c │ ├── tst-exec2.c │ ├── tst-exec3.c │ ├── tst-exit1.c │ ├── tst-exit2.c │ ├── tst-exit3.c │ ├── tst-fini1.c │ ├── tst-fini1mod.c │ ├── tst-flock1.c │ ├── tst-flock2.c │ ├── tst-fopen-threaded.c │ ├── tst-fork1.c │ ├── tst-fork2.c │ ├── tst-fork3.c │ ├── tst-fork4.c │ ├── tst-getpid3.c │ ├── tst-join1.c │ ├── tst-join10.c │ ├── tst-join11.c │ ├── tst-join12.c │ ├── tst-join13.c │ ├── tst-join14-time64.c │ ├── tst-join14.c │ ├── tst-join15.c │ ├── tst-join16-time64.c │ ├── tst-join16.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-kill5.c │ ├── tst-kill6.c │ ├── tst-locale1.c │ ├── tst-locale2.c │ ├── tst-memstream.c │ ├── tst-mtx-basic.c │ ├── tst-mtx-recursive.c │ ├── tst-mtx-timedlock-time64.c │ ├── tst-mtx-timedlock.c │ ├── tst-mtx-trylock.c │ ├── tst-mutex-errorcheck.c │ ├── tst-mutex1.c │ ├── tst-mutex11.c │ ├── tst-mutex2.c │ ├── tst-mutex3.c │ ├── tst-mutex4.c │ ├── tst-mutex5.c │ ├── tst-mutex6.c │ ├── tst-mutex7.c │ ├── tst-mutex9.c │ ├── tst-once1.c │ ├── tst-once2.c │ ├── tst-once3.c │ ├── tst-once4.c │ ├── tst-oncex3.c │ ├── tst-oncex4.c │ ├── tst-oncey3.c │ ├── tst-oncey4.c │ ├── tst-pt-align.c │ ├── tst-pt-align3.c │ ├── tst-pt-popen1.c │ ├── tst-pt-sysconf.c │ ├── tst-pt-tls1.c │ ├── tst-pt-tls2.c │ ├── tst-pt-tls4.c │ ├── tst-pt-vfork1.c │ ├── tst-pt-vfork2.c │ ├── tst-pthread-exit-signal.c │ ├── tst-pthread-mutexattr-2.c │ ├── tst-pthread-mutexattr.c │ ├── tst-pthread-raise-blocked-self.c │ ├── tst-pthread-setuid-loop.c │ ├── tst-pthread_cancel-exited.c │ ├── tst-pthread_cancel-select-loop.c │ ├── tst-pthread_kill-exited.c │ ├── tst-pthread_kill-exiting.c │ ├── tst-raise1.c │ ├── tst-robust1.c │ ├── tst-robust10.c │ ├── tst-robust11.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-rwlock-tryrdlock-stall.c │ ├── tst-rwlock-trywrlock-stall.c │ ├── tst-rwlock1.c │ ├── tst-rwlock12.c │ ├── tst-rwlock13.c │ ├── tst-rwlock14-time64.c │ ├── tst-rwlock14.c │ ├── tst-rwlock16.c │ ├── tst-rwlock4.c │ ├── tst-rwlock5.c │ ├── tst-sem1.c │ ├── tst-sem10.c │ ├── tst-sem14.c │ ├── tst-sem15.c │ ├── tst-sem16.c │ ├── tst-sem18.c │ ├── tst-sem19.c │ ├── tst-sem2.c │ ├── tst-sem3.c │ ├── tst-sem4.c │ ├── tst-sem5-time64.c │ ├── tst-sem5.c │ ├── tst-sem6.c │ ├── tst-sem7.c │ ├── tst-sem8.c │ ├── tst-sem9.c │ ├── tst-setuid3.c │ ├── tst-signal1.c │ ├── tst-signal2.c │ ├── tst-signal4.c │ ├── tst-signal5.c │ ├── tst-signal6.c │ ├── tst-signal8.c │ ├── tst-spin1.c │ ├── tst-spin2.c │ ├── tst-spin3.c │ ├── tst-spin4.c │ ├── tst-spin5.c │ ├── tst-stack1.c │ ├── tst-stack2-mod.c │ ├── tst-stack2.c │ ├── tst-stdio1.c │ ├── tst-stdio2.c │ ├── tst-thrd-detach.c │ ├── tst-thrd-sleep-time64.c │ ├── tst-thrd-sleep.c │ ├── tst-timer.c │ ├── tst-tls4moda.c │ ├── tst-tls4modb.c │ ├── tst-tsd1.c │ ├── tst-tsd2.c │ ├── tst-tsd5.c │ ├── tst-tsd6.c │ ├── tst-tss-basic.c │ ├── tst-umask1.c │ ├── tst-unload.c │ ├── tst-unwind-thread.c │ ├── tst-vfork1x.c │ └── tst-vfork2x.c ├── riscv │ ├── Implies │ ├── Makefile │ ├── __longjmp.S │ ├── atomic-machine.h │ ├── bits │ │ ├── endianness.h │ │ ├── fenv.h │ │ ├── link.h │ │ ├── setjmp.h │ │ └── wordsize.h │ ├── bsd-_setjmp.c │ ├── bsd-setjmp.c │ ├── configure │ ├── configure.ac │ ├── dl-irel.h │ ├── dl-link.sym │ ├── dl-machine.h │ ├── dl-relocate-ld.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 │ ├── math-use-builtins-ffs.h │ ├── multiarch │ │ ├── memcpy-generic.c │ │ └── memcpy_noalignment.S │ ├── nofpu │ │ ├── Implies │ │ ├── math-tests-exceptions.h │ │ └── math-tests-rounding.h │ ├── nptl │ │ ├── bits │ │ │ ├── pthreadtypes-arch.h │ │ │ └── struct_rwlock.h │ │ ├── pthread-offsets.h │ │ ├── pthreaddef.h │ │ └── tls.h │ ├── preconfigure │ ├── preconfigure.ac │ ├── riscv-ifunc.h │ ├── rv32 │ │ ├── Implies-after │ │ ├── fix-fp-int-convert-overflow.h │ │ ├── rvd │ │ │ └── Implies │ │ └── rvf │ │ │ └── Implies │ ├── rv64 │ │ ├── Implies-after │ │ ├── rvd │ │ │ ├── Implies │ │ │ ├── s_ceil.c │ │ │ ├── s_floor.c │ │ │ ├── s_llrint.c │ │ │ ├── s_llround.c │ │ │ ├── s_nearbyint.c │ │ │ ├── s_rint.c │ │ │ ├── s_round.c │ │ │ ├── s_roundeven.c │ │ │ └── s_trunc.c │ │ └── rvf │ │ │ ├── Implies │ │ │ ├── s_llrintf.c │ │ │ └── s_llroundf.c │ ├── rvd │ │ ├── fix-float-double-convert-nan.h │ │ ├── math-use-builtins-fma.h │ │ ├── math-use-builtins-sqrt.h │ │ ├── s_finite.c │ │ ├── s_fmax.c │ │ ├── s_fmin.c │ │ ├── s_fpclassify.c │ │ ├── s_isinf.c │ │ ├── s_isnan.c │ │ ├── s_issignaling.c │ │ ├── s_lrint.c │ │ └── s_lround.c │ ├── rvf │ │ ├── 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_finitef.c │ │ ├── s_floorf.c │ │ ├── s_fmaxf.c │ │ ├── s_fminf.c │ │ ├── s_fpclassifyf.c │ │ ├── s_isinff.c │ │ ├── s_isnanf.c │ │ ├── s_issignalingf.c │ │ ├── s_lrintf.c │ │ ├── s_lroundf.c │ │ ├── s_nearbyintf.c │ │ ├── s_rintf.c │ │ ├── s_roundevenf.c │ │ ├── s_roundf.c │ │ └── s_truncf.c │ ├── setjmp.S │ ├── sfp-machine.h │ ├── sotruss-lib.c │ ├── start.S │ ├── string-fza.h │ ├── string-fzi.h │ ├── string-misc.h │ ├── sys │ │ └── asm.h │ ├── thread_pointer.h │ ├── tininess.h │ ├── tst-audit.h │ └── utmp-size.h ├── s390 │ ├── Implies │ ├── Makefile │ ├── Versions │ ├── abort-instr.h │ ├── asm-syntax.h │ ├── bits │ │ ├── endianness.h │ │ ├── link.h │ │ └── setjmp.h │ ├── configure │ ├── configure.ac │ ├── cpu-features.c │ ├── cpu-features.h │ ├── dl-diagnostics-cpu.c │ ├── dl-irel.h │ ├── dl-procinfo.c │ ├── dl-tls.h │ ├── dl-tunables.list │ ├── elf-initfini.h │ ├── fix-fp-int-convert-overflow.h │ ├── fpu │ │ ├── bits │ │ │ └── fenv.h │ │ ├── e_sqrtl.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 │ │ ├── fix-fp-int-compare-invalid.h │ │ ├── fpu_control.h │ │ ├── fraiseexcpt.c │ │ ├── fsetexcptflg.c │ │ ├── ftestexcept.c │ │ ├── get-rounding-mode.h │ │ ├── math-barriers.h │ │ ├── math-use-builtins-ceil.h │ │ ├── math-use-builtins-floor.h │ │ ├── math-use-builtins-fma.h │ │ ├── math-use-builtins-nearbyint.h │ │ ├── math-use-builtins-rint.h │ │ ├── math-use-builtins-round.h │ │ ├── math-use-builtins-sqrt.h │ │ ├── math-use-builtins-trunc.h │ │ ├── math_private.h │ │ ├── s_llrint.c │ │ ├── s_llrintf.c │ │ ├── s_llrintl.c │ │ ├── s_llround.c │ │ ├── s_llroundf.c │ │ ├── s_llroundl.c │ │ ├── s_lrint.c │ │ ├── s_lrintf.c │ │ ├── s_lrintl.c │ │ ├── s_lround.c │ │ ├── s_lroundf.c │ │ ├── s_lroundl.c │ │ ├── s_roundeven.c │ │ ├── s_roundevenf.c │ │ └── s_roundevenl.c │ ├── gccframe.h │ ├── gconv-modules-s390.conf │ ├── hp-timing.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-start.c │ ├── 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 │ ├── multiarch │ │ ├── 8bit-generic.c │ │ ├── Makefile │ │ ├── dl-symbol-redir-ifunc.h │ │ ├── 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 │ │ │ ├── struct_mutex.h │ │ │ └── struct_rwlock.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 │ │ ├── bits │ │ │ └── wordsize.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-machine.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 │ │ └── tst-audit.h │ ├── s390-64 │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── __longjmp.c │ │ ├── add_n.S │ │ ├── bits │ │ │ └── wordsize.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── configure │ │ ├── configure.ac │ │ ├── crti.S │ │ ├── crtn.S │ │ ├── dl-hwcap-check.h │ │ ├── dl-hwcaps-subdirs.c │ │ ├── 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 │ │ ├── tst-audit.h │ │ └── tst-glibc-hwcaps.c │ ├── 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 │ ├── 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 │ ├── unwind-arch.h │ ├── 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 │ ├── be │ │ ├── sh3 │ │ │ └── Implies │ │ └── sh4 │ │ │ ├── Implies │ │ │ └── fpu │ │ │ └── Implies │ ├── bits │ │ ├── endianness.h │ │ ├── fenv.h │ │ ├── link.h │ │ ├── setjmp.h │ │ └── wordsize.h │ ├── bsd-_setjmp.S │ ├── bsd-setjmp.S │ ├── configure │ ├── configure.ac │ ├── crti.S │ ├── crtn.S │ ├── dl-machine.h │ ├── dl-trampoline.S │ ├── elf-initfini.h │ ├── fpu_control.h │ ├── gccframe.h │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── ldbl-classify-compat.h │ ├── ldsodefs.h │ ├── le │ │ ├── sh3 │ │ │ └── Implies │ │ └── sh4 │ │ │ ├── Implies │ │ │ └── fpu │ │ │ └── Implies │ ├── libc-tls.c │ ├── linkmap.h │ ├── machine-gmon.h │ ├── memcpy.S │ ├── memset.S │ ├── nofpu │ │ └── Implies │ ├── nptl │ │ ├── pthread_spin_init.c │ │ ├── pthread_spin_lock.c │ │ ├── pthread_spin_trylock.S │ │ ├── pthread_spin_unlock.S │ │ ├── pthreaddef.h │ │ ├── tcb-offsets.sym │ │ └── tls.h │ ├── preconfigure │ ├── preconfigure.ac │ ├── 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 │ ├── string-fzb.h │ ├── strlen.S │ ├── sysdep.h │ ├── tininess.h │ ├── tst-audit.h │ ├── unwind-arch.h │ └── utmp-size.h ├── sparc │ ├── Makefile │ ├── Subdirs │ ├── abort-instr.h │ ├── atomic-machine.h │ ├── backtrace.c │ ├── bits │ │ ├── endianness.h │ │ ├── hwcap.h │ │ └── link.h │ ├── configure │ ├── configure.ac │ ├── cpu_relax.c │ ├── crti.S │ ├── crtn.S │ ├── dl-dtprocnum.h │ ├── dl-lookupcfg.h │ ├── elf-initfini.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 │ │ └── math-use-builtins-sqrt.h │ ├── gccframe.h │ ├── ldsodefs.h │ ├── machine-gmon.h │ ├── mempcpy.S │ ├── nptl │ │ ├── Makefile │ │ ├── bits │ │ │ └── struct_rwlock.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 │ │ ├── backtrace.h │ │ ├── bits │ │ │ ├── setjmp.h │ │ │ └── wordsize.h │ │ ├── bsd-_setjmp.S │ │ ├── bsd-setjmp.S │ │ ├── configure │ │ ├── configure.ac │ │ ├── dl-irel.h │ │ ├── dl-machine.h │ │ ├── dl-plt.h │ │ ├── dl-trampoline.S │ │ ├── dotmul.S │ │ ├── fpu │ │ │ ├── e_sqrtl.c │ │ │ ├── fix-fp-int-convert-overflow.h │ │ │ ├── math-tests-snan-payload.h │ │ │ ├── s_signbit.S │ │ │ ├── s_signbitf.S │ │ │ └── s_signbitl.S │ │ ├── ieee754.h │ │ ├── jmpbuf-offsets.h │ │ ├── jmpbuf-unwind.h │ │ ├── lshift.S │ │ ├── memchr.S │ │ ├── memcpy.S │ │ ├── memset.S │ │ ├── mul_1.S │ │ ├── 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 │ │ ├── setjmp.S │ │ ├── sfp-machine.h │ │ ├── sparcv9 │ │ │ ├── Makefile │ │ │ ├── addmul_1.S │ │ │ ├── backtrace.h │ │ │ ├── dotmul.S │ │ │ ├── fpu │ │ │ │ ├── multiarch │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── s_copysign-generic.c │ │ │ │ │ ├── s_copysign-vis3.S │ │ │ │ │ ├── s_copysign.c │ │ │ │ │ ├── s_copysignf-generic.c │ │ │ │ │ ├── s_copysignf-vis3.S │ │ │ │ │ ├── s_copysignf.c │ │ │ │ │ ├── s_fabs-generic.c │ │ │ │ │ ├── s_fabs-vis3.S │ │ │ │ │ ├── s_fabs.c │ │ │ │ │ ├── s_fabsf-generic.c │ │ │ │ │ ├── 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 │ │ │ │ ├── dl-symbol-redir-ifunc.h │ │ │ │ ├── ifunc-impl-list.c │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── tst-audit.h │ │ ├── udiv.S │ │ ├── umul.S │ │ └── urem.S │ ├── sparc64 │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── add_n.S │ │ ├── addmul_1.S │ │ ├── align-cpy.S │ │ ├── backtrace.h │ │ ├── bits │ │ │ └── wordsize.h │ │ ├── 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_finite.S │ │ │ ├── s_finitef.S │ │ │ ├── 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 │ │ │ ├── dl-symbol-redir-ifunc.h │ │ │ ├── ifunc-impl-list.c │ │ │ ├── ifunc-memcpy.h │ │ │ ├── ifunc-memmove.h │ │ │ ├── ifunc-memset.h │ │ │ ├── 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 │ │ │ ├── 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 │ │ └── tst-audit.h │ ├── stackinfo.h │ ├── sys │ │ └── trap.h │ ├── sysdep.h │ ├── thread_pointer.h │ ├── unwind-arch.h │ └── utmp-size.h ├── unix │ ├── Implies │ ├── Makefile │ ├── alpha │ │ ├── Makefile │ │ ├── rt-sysdep.S │ │ └── sysdep.S │ ├── arm │ │ ├── sysdep.S │ │ └── sysdep.h │ ├── bsd │ │ ├── Implies │ │ ├── Makefile │ │ ├── Versions │ │ ├── bits │ │ │ └── sockaddr.h │ │ ├── bsdtty.h │ │ ├── cmsg_nxthdr.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 │ ├── confstr.h │ ├── get_child_max.c │ ├── getlogin.c │ ├── getlogin_r.c │ ├── getpagesize.c │ ├── grantpt.c │ ├── i386 │ │ └── sysdep.h │ ├── ifreq.c │ ├── inet │ │ └── Subdirs │ ├── make-syscalls.sh │ ├── mips │ │ ├── entry.h │ │ ├── mips32 │ │ │ └── sysdep.h │ │ ├── mips64 │ │ │ └── sysdep.h │ │ ├── rt-sysdep.S │ │ ├── sysdep.S │ │ └── sysdep.h │ ├── powerpc │ │ └── sysdep.h │ ├── setxid.h │ ├── sh │ │ ├── sysdep.S │ │ └── sysdep.h │ ├── sockatmark.c │ ├── syscall-template.S │ ├── syscall.S │ ├── syscalls.list │ ├── sysdep.h │ ├── sysv │ │ └── linux │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── _G_config.h │ │ │ ├── ____longjmp_chk.c │ │ │ ├── _exit.c │ │ │ ├── a.out.h │ │ │ ├── aarch64 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── arch-pkey.h │ │ │ ├── arch-syscall.h │ │ │ ├── bits │ │ │ │ ├── fcntl.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── mman.h │ │ │ │ ├── procfs.h │ │ │ │ ├── pthread_stack_min.h │ │ │ │ ├── rseq.h │ │ │ │ └── sigstack.h │ │ │ ├── c++-types.data │ │ │ ├── clone.S │ │ │ ├── clone3.S │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── cpu-features.c │ │ │ ├── dl-cache.h │ │ │ ├── dl-procinfo.c │ │ │ ├── dl-procruntime.c │ │ │ ├── getcontext.S │ │ │ ├── gettimeofday.c │ │ │ ├── ioctl.S │ │ │ ├── kernel-features.h │ │ │ ├── kernel_rt_sigframe.h │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc-start.h │ │ │ ├── libc.abilist │ │ │ ├── libc_malloc_debug.abilist │ │ │ ├── libc_sigaction.c │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libmvec.abilist │ │ │ ├── libnsl.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt.abilist │ │ │ ├── libthread_db.abilist │ │ │ ├── libutil.abilist │ │ │ ├── localplt.data │ │ │ ├── makecontext.c │ │ │ ├── pkey_get.c │ │ │ ├── pkey_set.c │ │ │ ├── pointer_guard.h │ │ │ ├── readelflib.c │ │ │ ├── send.c │ │ │ ├── setcontext.S │ │ │ ├── shlib-versions │ │ │ ├── sigcontextinfo.h │ │ │ ├── single-thread.h │ │ │ ├── swapcontext.S │ │ │ ├── sys │ │ │ │ ├── elf.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ ├── syscall_cancel.S │ │ │ ├── sysconf.c │ │ │ ├── sysdep.c │ │ │ ├── sysdep.h │ │ │ ├── tst-aarch64-pkey.c │ │ │ ├── tst-gcs-abort.sh │ │ │ ├── tst-gcs-disabled-static.c │ │ │ ├── tst-gcs-disabled.c │ │ │ ├── tst-gcs-dlopen-disabled.c │ │ │ ├── tst-gcs-dlopen-enforced.c │ │ │ ├── tst-gcs-dlopen-optional-off.c │ │ │ ├── tst-gcs-dlopen-optional-on.c │ │ │ ├── tst-gcs-dlopen-override.c │ │ │ ├── tst-gcs-dlopen.c │ │ │ ├── tst-gcs-enforced-abort.c │ │ │ ├── tst-gcs-enforced-static-abort.c │ │ │ ├── tst-gcs-enforced-static.c │ │ │ ├── tst-gcs-enforced.c │ │ │ ├── tst-gcs-helper.h │ │ │ ├── tst-gcs-mod1.c │ │ │ ├── tst-gcs-mod2.c │ │ │ ├── tst-gcs-mod3.c │ │ │ ├── tst-gcs-noreturn.c │ │ │ ├── tst-gcs-optional-off.c │ │ │ ├── tst-gcs-optional-on.c │ │ │ ├── tst-gcs-optional-static-off.c │ │ │ ├── tst-gcs-optional-static-on.c │ │ │ ├── tst-gcs-override-static.c │ │ │ ├── tst-gcs-override.c │ │ │ ├── tst-gcs-shared-disabled.c │ │ │ ├── tst-gcs-shared-enforced-abort.c │ │ │ ├── tst-gcs-shared-optional.c │ │ │ ├── tst-gcs-shared-override.c │ │ │ ├── tst-gcs-shared.c │ │ │ ├── tst-gcs-skeleton.c │ │ │ ├── tst-tlsdesc-pac-mod.c │ │ │ ├── tst-tlsdesc-pac.c │ │ │ ├── ucontext-internal.h │ │ │ ├── ucontext_i.sym │ │ │ ├── uw-sigframe.h │ │ │ ├── vfork.S │ │ │ └── vltest.py │ │ │ ├── accept.c │ │ │ ├── accept4.c │ │ │ ├── access.c │ │ │ ├── adjtime.c │ │ │ ├── adjtimex.c │ │ │ ├── aio_misc.h │ │ │ ├── aio_sigqueue.c │ │ │ ├── alpha │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── ____longjmp_chk.S │ │ │ ├── a.out.h │ │ │ ├── adjtime.c │ │ │ ├── adjtimex.c │ │ │ ├── aio_cancel.c │ │ │ ├── alpha │ │ │ │ ├── ptrace.h │ │ │ │ └── regdef.h │ │ │ ├── alphaev6 │ │ │ │ └── fpu │ │ │ │ │ └── Implies │ │ │ ├── alphaev67 │ │ │ │ └── fpu │ │ │ │ │ └── Implies │ │ │ ├── arch-syscall.h │ │ │ ├── bits │ │ │ │ ├── a.out.h │ │ │ │ ├── dirent.h │ │ │ │ ├── elfclass.h │ │ │ │ ├── epoll.h │ │ │ │ ├── errno.h │ │ │ │ ├── eventfd.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── inotify.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── mman.h │ │ │ │ ├── netdb.h │ │ │ │ ├── procfs-prregset.h │ │ │ │ ├── procfs.h │ │ │ │ ├── pthread_stack_min.h │ │ │ │ ├── resource.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── signalfd.h │ │ │ │ ├── signum-arch.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── socket-constants.h │ │ │ │ ├── socket_type.h │ │ │ │ ├── statfs.h │ │ │ │ ├── struct_stat.h │ │ │ │ ├── termios-c_cc.h │ │ │ │ ├── termios-c_cflag.h │ │ │ │ ├── termios-c_iflag.h │ │ │ │ ├── termios-c_lflag.h │ │ │ │ ├── termios-c_oflag.h │ │ │ │ ├── termios-cbaud.h │ │ │ │ ├── termios-struct.h │ │ │ │ ├── timerfd.h │ │ │ │ ├── typesizes.h │ │ │ │ └── wordsize.h │ │ │ ├── brk_call.h │ │ │ ├── c++-types.data │ │ │ ├── clone.S │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── dl-auxv.h │ │ │ ├── dl-support.c │ │ │ ├── dl-sysdep.c │ │ │ ├── errlist-compat-data.h │ │ │ ├── fpu │ │ │ │ └── Implies │ │ │ ├── fraiseexcpt.S │ │ │ ├── fstatfs.c │ │ │ ├── fstatfs64.c │ │ │ ├── fxstat64.c │ │ │ ├── fxstatat64.c │ │ │ ├── getclktck.c │ │ │ ├── getcontext.S │ │ │ ├── getdents.c │ │ │ ├── getdents64.c │ │ │ ├── getegid.S │ │ │ ├── geteuid.S │ │ │ ├── gethostname.c │ │ │ ├── getppid.S │ │ │ ├── getrlimit64.c │ │ │ ├── gettimeofday.c │ │ │ ├── glob-lstat-compat.c │ │ │ ├── globfree.c │ │ │ ├── ieee_get_fp_control.S │ │ │ ├── ieee_set_fp_control.S │ │ │ ├── ioperm.c │ │ │ ├── ipc_priv.h │ │ │ ├── kernel-features.h │ │ │ ├── kernel_sigaction.h │ │ │ ├── kernel_stat.h │ │ │ ├── kernel_sysinfo.h │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc.abilist │ │ │ ├── libc_malloc_debug.abilist │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libnsl.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt-compat.c │ │ │ ├── librt.abilist │ │ │ ├── libthread_db.abilist │ │ │ ├── libutil.abilist │ │ │ ├── localplt.data │ │ │ ├── lxstat64.c │ │ │ ├── makecontext.S │ │ │ ├── nldbl-abi.h │ │ │ ├── oldglob.c │ │ │ ├── osf_adjtime.c │ │ │ ├── osf_getitimer.c │ │ │ ├── osf_getrusage.c │ │ │ ├── osf_gettimeofday.c │ │ │ ├── osf_setitimer.c │ │ │ ├── osf_settimeofday.c │ │ │ ├── osf_utimes.c │ │ │ ├── osf_wait4.c │ │ │ ├── pointer_guard.h │ │ │ ├── rt_sigaction.S │ │ │ ├── select.c │ │ │ ├── setcontext.S │ │ │ ├── setfpucw.c │ │ │ ├── setrlimit64.c │ │ │ ├── settimeofday.c │ │ │ ├── shlib-versions │ │ │ ├── sigcontextinfo.h │ │ │ ├── sizes.h │ │ │ ├── statfs.c │ │ │ ├── statfs64.c │ │ │ ├── swapcontext.S │ │ │ ├── sys │ │ │ │ ├── io.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ ├── syscall_cancel.S │ │ │ ├── syscalls.list │ │ │ ├── sysconf.c │ │ │ ├── sysdep.h │ │ │ ├── termios_arch.h │ │ │ ├── timer_t_was_int_compat.h │ │ │ ├── ucontext-offsets.sym │ │ │ ├── vfork.S │ │ │ ├── wait4.c │ │ │ ├── wordexp.c │ │ │ ├── xstat64.c │ │ │ ├── xstatconv.c │ │ │ ├── xstatconv.h │ │ │ └── xstatver.h │ │ │ ├── alphasort64.c │ │ │ ├── arc │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── arch-syscall.h │ │ │ ├── bits │ │ │ │ ├── procfs.h │ │ │ │ └── types │ │ │ │ │ └── __sigset_t.h │ │ │ ├── c++-types.data │ │ │ ├── clone.S │ │ │ ├── clone3.S │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── fixup-asm-unistd.h │ │ │ ├── getcontext.S │ │ │ ├── kernel-features.h │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc.abilist │ │ │ ├── libc_malloc_debug.abilist │ │ │ ├── libc_sigaction.c │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt.abilist │ │ │ ├── libthread_db.abilist │ │ │ ├── libutil.abilist │ │ │ ├── localplt.data │ │ │ ├── makecontext.c │ │ │ ├── mmap_internal.h │ │ │ ├── setcontext.S │ │ │ ├── shlib-versions │ │ │ ├── sigcontextinfo.h │ │ │ ├── sigrestorer.S │ │ │ ├── single-thread.h │ │ │ ├── swapcontext.S │ │ │ ├── sys │ │ │ │ ├── cachectl.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ ├── syscall_cancel.S │ │ │ ├── syscalls.list │ │ │ ├── sysdep.c │ │ │ ├── sysdep.h │ │ │ ├── ucontext-macros.h │ │ │ ├── ucontext_i.sym │ │ │ └── vfork.S │ │ │ ├── arch-fd_to_filename.h │ │ │ ├── arch-fork.h │ │ │ ├── arm │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── ____longjmp_chk.S │ │ │ ├── aeabi_read_tp.S │ │ │ ├── arch-syscall.h │ │ │ ├── arm-features.h │ │ │ ├── be │ │ │ │ ├── Implies │ │ │ │ ├── Versions │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ └── libutil.abilist │ │ │ ├── bits │ │ │ │ ├── fcntl.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── procfs-id.h │ │ │ │ ├── procfs.h │ │ │ │ ├── rseq.h │ │ │ │ ├── shmlba.h │ │ │ │ ├── struct_stat.h │ │ │ │ ├── timesize.h │ │ │ │ └── typesizes.h │ │ │ ├── c++-types.data │ │ │ ├── clone.S │ │ │ ├── clone3.S │ │ │ ├── dl-cache.h │ │ │ ├── dl-machine.h │ │ │ ├── fixup-asm-unistd.h │ │ │ ├── getcontext.S │ │ │ ├── ioperm.c │ │ │ ├── kernel-features.h │ │ │ ├── kernel_stat.h │ │ │ ├── ldsodefs.h │ │ │ ├── le │ │ │ │ ├── Implies │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ └── libutil.abilist │ │ │ ├── libc-do-syscall.S │ │ │ ├── libc_sigaction.c │ │ │ ├── localplt.data │ │ │ ├── makecontext.c │ │ │ ├── profil-counter.h │ │ │ ├── readelflib.c │ │ │ ├── setcontext.S │ │ │ ├── shlib-versions │ │ │ ├── sigcontextinfo.h │ │ │ ├── sigrestorer.S │ │ │ ├── single-thread.h │ │ │ ├── swapcontext.S │ │ │ ├── sys │ │ │ │ ├── elf.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ ├── syscall_cancel.S │ │ │ ├── syscalls.list │ │ │ ├── sysdep.S │ │ │ ├── sysdep.h │ │ │ ├── time64-compat.h │ │ │ ├── tls.h │ │ │ ├── ucontext_i.sym │ │ │ ├── vfork.S │ │ │ └── xstatver.h │ │ │ ├── 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-perm.h │ │ │ ├── local_lim.h │ │ │ ├── mman-linux.h │ │ │ ├── mman-map-flags-generic.h │ │ │ ├── mman-shared.h │ │ │ ├── mman.h │ │ │ ├── mman_ext.h │ │ │ ├── mqueue.h │ │ │ ├── msq.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── posix_opt.h │ │ │ ├── procfs-extra.h │ │ │ ├── procfs-id.h │ │ │ ├── procfs-prregset.h │ │ │ ├── procfs.h │ │ │ ├── pthread_stack_min-dynamic.h │ │ │ ├── pthread_stack_min.h │ │ │ ├── ptrace-shared.h │ │ │ ├── resource.h │ │ │ ├── rseq.h │ │ │ ├── sched.h │ │ │ ├── sem.h │ │ │ ├── semaphore.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-arch.h │ │ │ ├── sigstack.h │ │ │ ├── sigstksz.h │ │ │ ├── socket-constants.h │ │ │ ├── socket.h │ │ │ ├── socket_type.h │ │ │ ├── spawn_ext.h │ │ │ ├── ss_flags.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── statvfs.h │ │ │ ├── statx.h │ │ │ ├── stdio_lim.h │ │ │ ├── struct_stat.h │ │ │ ├── struct_stat_time64_helper.h │ │ │ ├── termios-c_cc.h │ │ │ ├── termios-c_cflag.h │ │ │ ├── termios-c_iflag.h │ │ │ ├── termios-c_lflag.h │ │ │ ├── termios-c_oflag.h │ │ │ ├── termios-cbaud.h │ │ │ ├── termios-misc.h │ │ │ ├── termios-struct.h │ │ │ ├── termios-tcflow.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── timerfd.h │ │ │ ├── timex.h │ │ │ ├── types │ │ │ │ ├── __sigset_t.h │ │ │ │ ├── idtype_t.h │ │ │ │ ├── sigevent_t.h │ │ │ │ ├── siginfo_t.h │ │ │ │ ├── stack_t.h │ │ │ │ ├── struct_msqid64_ds.h │ │ │ │ ├── struct_msqid64_ds_helper.h │ │ │ │ ├── struct_msqid_ds.h │ │ │ │ ├── struct_semid64_ds.h │ │ │ │ ├── struct_semid64_ds_helper.h │ │ │ │ ├── struct_semid_ds.h │ │ │ │ ├── struct_shmid64_ds.h │ │ │ │ ├── struct_shmid64_ds_helper.h │ │ │ │ └── struct_shmid_ds.h │ │ │ ├── typesizes.h │ │ │ ├── uio-ext.h │ │ │ ├── uio_lim.h │ │ │ ├── unistd_ext.h │ │ │ ├── utsname.h │ │ │ └── waitflags.h │ │ │ ├── brk.c │ │ │ ├── brk_call.h │ │ │ ├── cfsetspeed.c │ │ │ ├── check_native.c │ │ │ ├── check_pf.c │ │ │ ├── chmod.c │ │ │ ├── chown.c │ │ │ ├── clock.c │ │ │ ├── clock_adjtime.c │ │ │ ├── clock_getcpuclockid.c │ │ │ ├── clock_getres.c │ │ │ ├── clock_gettime.c │ │ │ ├── clock_nanosleep.c │ │ │ ├── clock_settime.c │ │ │ ├── clone-internal.c │ │ │ ├── clone-pidfd-support.c │ │ │ ├── clone3.c │ │ │ ├── clone3.h │ │ │ ├── close.c │ │ │ ├── close_nocancel.c │ │ │ ├── close_nocancel_nostatus.c │ │ │ ├── closedir.c │ │ │ ├── closefrom_fallback.c │ │ │ ├── cmsg_nxthdr.c │ │ │ ├── cnd_timedwait.c │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── connect.c │ │ │ ├── convert_scm_timestamps.c │ │ │ ├── copy_file_range.c │ │ │ ├── creat.c │ │ │ ├── creat64.c │ │ │ ├── csky │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── abiv2 │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── clone.S │ │ │ │ ├── getcontext.S │ │ │ │ ├── setcontext.S │ │ │ │ ├── swapcontext.S │ │ │ │ ├── syscall.S │ │ │ │ ├── sysdep.S │ │ │ │ └── ucontext_i.sym │ │ │ ├── arch-syscall.h │ │ │ ├── bits │ │ │ │ ├── procfs.h │ │ │ │ ├── shmlba.h │ │ │ │ ├── statfs.h │ │ │ │ ├── struct_stat.h │ │ │ │ └── timesize.h │ │ │ ├── c++-types.data │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── kernel-features.h │ │ │ ├── kernel_stat.h │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc.abilist │ │ │ ├── libc_malloc_debug.abilist │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt.abilist │ │ │ ├── libthread_db.abilist │ │ │ ├── libutil.abilist │ │ │ ├── localplt.data │ │ │ ├── makecontext.c │ │ │ ├── pointer_guard.h │ │ │ ├── shlib-versions │ │ │ ├── sigcontextinfo.h │ │ │ ├── sys │ │ │ │ ├── cachectl.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall_cancel.S │ │ │ ├── syscalls.list │ │ │ ├── sysdep.h │ │ │ └── time64-compat.h │ │ │ ├── default-sched.h │ │ │ ├── device-nrs.h │ │ │ ├── dirfd.c │ │ │ ├── dirstream.h │ │ │ ├── dl-affinity.h │ │ │ ├── dl-diagnostics-kernel.c │ │ │ ├── dl-early_allocate.c │ │ │ ├── dl-execstack.c │ │ │ ├── dl-execve.h │ │ │ ├── dl-extra_tls.h │ │ │ ├── dl-fxstatat64.c │ │ │ ├── dl-getcwd.c │ │ │ ├── dl-openat64.c │ │ │ ├── dl-opendir.c │ │ │ ├── dl-origin.c │ │ │ ├── dl-osinfo.h │ │ │ ├── dl-parse_auxv.h │ │ │ ├── dl-rseq-symbols.S │ │ │ ├── dl-sbrk.c │ │ │ ├── dl-sysdep.c │ │ │ ├── dl-sysdep.h │ │ │ ├── dl-vdso-setup.c │ │ │ ├── dl-vdso-setup.h │ │ │ ├── dl-vdso.h │ │ │ ├── dl-write.c │ │ │ ├── dl-writev.h │ │ │ ├── dup2.c │ │ │ ├── epoll_create.c │ │ │ ├── epoll_pwait.c │ │ │ ├── epoll_pwait2.c │ │ │ ├── epoll_wait.c │ │ │ ├── errlist-compat-data.h │ │ │ ├── errlist-compat.h │ │ │ ├── errqueue.h │ │ │ ├── eventfd_read.c │ │ │ ├── eventfd_write.c │ │ │ ├── execveat.c │ │ │ ├── faccessat.c │ │ │ ├── fallocate.c │ │ │ ├── fallocate64.c │ │ │ ├── fanotify_mark.c │ │ │ ├── fatal-prepare.h │ │ │ ├── fchmodat.c │ │ │ ├── fcntl.c │ │ │ ├── fcntl64.c │ │ │ ├── fcntl_nocancel.c │ │ │ ├── fdatasync.c │ │ │ ├── fdopendir.c │ │ │ ├── features-time64.h │ │ │ ├── fexecve.c │ │ │ ├── filter-nr-syscalls.awk │ │ │ ├── fixup-asm-unistd.h │ │ │ ├── fpathconf.c │ │ │ ├── fstat.c │ │ │ ├── fstat64.c │ │ │ ├── fstatat.c │ │ │ ├── fstatat64.c │ │ │ ├── fstatfs.c │ │ │ ├── fstatfs64.c │ │ │ ├── fstatvfs.c │ │ │ ├── fstatvfs64.c │ │ │ ├── fsync.c │ │ │ ├── ftime.c │ │ │ ├── ftruncate.c │ │ │ ├── ftruncate64.c │ │ │ ├── futimens.c │ │ │ ├── futimes.c │ │ │ ├── futimesat.c │ │ │ ├── fxstat.c │ │ │ ├── fxstat64.c │ │ │ ├── fxstatat.c │ │ │ ├── fxstatat64.c │ │ │ ├── gai_sigqueue.c │ │ │ ├── gen-syscall-h.awk │ │ │ ├── gentempfd.c │ │ │ ├── getclktck.c │ │ │ ├── getcpu.c │ │ │ ├── getcwd.c │ │ │ ├── getdents.c │ │ │ ├── getdents64.c │ │ │ ├── getdirentries.c │ │ │ ├── getdirentries64.c │ │ │ ├── getdtsz.c │ │ │ ├── getentropy.c │ │ │ ├── gethostid.c │ │ │ ├── getipv4sourcefilter.c │ │ │ ├── getitimer.c │ │ │ ├── getloadavg.c │ │ │ ├── getlogin.c │ │ │ ├── getlogin_r.c │ │ │ ├── getpagesize.c │ │ │ ├── getpeername.c │ │ │ ├── getpriority.c │ │ │ ├── getpt.c │ │ │ ├── getrandom-internal.h │ │ │ ├── getrandom.c │ │ │ ├── getrlimit.c │ │ │ ├── getrlimit64.c │ │ │ ├── getrusage.c │ │ │ ├── getsockname.c │ │ │ ├── getsockopt.c │ │ │ ├── getsourcefilter.c │ │ │ ├── getsourcefilter.h │ │ │ ├── getsysstats.c │ │ │ ├── gettimeofday.c │ │ │ ├── glibcsyscalls.py │ │ │ ├── glob-lstat-compat.c │ │ │ ├── glob.c │ │ │ ├── glob64-lstat-compat.c │ │ │ ├── glob64-time64.c │ │ │ ├── glob64.c │ │ │ ├── globfree.c │ │ │ ├── globfree64-time64.c │ │ │ ├── globfree64.c │ │ │ ├── grantpt.c │ │ │ ├── hppa │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── ____longjmp_chk.c │ │ │ ├── arch-syscall.h │ │ │ ├── bits │ │ │ │ ├── epoll.h │ │ │ │ ├── errno.h │ │ │ │ ├── eventfd.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── inotify.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── ipc-perm.h │ │ │ │ ├── mman.h │ │ │ │ ├── procfs.h │ │ │ │ ├── shmlba.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── signalfd.h │ │ │ │ ├── signum-arch.h │ │ │ │ ├── socket-constants.h │ │ │ │ ├── socket_type.h │ │ │ │ ├── struct_stat.h │ │ │ │ ├── timerfd.h │ │ │ │ ├── timesize.h │ │ │ │ ├── types │ │ │ │ │ ├── struct_msqid_ds.h │ │ │ │ │ ├── struct_semid_ds.h │ │ │ │ │ └── struct_shmid_ds.h │ │ │ │ ├── typesizes.h │ │ │ │ └── wordsize.h │ │ │ ├── c++-types.data │ │ │ ├── clone.S │ │ │ ├── errlist-compat-data.h │ │ │ ├── fanotify_mark.c │ │ │ ├── getcontext.S │ │ │ ├── kernel-features.h │ │ │ ├── kernel_stat.h │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc.abilist │ │ │ ├── libc_malloc_debug.abilist │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libnsl.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt.abilist │ │ │ ├── libthread_db.abilist │ │ │ ├── libutil.abilist │ │ │ ├── localplt.data │ │ │ ├── makecontext.c │ │ │ ├── prlimit64.c │ │ │ ├── setcontext.S │ │ │ ├── shlib-versions │ │ │ ├── sigcontextinfo.h │ │ │ ├── single-thread.h │ │ │ ├── socket-constants-time64.h │ │ │ ├── struct_kernel_msqid64_ds.h │ │ │ ├── struct_kernel_semid64_ds.h │ │ │ ├── struct_kernel_shmid64_ds.h │ │ │ ├── swapcontext.S │ │ │ ├── sys │ │ │ │ ├── cachectl.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall_cancel.S │ │ │ ├── syscalls.list │ │ │ ├── sysdep.c │ │ │ ├── sysdep.h │ │ │ ├── time64-compat.h │ │ │ ├── ucontext_i.sym │ │ │ ├── vfork.S │ │ │ └── xstatver.h │ │ │ ├── i386 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── ____longjmp_chk.S │ │ │ ├── arch-syscall.h │ │ │ ├── brk.c │ │ │ ├── c++-types.data │ │ │ ├── clone.S │ │ │ ├── clone3.S │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── dl-sysdep.h │ │ │ ├── dl-writev.h │ │ │ ├── getcontext.S │ │ │ ├── i686 │ │ │ │ ├── Implies │ │ │ │ └── dl-sysdep.h │ │ │ ├── i786 │ │ │ │ └── Implies │ │ │ ├── kernel-features.h │ │ │ ├── kernel_stat.h │ │ │ ├── ld.abilist │ │ │ ├── ldconfig.h │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libanl.abilist │ │ │ ├── libc-do-syscall-int80.S │ │ │ ├── libc-do-syscall.S │ │ │ ├── libc.abilist │ │ │ ├── libc_malloc_debug.abilist │ │ │ ├── libc_sigaction.c │ │ │ ├── libdl.abilist │ │ │ ├── libm.abilist │ │ │ ├── libnsl.abilist │ │ │ ├── libpthread.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── librt.abilist │ │ │ ├── libthread_db.abilist │ │ │ ├── libutil.abilist │ │ │ ├── localplt.data │ │ │ ├── makecontext.S │ │ │ ├── pointer_guard.h │ │ │ ├── setcontext.S │ │ │ ├── shlib-versions │ │ │ ├── sigcontextinfo.h │ │ │ ├── startup.h │ │ │ ├── struct_kernel_msqid64_ds.h │ │ │ ├── struct_kernel_semid64_ds.h │ │ │ ├── struct_kernel_shmid64_ds.h │ │ │ ├── swapcontext.S │ │ │ ├── syscall.S │ │ │ ├── syscall_cancel.S │ │ │ ├── syscalls.list │ │ │ ├── sysdep.c │ │ │ ├── sysdep.h │ │ │ ├── time64-compat.h │ │ │ ├── tst-bz21269.c │ │ │ ├── ucontext_i.sym │ │ │ └── vfork.S │ │ │ ├── if_index.c │ │ │ ├── ifaddrs.c │ │ │ ├── ifreq.c │ │ │ ├── include │ │ │ ├── bits │ │ │ │ ├── mman-shared.h │ │ │ │ ├── pthread_stack_min-dynamic.h │ │ │ │ └── syscall.h │ │ │ └── sys │ │ │ │ ├── mount.h │ │ │ │ ├── msg.h │ │ │ │ ├── sem.h │ │ │ │ ├── shm.h │ │ │ │ ├── syscall.h │ │ │ │ ├── sysinfo.h │ │ │ │ └── timex.h │ │ │ ├── inotify_init.c │ │ │ ├── internal-ioctl.h │ │ │ ├── internal-signals.h │ │ │ ├── internal-sigset.h │ │ │ ├── internal-stat.h │ │ │ ├── internal_statvfs.c │ │ │ ├── internal_statvfs.h │ │ │ ├── ioctl.c │ │ │ ├── ipc_ops.h │ │ │ ├── ipc_priv.h │ │ │ ├── isatty.c │ │ │ ├── isatty_nostatus.c │ │ │ ├── k_termios.h │ │ │ ├── kernel-features.h │ │ │ ├── kernel-posix-cpu-timers.h │ │ │ ├── kernel-posix-timers.h │ │ │ ├── kernel_sigaction.h │ │ │ ├── kernel_stat.h │ │ │ ├── kstat_cp.h │ │ │ ├── lchown.c │ │ │ ├── ldsodefs.h │ │ │ ├── libc-vdso.h │ │ │ ├── libc_fatal.c │ │ │ ├── libc_sigaction.c │ │ │ ├── librt-compat.c │ │ │ ├── link.c │ │ │ ├── linux_fsinfo.h │ │ │ ├── listen.c │ │ │ ├── local-setxid.h │ │ │ ├── loongarch │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── arch-syscall.h │ │ │ ├── bits │ │ │ │ ├── fcntl.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── procfs.h │ │ │ │ ├── pthread_stack_min.h │ │ │ │ ├── rseq.h │ │ │ │ └── sigstack.h │ │ │ ├── clone.S │ │ │ ├── clone3.S │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── cpu-features.c │ │ │ ├── cpu-features.h │ │ │ ├── dl-cache.h │ │ │ ├── dl-procinfo.c │ │ │ ├── dl-sysdep.c │ │ │ ├── fixup-asm-unistd.h │ │ │ ├── getcontext.S │ │ │ ├── gettimeofday.c │ │ │ ├── ldd-rewrite.sed │ │ │ ├── libc-start.c │ │ │ ├── localplt.data │ │ │ ├── lp64 │ │ │ │ ├── Implies │ │ │ │ ├── c++-types.data │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ └── libthread_db.abilist │ │ │ ├── makecontext.c │ │ │ ├── pointer_guard.h │ │ │ ├── readelflib.c │ │ │ ├── setcontext.S │ │ │ ├── shlib-versions │ │ │ ├── sigcontextinfo.h │ │ │ ├── swapcontext.S │ │ │ ├── sys │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall_cancel.S │ │ │ ├── sysdep.S │ │ │ ├── sysdep.h │ │ │ ├── ucontext-macros.h │ │ │ ├── ucontext_i.sym │ │ │ └── vfork.S │ │ │ ├── lseek.c │ │ │ ├── lseek64.c │ │ │ ├── lstat.c │ │ │ ├── lstat64.c │ │ │ ├── lutimes.c │ │ │ ├── lxstat.c │ │ │ ├── lxstat64.c │ │ │ ├── m68k │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── ____longjmp_chk.c │ │ │ ├── arch-syscall.h │ │ │ ├── bits │ │ │ │ ├── a.out.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── poll.h │ │ │ │ ├── procfs-id.h │ │ │ │ ├── procfs.h │ │ │ │ ├── sockaddr.h │ │ │ │ ├── struct_stat.h │ │ │ │ ├── timesize.h │ │ │ │ └── typesizes.h │ │ │ ├── c++-types.data │ │ │ ├── clone.S │ │ │ ├── coldfire │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── shlib-versions │ │ │ │ └── sysdep.h │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── getpagesize.c │ │ │ ├── kernel-features.h │ │ │ ├── kernel_sigaction.h │ │ │ ├── kernel_stat.h │ │ │ ├── libc-lock-arch.h │ │ │ ├── m680x0 │ │ │ │ ├── Makefile │ │ │ │ ├── getcontext.S │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.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 │ │ │ ├── sigcontextinfo.h │ │ │ ├── sys │ │ │ │ ├── reg.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ ├── syscall_cancel.S │ │ │ ├── syscalls.list │ │ │ ├── sysdep.S │ │ │ ├── sysdep.h │ │ │ ├── time64-compat.h │ │ │ ├── vfork.S │ │ │ └── xstatver.h │ │ │ ├── machine-sp.h │ │ │ ├── malloc-hugepages.c │ │ │ ├── malloc-sysdep.h │ │ │ ├── microblaze │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── ____longjmp_chk.S │ │ │ ├── arch-syscall.h │ │ │ ├── be │ │ │ │ ├── Implies │ │ │ │ ├── Versions │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ └── libutil.abilist │ │ │ ├── bits │ │ │ │ ├── fcntl.h │ │ │ │ ├── procfs.h │ │ │ │ ├── struct_stat.h │ │ │ │ ├── timesize.h │ │ │ │ └── typesizes.h │ │ │ ├── c++-types.data │ │ │ ├── clock-compat.c │ │ │ ├── clone.S │ │ │ ├── kernel-features.h │ │ │ ├── kernel_stat.h │ │ │ ├── ld.abilist │ │ │ ├── le │ │ │ │ ├── Implies │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ └── libutil.abilist │ │ │ ├── localplt.data │ │ │ ├── pselect32.c │ │ │ ├── shlib-versions │ │ │ ├── sigcontextinfo.h │ │ │ ├── single-thread.h │ │ │ ├── sys │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ ├── syscall_cancel.S │ │ │ ├── syscalls.list │ │ │ ├── sysctl.c │ │ │ ├── sysdep.S │ │ │ ├── sysdep.h │ │ │ ├── time64-compat.h │ │ │ ├── vfork.S │ │ │ └── xstatver.h │ │ │ ├── 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 │ │ │ │ ├── mman.h │ │ │ │ ├── poll.h │ │ │ │ ├── procfs.h │ │ │ │ ├── pthread_stack_min.h │ │ │ │ ├── resource.h │ │ │ │ ├── rseq.h │ │ │ │ ├── shmlba.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── siginfo-arch.h │ │ │ │ ├── signalfd.h │ │ │ │ ├── signum-arch.h │ │ │ │ ├── socket-constants.h │ │ │ │ ├── socket_type.h │ │ │ │ ├── statfs.h │ │ │ │ ├── struct_stat.h │ │ │ │ ├── termios-c_cc.h │ │ │ │ ├── termios-c_lflag.h │ │ │ │ ├── termios-tcflow.h │ │ │ │ ├── timerfd.h │ │ │ │ ├── timesize.h │ │ │ │ ├── types │ │ │ │ │ ├── stack_t.h │ │ │ │ │ ├── struct_msqid_ds.h │ │ │ │ │ ├── struct_semid_ds.h │ │ │ │ │ └── struct_shmid_ds.h │ │ │ │ └── typesizes.h │ │ │ ├── clone.S │ │ │ ├── clone3.S │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── dl-cache.h │ │ │ ├── errlist-compat-data.h │ │ │ ├── fxstat.c │ │ │ ├── getcontext.S │ │ │ ├── getrlimit64.c │ │ │ ├── kernel-features.h │ │ │ ├── kernel_rt_sigframe.h │ │ │ ├── kernel_sigaction.h │ │ │ ├── kernel_stat.h │ │ │ ├── ldsodefs.h │ │ │ ├── libc-abis │ │ │ ├── lxstat.c │ │ │ ├── makecontext.S │ │ │ ├── mips32 │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── arch-syscall.h │ │ │ │ ├── bug-getcontext-mips-gp.c │ │ │ │ ├── c++-types.data │ │ │ │ ├── fpu │ │ │ │ │ ├── libc.abilist │ │ │ │ │ └── libc_malloc_debug.abilist │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.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 │ │ │ │ │ └── libc_malloc_debug.abilist │ │ │ │ ├── syscall_cancel.S │ │ │ │ ├── sysdep.h │ │ │ │ └── time64-compat.h │ │ │ ├── mips64 │ │ │ │ ├── Makefile │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── fxstat64.c │ │ │ │ ├── fxstatat.c │ │ │ │ ├── fxstatat64.c │ │ │ │ ├── getdents64.c │ │ │ │ ├── ipc_priv.h │ │ │ │ ├── kstat_cp.h │ │ │ │ ├── ldd-rewrite.sed │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── lxstat64.c │ │ │ │ ├── msgctl.c │ │ │ │ ├── n32 │ │ │ │ │ ├── Versions │ │ │ │ │ ├── arch-syscall.h │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── lseek.c │ │ │ │ │ ├── mmap_internal.h │ │ │ │ │ ├── syscall_types.h │ │ │ │ │ ├── syscalls.list │ │ │ │ │ └── time64-compat.h │ │ │ │ ├── n64 │ │ │ │ │ ├── arch-syscall.h │ │ │ │ │ ├── c++-types.data │ │ │ │ │ ├── fstatat.c │ │ │ │ │ ├── fts.c │ │ │ │ │ ├── fts64.c │ │ │ │ │ ├── ftw.c │ │ │ │ │ ├── ftw64.c │ │ │ │ │ ├── ioctl.S │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ └── posix_fadvise64.c │ │ │ │ ├── semctl.c │ │ │ │ ├── shmctl.c │ │ │ │ ├── syscall.S │ │ │ │ ├── syscall_cancel.S │ │ │ │ ├── sysdep.h │ │ │ │ └── xstat64.c │ │ │ ├── mmap_info.h │ │ │ ├── readelflib.c │ │ │ ├── setcontext.S │ │ │ ├── setrlimit64.c │ │ │ ├── shlib-versions │ │ │ ├── sigcontextinfo.h │ │ │ ├── socket-constants-time64.h │ │ │ ├── struct_kernel_msqid64_ds.h │ │ │ ├── struct_kernel_semid64_ds.h │ │ │ ├── struct_kernel_shmid64_ds.h │ │ │ ├── swapcontext.S │ │ │ ├── sys │ │ │ │ ├── cachectl.h │ │ │ │ ├── sysmips.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscalls.list │ │ │ ├── sysdep.h │ │ │ ├── termios_arch.h │ │ │ ├── ucontext_i.sym │ │ │ ├── ustat.c │ │ │ ├── vfork.S │ │ │ ├── xstat.c │ │ │ ├── xstatconv.c │ │ │ └── xstatver.h │ │ │ ├── mkdir.c │ │ │ ├── mknodat.c │ │ │ ├── mlock2.c │ │ │ ├── mmap.c │ │ │ ├── mmap64.c │ │ │ ├── mmap_call.h │ │ │ ├── mmap_internal.h │ │ │ ├── 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 │ │ │ ├── mremap-failure.h │ │ │ ├── mremap.c │ │ │ ├── msgctl.c │ │ │ ├── msgget.c │ │ │ ├── msgrcv.c │ │ │ ├── msgsnd.c │ │ │ ├── msync.c │ │ │ ├── mtx_timedlock.c │ │ │ ├── nanosleep.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 │ │ │ ├── not-cancel.h │ │ │ ├── not-errno.h │ │ │ ├── nscd_setup_thread.c │ │ │ ├── ntp_gettime.c │ │ │ ├── ntp_gettimex.c │ │ │ ├── old_termios.h │ │ │ ├── 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 │ │ │ ├── opendir.c │ │ │ ├── or1k │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── arch-syscall.h │ │ │ ├── bits │ │ │ │ └── procfs.h │ │ │ ├── c++-types.data │ │ │ ├── clone.c │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── getcontext-common.S │ │ │ ├── getcontext.S │ │ │ ├── ld.abilist │ │ │ ├── libBrokenLocale.abilist │ │ │ ├── libc.abilist │ │ │ ├── libc_malloc_debug.abilist │ │ │ ├── libm.abilist │ │ │ ├── libresolv.abilist │ │ │ ├── libthread_db.abilist │ │ │ ├── localplt.data │ │ │ ├── makecontext.c │ │ │ ├── mmap_internal.h │ │ │ ├── or1k_clone.S │ │ │ ├── prctl.c │ │ │ ├── setcontext-common.S │ │ │ ├── setcontext.S │ │ │ ├── shlib-versions │ │ │ ├── sigcontextinfo.h │ │ │ ├── swapcontext-common.S │ │ │ ├── swapcontext.S │ │ │ ├── sys │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall_cancel.S │ │ │ ├── sysdep.c │ │ │ ├── sysdep.h │ │ │ └── ucontext_i.sym │ │ │ ├── pathconf.c │ │ │ ├── pathconf.h │ │ │ ├── paths.h │ │ │ ├── pause.c │ │ │ ├── personality.c │ │ │ ├── pidfd_getpid.c │ │ │ ├── pidfd_spawn.c │ │ │ ├── pidfd_spawnp.c │ │ │ ├── pipe.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-perm.h │ │ │ │ ├── mman.h │ │ │ │ ├── ppc.h │ │ │ │ ├── procfs.h │ │ │ │ ├── pthread_stack_min.h │ │ │ │ ├── rseq.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── socket-constants.h │ │ │ │ ├── struct_stat.h │ │ │ │ ├── termios-c_cc.h │ │ │ │ ├── termios-c_cflag.h │ │ │ │ ├── termios-c_iflag.h │ │ │ │ ├── termios-c_lflag.h │ │ │ │ ├── termios-c_oflag.h │ │ │ │ ├── termios-cbaud.h │ │ │ │ ├── termios-misc.h │ │ │ │ ├── timesize.h │ │ │ │ ├── types │ │ │ │ │ ├── struct_msqid_ds.h │ │ │ │ │ ├── struct_semid_ds.h │ │ │ │ │ └── struct_shmid_ds.h │ │ │ │ ├── typesizes.h │ │ │ │ └── wordsize.h │ │ │ ├── cancellation-pc-check.h │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── cpu-features.c │ │ │ ├── cpu-features.h │ │ │ ├── dl-auxv.h │ │ │ ├── dl-cache.h │ │ │ ├── dl-hwcap-info.c │ │ │ ├── dl-hwcap-info.h │ │ │ ├── dl-support.c │ │ │ ├── get_timebase_freq.c │ │ │ ├── gettimeofday.c │ │ │ ├── internal-ioctl.h │ │ │ ├── ipc_priv.h │ │ │ ├── kernel-features.h │ │ │ ├── kernel_sigaction.h │ │ │ ├── ldd-rewrite.sed │ │ │ ├── libc-start.c │ │ │ ├── libc-start.h │ │ │ ├── libc-vdso.h │ │ │ ├── libpthread-compat.c │ │ │ ├── nldbl-abi.h │ │ │ ├── pointer_guard.h │ │ │ ├── powerpc32 │ │ │ │ ├── 405 │ │ │ │ │ └── Implies │ │ │ │ ├── 440 │ │ │ │ │ └── Implies │ │ │ │ ├── 464 │ │ │ │ │ └── Implies │ │ │ │ ├── 476 │ │ │ │ │ └── Implies │ │ │ │ ├── 970 │ │ │ │ │ └── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── a2 │ │ │ │ │ └── Implies │ │ │ │ ├── alphasort64.c │ │ │ │ ├── arch-syscall.h │ │ │ │ ├── c++-types.data │ │ │ │ ├── cell │ │ │ │ │ ├── Implies │ │ │ │ │ └── fpu │ │ │ │ │ │ └── Implies │ │ │ │ ├── clone.S │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── fpu │ │ │ │ │ ├── fe_mask.c │ │ │ │ │ ├── fe_nomask.c │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ └── localplt.data │ │ │ │ ├── getcontext-common.S │ │ │ │ ├── getcontext.S │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── makecontext.S │ │ │ │ ├── nofpu │ │ │ │ │ ├── Implies │ │ │ │ │ ├── getcontext.S │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── localplt.data │ │ │ │ │ ├── setcontext.S │ │ │ │ │ └── swapcontext.S │ │ │ │ ├── setcontext-common.S │ │ │ │ ├── setcontext.S │ │ │ │ ├── struct_kernel_msqid64_ds.h │ │ │ │ ├── struct_kernel_semid64_ds.h │ │ │ │ ├── swapcontext-common.S │ │ │ │ ├── swapcontext.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── time64-compat.h │ │ │ │ ├── ucontext_i.sym │ │ │ │ ├── versionsort64.c │ │ │ │ └── vfork.S │ │ │ ├── powerpc64 │ │ │ │ ├── Implies │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── arch-pkey.h │ │ │ │ ├── arch-syscall.h │ │ │ │ ├── be │ │ │ │ │ ├── 970 │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── a2 │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── cell │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ └── fpu │ │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ └── libutil.abilist │ │ │ │ ├── c++-types.data │ │ │ │ ├── clone.S │ │ │ │ ├── clone3.S │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-cache.h │ │ │ │ ├── fpu │ │ │ │ │ ├── fe_mask.c │ │ │ │ │ └── fe_nomask.c │ │ │ │ ├── getcontext.S │ │ │ │ ├── ldsodefs.h │ │ │ │ ├── le │ │ │ │ │ ├── Implies │ │ │ │ │ ├── float128-abi.h │ │ │ │ │ ├── fpu │ │ │ │ │ │ └── Implies │ │ │ │ │ ├── ld.abilist │ │ │ │ │ ├── ldbl-128ibm-compat-abi.h │ │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ │ ├── libanl.abilist │ │ │ │ │ ├── libc.abilist │ │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ │ ├── libdl.abilist │ │ │ │ │ ├── libm.abilist │ │ │ │ │ ├── libnsl.abilist │ │ │ │ │ ├── libpthread.abilist │ │ │ │ │ ├── libresolv.abilist │ │ │ │ │ ├── librt.abilist │ │ │ │ │ ├── libthread_db.abilist │ │ │ │ │ ├── libutil.abilist │ │ │ │ │ └── sysctl.c │ │ │ │ ├── localplt.data │ │ │ │ ├── makecontext.S │ │ │ │ ├── pkey_get.c │ │ │ │ ├── pkey_set.c │ │ │ │ ├── setcontext.S │ │ │ │ ├── shlib-versions │ │ │ │ ├── swapcontext.S │ │ │ │ ├── sysdep.h │ │ │ │ ├── timer_t_was_int_compat.h │ │ │ │ ├── ucontext_i.sym │ │ │ │ └── vfork.S │ │ │ ├── pthread_attr_setstack.c │ │ │ ├── pthread_attr_setstacksize.c │ │ │ ├── readelflib.c │ │ │ ├── rt-sysdep.c │ │ │ ├── rtld_static_init.h │ │ │ ├── sigcontextinfo.h │ │ │ ├── socket-constants-time64.h │ │ │ ├── struct_kernel_shmid64_ds.h │ │ │ ├── sys │ │ │ │ ├── ptrace.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ ├── syscall_cancel.S │ │ │ ├── sysconf.c │ │ │ ├── sysdep.c │ │ │ ├── sysdep.h │ │ │ ├── termios_arch.h │ │ │ ├── test-gettimebasefreq-static.c │ │ │ ├── test-gettimebasefreq.c │ │ │ ├── test-powerpc-linux-sysconf.c │ │ │ ├── time.c │ │ │ ├── tst-hwcap-tunables.c │ │ │ └── xstatver.h │ │ │ ├── ppoll.c │ │ │ ├── ppoll_chk.c │ │ │ ├── pread.c │ │ │ ├── pread64.c │ │ │ ├── pread64_nocancel.c │ │ │ ├── preadv.c │ │ │ ├── preadv2.c │ │ │ ├── preadv64.c │ │ │ ├── preadv64v2.c │ │ │ ├── prlimit.c │ │ │ ├── prlimit64.c │ │ │ ├── process_vm_readv.c │ │ │ ├── process_vm_writev.c │ │ │ ├── procutils.c │ │ │ ├── procutils.h │ │ │ ├── prof-freq.c │ │ │ ├── profil-counter.h │ │ │ ├── profil.c │ │ │ ├── pselect.c │ │ │ ├── pselect32.c │ │ │ ├── ptrace.c │ │ │ ├── ptsname.c │ │ │ ├── pwrite.c │ │ │ ├── pwrite64.c │ │ │ ├── pwritev.c │ │ │ ├── pwritev2.c │ │ │ ├── pwritev64.c │ │ │ ├── pwritev64v2.c │ │ │ ├── read.c │ │ │ ├── read_nocancel.c │ │ │ ├── readahead.c │ │ │ ├── readdir.c │ │ │ ├── readdir64.c │ │ │ ├── readdir64_r.c │ │ │ ├── readdir_r.c │ │ │ ├── readlink.c │ │ │ ├── readonly-area-fallback.c │ │ │ ├── readv.c │ │ │ ├── reboot.c │ │ │ ├── recv.c │ │ │ ├── recvfrom.c │ │ │ ├── recvmmsg.c │ │ │ ├── recvmsg.c │ │ │ ├── remove.c │ │ │ ├── rename.c │ │ │ ├── renameat.c │ │ │ ├── renameat2.c │ │ │ ├── rewinddir.c │ │ │ ├── riscv │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── bits │ │ │ │ ├── environments.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── procfs.h │ │ │ │ ├── rseq.h │ │ │ │ ├── sigcontext.h │ │ │ │ └── time64.h │ │ │ ├── clone.S │ │ │ ├── clone3.S │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── dl-cache.h │ │ │ ├── flush-icache.c │ │ │ ├── getcontext.S │ │ │ ├── hwprobe.c │ │ │ ├── include │ │ │ │ └── sys │ │ │ │ │ └── hwprobe.h │ │ │ ├── kernel-features.h │ │ │ ├── ldd-rewrite.sed │ │ │ ├── localplt.data │ │ │ ├── makecontext.c │ │ │ ├── multiarch │ │ │ │ ├── Makefile │ │ │ │ ├── ifunc-impl-list.c │ │ │ │ └── memcpy.c │ │ │ ├── readelflib.c │ │ │ ├── rv32 │ │ │ │ ├── Implies │ │ │ │ ├── arch-syscall.h │ │ │ │ ├── c++-types.data │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ └── libutil.abilist │ │ │ ├── rv64 │ │ │ │ ├── Implies │ │ │ │ ├── arch-syscall.h │ │ │ │ ├── c++-types.data │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.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 │ │ │ │ ├── hwprobe.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.c │ │ │ ├── syscall_cancel.S │ │ │ ├── sysconf.c │ │ │ ├── sysdep.S │ │ │ ├── sysdep.h │ │ │ ├── ucontext-macros.h │ │ │ ├── ucontext_i.sym │ │ │ └── vfork.S │ │ │ ├── rmdir.c │ │ │ ├── rseq-internal.h │ │ │ ├── s390 │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── bits │ │ │ │ ├── elfclass.h │ │ │ │ ├── environments.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── hwcap.h │ │ │ │ ├── procfs-extra.h │ │ │ │ ├── procfs-id.h │ │ │ │ ├── procfs.h │ │ │ │ ├── rseq.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── statfs.h │ │ │ │ ├── struct_stat.h │ │ │ │ ├── timesize.h │ │ │ │ ├── typesizes.h │ │ │ │ ├── utmp.h │ │ │ │ └── utmpx.h │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── dl-cache.h │ │ │ ├── fpu │ │ │ │ └── Implies │ │ │ ├── ipc_priv.h │ │ │ ├── jmp-unwind.c │ │ │ ├── kernel-features.h │ │ │ ├── kernel_sigaction.h │ │ │ ├── ldconfig.h │ │ │ ├── ldd-rewrite.sed │ │ │ ├── libpthread-compat.c │ │ │ ├── localplt.data │ │ │ ├── longjmp_chk.c │ │ │ ├── mmap_call.h │ │ │ ├── nldbl-abi.h │ │ │ ├── readelflib.c │ │ │ ├── rt-sysdep.S │ │ │ ├── s390-32 │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.c │ │ │ │ ├── __makecontext_ret.S │ │ │ │ ├── arch-syscall.h │ │ │ │ ├── c++-types.data │ │ │ │ ├── clone.S │ │ │ │ ├── clone3.S │ │ │ │ ├── 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 │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil-compat.c │ │ │ │ ├── libutil.abilist │ │ │ │ ├── login.c │ │ │ │ ├── login32.c │ │ │ │ ├── makecontext.c │ │ │ │ ├── oldglob.c │ │ │ │ ├── pointer_guard.h │ │ │ │ ├── posix_fadvise64.c │ │ │ │ ├── pututxline.c │ │ │ │ ├── setcontext.S │ │ │ │ ├── swapcontext.S │ │ │ │ ├── syscall.S │ │ │ │ ├── syscall_cancel.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.S │ │ │ │ ├── sysdep.h │ │ │ │ ├── time64-compat.h │ │ │ │ ├── updwtmp.c │ │ │ │ ├── updwtmpx.c │ │ │ │ ├── utmp-compat.h │ │ │ │ ├── utmp-convert.h │ │ │ │ ├── utmp32.c │ │ │ │ ├── utmp32.h │ │ │ │ ├── utmpx-convert.h │ │ │ │ ├── utmpx32.c │ │ │ │ ├── utmpx32.h │ │ │ │ └── vfork.S │ │ │ ├── s390-64 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.c │ │ │ │ ├── __makecontext_ret.S │ │ │ │ ├── arch-syscall.h │ │ │ │ ├── c++-types.data │ │ │ │ ├── clone.S │ │ │ │ ├── clone3.S │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-cache.h │ │ │ │ ├── getcontext.S │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── makecontext.c │ │ │ │ ├── pointer_guard.h │ │ │ │ ├── setcontext.S │ │ │ │ ├── shlib-versions │ │ │ │ ├── single-thread.h │ │ │ │ ├── swapcontext.S │ │ │ │ ├── syscall.S │ │ │ │ ├── syscall_cancel.S │ │ │ │ ├── sysdep.S │ │ │ │ ├── sysdep.h │ │ │ │ ├── timer_t_was_int_compat.h │ │ │ │ └── vfork.S │ │ │ ├── sa_len.c │ │ │ ├── sigcontextinfo.h │ │ │ ├── sys │ │ │ │ ├── elf.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── sysconf.c │ │ │ ├── sysdep.h │ │ │ ├── tst-ptrace-singleblock.c │ │ │ ├── ucontext_i.sym │ │ │ └── xstatver.h │ │ │ ├── sa_len.c │ │ │ ├── safe-fatal.h │ │ │ ├── scandir64.c │ │ │ ├── sched_getaffinity.c │ │ │ ├── sched_getattr.c │ │ │ ├── sched_getcpu.c │ │ │ ├── sched_rr_gi.c │ │ │ ├── sched_setaffinity.c │ │ │ ├── sched_setattr.c │ │ │ ├── scsi │ │ │ ├── scsi.h │ │ │ ├── scsi_ioctl.h │ │ │ └── sg.h │ │ │ ├── seekdir.c │ │ │ ├── select.c │ │ │ ├── semctl.c │ │ │ ├── semget.c │ │ │ ├── semop.c │ │ │ ├── semtimedop.c │ │ │ ├── send.c │ │ │ ├── sendfile.c │ │ │ ├── sendfile64.c │ │ │ ├── sendmmsg.c │ │ │ ├── sendmsg.c │ │ │ ├── sendto.c │ │ │ ├── set-freeres-os.h │ │ │ ├── setegid.c │ │ │ ├── seteuid.c │ │ │ ├── setgid.c │ │ │ ├── setgroups.c │ │ │ ├── sethostid.c │ │ │ ├── setipv4sourcefilter.c │ │ │ ├── setitimer.c │ │ │ ├── setregid.c │ │ │ ├── setresgid.c │ │ │ ├── setresuid.c │ │ │ ├── setreuid.c │ │ │ ├── setrlimit.c │ │ │ ├── setrlimit64.c │ │ │ ├── setsockopt.c │ │ │ ├── setsourcefilter.c │ │ │ ├── settimeofday.c │ │ │ ├── settimezone.c │ │ │ ├── setuid.c │ │ │ ├── setvmaname.c │ │ │ ├── setvmaname.h │ │ │ ├── sh │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── ____longjmp_chk.S │ │ │ ├── adaptive_spin_count.h │ │ │ ├── arch-syscall.h │ │ │ ├── be │ │ │ │ ├── Versions │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── sh3 │ │ │ │ │ └── Implies │ │ │ │ └── sh4 │ │ │ │ │ ├── Implies │ │ │ │ │ └── fpu │ │ │ │ │ └── Implies │ │ │ ├── bits │ │ │ │ ├── fcntl.h │ │ │ │ ├── procfs-id.h │ │ │ │ ├── procfs.h │ │ │ │ ├── shmlba.h │ │ │ │ ├── struct_stat.h │ │ │ │ ├── timesize.h │ │ │ │ └── typesizes.h │ │ │ ├── c++-types.data │ │ │ ├── clone.S │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── fanotify_mark.c │ │ │ ├── kernel-features.h │ │ │ ├── kernel_sigaction.h │ │ │ ├── kernel_stat.h │ │ │ ├── le │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── sh3 │ │ │ │ │ └── Implies │ │ │ │ └── sh4 │ │ │ │ │ ├── Implies │ │ │ │ │ └── fpu │ │ │ │ │ └── Implies │ │ │ ├── localplt.data │ │ │ ├── lowlevel-atomic.h │ │ │ ├── makecontext.S │ │ │ ├── pointer_guard.h │ │ │ ├── sh3 │ │ │ │ ├── getcontext.S │ │ │ │ ├── setcontext.S │ │ │ │ ├── swapcontext.S │ │ │ │ └── ucontext_i.sym │ │ │ ├── sh4 │ │ │ │ ├── getcontext.S │ │ │ │ ├── setcontext.S │ │ │ │ ├── swapcontext.S │ │ │ │ ├── sysdep.h │ │ │ │ └── ucontext_i.sym │ │ │ ├── shlib-versions │ │ │ ├── sigaltstack-offsets.sym │ │ │ ├── sigcontextinfo.h │ │ │ ├── sys │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── syscall.S │ │ │ ├── syscall_cancel.S │ │ │ ├── syscalls.list │ │ │ ├── sysdep.S │ │ │ ├── sysdep.h │ │ │ ├── time64-compat.h │ │ │ ├── vfork.S │ │ │ └── xstatver.h │ │ │ ├── shlib-versions │ │ │ ├── shmat.c │ │ │ ├── shmctl.c │ │ │ ├── shmdt.c │ │ │ ├── shmget.c │ │ │ ├── shutdown.c │ │ │ ├── siglist-compat.h │ │ │ ├── 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-constants-time64.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-perm.h │ │ │ │ ├── mman.h │ │ │ │ ├── poll.h │ │ │ │ ├── procfs-extra.h │ │ │ │ ├── procfs-id.h │ │ │ │ ├── procfs.h │ │ │ │ ├── pthread_stack_min.h │ │ │ │ ├── resource.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── shmlba.h │ │ │ │ ├── sigaction.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── siginfo-arch.h │ │ │ │ ├── siginfo-consts-arch.h │ │ │ │ ├── signalfd.h │ │ │ │ ├── signum-arch.h │ │ │ │ ├── sigstack.h │ │ │ │ ├── socket-constants.h │ │ │ │ ├── socket_type.h │ │ │ │ ├── struct_stat.h │ │ │ │ ├── termios-c_cc.h │ │ │ │ ├── termios-c_oflag.h │ │ │ │ ├── termios-cbaud.h │ │ │ │ ├── timerfd.h │ │ │ │ ├── timesize.h │ │ │ │ ├── types │ │ │ │ │ ├── struct_msqid_ds.h │ │ │ │ │ ├── struct_semid_ds.h │ │ │ │ │ └── struct_shmid_ds.h │ │ │ │ ├── typesizes.h │ │ │ │ └── wordsize.h │ │ │ ├── brk_call.h │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── dl-cache.h │ │ │ ├── errlist-compat-data.h │ │ │ ├── getrlimit64.c │ │ │ ├── getshmlba.c │ │ │ ├── kernel-features.h │ │ │ ├── kernel_sigaction.h │ │ │ ├── ldd-rewrite.sed │ │ │ ├── librt-compat.c │ │ │ ├── profil-counter.h │ │ │ ├── readelflib.c │ │ │ ├── rt-sysdep.c │ │ │ ├── socket-constants-time64.h │ │ │ ├── sparc32 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── alphasort64.c │ │ │ │ ├── arch-syscall.h │ │ │ │ ├── bits │ │ │ │ │ └── long-double.h │ │ │ │ ├── c++-types.data │ │ │ │ ├── clone.S │ │ │ │ ├── fpu │ │ │ │ │ └── Implies │ │ │ │ ├── getcontext.S │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libc_sigaction.c │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── makecontext.c │ │ │ │ ├── nldbl-abi.h │ │ │ │ ├── pointer_guard.h │ │ │ │ ├── setcontext.S │ │ │ │ ├── shlib-versions │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── sigreturn_stub.S │ │ │ │ ├── sparcv9 │ │ │ │ │ └── fpu │ │ │ │ │ │ ├── Implies │ │ │ │ │ │ └── multiarch │ │ │ │ │ │ └── Implies │ │ │ │ ├── struct_kernel_msqid64_ds.h │ │ │ │ ├── struct_kernel_semid64_ds.h │ │ │ │ ├── swapcontext.S │ │ │ │ ├── syscall.S │ │ │ │ ├── syscall_cancel.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.h │ │ │ │ ├── time64-compat.h │ │ │ │ ├── ucontext_i.sym │ │ │ │ ├── versionsort64.c │ │ │ │ └── vfork.S │ │ │ ├── sparc64 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── Versions │ │ │ │ ├── ____longjmp_chk.S │ │ │ │ ├── __longjmp.S │ │ │ │ ├── __start_context.S │ │ │ │ ├── arch-syscall.h │ │ │ │ ├── bits │ │ │ │ │ └── long-double.h │ │ │ │ ├── bsd-_setjmp.S │ │ │ │ ├── bsd-setjmp.S │ │ │ │ ├── c++-types.data │ │ │ │ ├── clone.S │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-cache.h │ │ │ │ ├── getcontext.S │ │ │ │ ├── ipc_priv.h │ │ │ │ ├── kernel_stat.h │ │ │ │ ├── kstat_cp.h │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libc_sigaction.c │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── localplt.data │ │ │ │ ├── longjmp.S │ │ │ │ ├── makecontext.c │ │ │ │ ├── personality.c │ │ │ │ ├── pointer_guard.h │ │ │ │ ├── setcontext.S │ │ │ │ ├── setjmp.S │ │ │ │ ├── shlib-versions │ │ │ │ ├── sigcontextinfo.h │ │ │ │ ├── sigjmp.S │ │ │ │ ├── sigreturn_stub.S │ │ │ │ ├── sizes.h │ │ │ │ ├── swapcontext.c │ │ │ │ ├── syscall.S │ │ │ │ ├── syscall_cancel.S │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysdep.h │ │ │ │ ├── timer_t_was_int_compat.h │ │ │ │ ├── ucontext_i.h │ │ │ │ ├── vfork.S │ │ │ │ ├── wordexp.c │ │ │ │ └── xstatconv.c │ │ │ ├── struct_kernel_shmid64_ds.h │ │ │ ├── sys │ │ │ │ ├── ptrace.h │ │ │ │ ├── trap.h │ │ │ │ ├── ucontext.h │ │ │ │ └── user.h │ │ │ ├── sysdep.c │ │ │ ├── sysdep.h │ │ │ ├── termios_arch.h │ │ │ └── xstatver.h │ │ │ ├── spawn_int_def.h │ │ │ ├── spawnattr_getcgroup_np.c │ │ │ ├── spawnattr_setcgroup_np.c │ │ │ ├── spawni.c │ │ │ ├── speed.c │ │ │ ├── splice.c │ │ │ ├── startup.h │ │ │ ├── stat.c │ │ │ ├── stat64.c │ │ │ ├── stat_t64_cp.c │ │ │ ├── stat_t64_cp.h │ │ │ ├── statfs.c │ │ │ ├── statfs64.c │ │ │ ├── statvfs.c │ │ │ ├── statvfs64.c │ │ │ ├── statx.c │ │ │ ├── statx_cp.c │ │ │ ├── statx_cp.h │ │ │ ├── struct_kernel_msqid64_ds.h │ │ │ ├── struct_kernel_semid64_ds.h │ │ │ ├── struct_kernel_shmid64_ds.h │ │ │ ├── struct_stat_time64.h │ │ │ ├── symlink.c │ │ │ ├── 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 │ │ │ ├── pidfd.h │ │ │ ├── prctl.h │ │ │ ├── procfs.h │ │ │ ├── ptrace.h │ │ │ ├── quota.h │ │ │ ├── raw.h │ │ │ ├── reboot.h │ │ │ ├── rseq.h │ │ │ ├── signalfd.h │ │ │ ├── soundcard.h │ │ │ ├── swap.h │ │ │ ├── syscall.h │ │ │ ├── sysinfo.h │ │ │ ├── timerfd.h │ │ │ ├── timex.h │ │ │ ├── ttydefaults.h │ │ │ ├── user.h │ │ │ └── vt.h │ │ │ ├── syscall-names.list │ │ │ ├── syscall.c │ │ │ ├── syscall_cancel.c │ │ │ ├── syscalls.list │ │ │ ├── sysconf-pthread_stack_min.h │ │ │ ├── sysconf-sigstksz.h │ │ │ ├── sysconf.c │ │ │ ├── sysctl.c │ │ │ ├── sysdep-cancel.h │ │ │ ├── sysdep-vdso.h │ │ │ ├── sysdep.h │ │ │ ├── tcdrain.c │ │ │ ├── tcflow.c │ │ │ ├── tcflush.c │ │ │ ├── tcgetattr.c │ │ │ ├── tcgetpgrp.c │ │ │ ├── tcsendbrk.c │ │ │ ├── tcsetattr.c │ │ │ ├── tcsetpgrp.c │ │ │ ├── tee.c │ │ │ ├── telldir.c │ │ │ ├── termios_arch.h │ │ │ ├── termios_internals.h │ │ │ ├── test-errno-linux.c │ │ │ ├── thrd_priv.h │ │ │ ├── thrd_sleep.c │ │ │ ├── time-clockid.h │ │ │ ├── time.c │ │ │ ├── timer_create.c │ │ │ ├── timer_delete.c │ │ │ ├── timer_getoverr.c │ │ │ ├── timer_gettime.c │ │ │ ├── timer_routines.c │ │ │ ├── timer_settime.c │ │ │ ├── timer_t_was_int_compat.h │ │ │ ├── timerfd_gettime.c │ │ │ ├── timerfd_settime.c │ │ │ ├── times.c │ │ │ ├── timespec_get.c │ │ │ ├── timespec_getres.c │ │ │ ├── tls-internal.c │ │ │ ├── tls-internal.h │ │ │ ├── truncate.c │ │ │ ├── truncate64.c │ │ │ ├── tst-adjtimex-time64.c │ │ │ ├── tst-adjtimex.c │ │ │ ├── tst-affinity-pid.c │ │ │ ├── tst-affinity-static.c │ │ │ ├── tst-affinity.c │ │ │ ├── tst-align-clone-internal.c │ │ │ ├── tst-align-clone.c │ │ │ ├── tst-clock_adjtime-time64.c │ │ │ ├── tst-clock_adjtime.c │ │ │ ├── tst-clock_gettime-clobber.c │ │ │ ├── tst-clone.c │ │ │ ├── tst-clone2-internal.c │ │ │ ├── tst-clone2.c │ │ │ ├── tst-clone3-internal.c │ │ │ ├── tst-clone3.c │ │ │ ├── tst-copy_file_range-large.c │ │ │ ├── tst-epoll-ioctls.c │ │ │ ├── tst-epoll-time64.c │ │ │ ├── tst-epoll.c │ │ │ ├── tst-fallocate-common.c │ │ │ ├── tst-fallocate.c │ │ │ ├── tst-fallocate64.c │ │ │ ├── tst-fanotify.c │ │ │ ├── tst-fdopendir-o_path.c │ │ │ ├── tst-getauxval.c │ │ │ ├── tst-getcwd-smallbuff.c │ │ │ ├── tst-getdents64.c │ │ │ ├── tst-getpid1-internal.c │ │ │ ├── tst-getpid1.c │ │ │ ├── tst-gettid-kill.c │ │ │ ├── tst-gettid.c │ │ │ ├── tst-gettimeofday-clobber.c │ │ │ ├── tst-glibcsyscalls.py │ │ │ ├── tst-linux-mremap1.c │ │ │ ├── tst-memfd_create.c │ │ │ ├── tst-misalign-clone.c │ │ │ ├── tst-mlock2.c │ │ │ ├── tst-mman-consts.py │ │ │ ├── tst-mount-compile.py │ │ │ ├── tst-mount-consts.py │ │ │ ├── tst-mount.c │ │ │ ├── tst-mseal-pkey.c │ │ │ ├── tst-mseal.c │ │ │ ├── tst-nolink-libc.c │ │ │ ├── tst-ntp_adjtime-time64.c │ │ │ ├── tst-ntp_adjtime.c │ │ │ ├── tst-ntp_gettime-time64.c │ │ │ ├── tst-ntp_gettime.c │ │ │ ├── tst-ntp_gettimex-time64.c │ │ │ ├── tst-ntp_gettimex.c │ │ │ ├── tst-o_path-locks.c │ │ │ ├── tst-ofdlocks-compat.c │ │ │ ├── tst-ofdlocks.c │ │ │ ├── tst-personality.c │ │ │ ├── tst-pidfd-consts.py │ │ │ ├── tst-pidfd.c │ │ │ ├── tst-pidfd_getinfo.c │ │ │ ├── tst-pidfd_getpid.c │ │ │ ├── tst-pkey.c │ │ │ ├── tst-posix_spawn-setsid-pidfd.c │ │ │ ├── tst-ppoll-time64.c │ │ │ ├── tst-ppoll.c │ │ │ ├── tst-prctl-time64.c │ │ │ ├── tst-prctl.c │ │ │ ├── tst-process_madvise.c │ │ │ ├── tst-process_mrelease.c │ │ │ ├── tst-quota.c │ │ │ ├── tst-readdir64-compat.c │ │ │ ├── tst-rlimit-infinity.c │ │ │ ├── tst-rseq-disable-static.c │ │ │ ├── tst-rseq-disable.c │ │ │ ├── tst-rseq-nptl-static.c │ │ │ ├── tst-rseq-nptl.c │ │ │ ├── tst-rseq-static.c │ │ │ ├── tst-rseq-tls-range-4096-static.c │ │ │ ├── tst-rseq-tls-range-4096.c │ │ │ ├── tst-rseq-tls-range-mod.c │ │ │ ├── tst-rseq-tls-range-static.c │ │ │ ├── tst-rseq-tls-range.c │ │ │ ├── tst-rseq.c │ │ │ ├── tst-rseq.h │ │ │ ├── tst-sched-affinity-inheritance.c │ │ │ ├── tst-sched-consts.py │ │ │ ├── tst-sched_setattr-thread.c │ │ │ ├── tst-sched_setattr.c │ │ │ ├── tst-scm_rights-time64.c │ │ │ ├── tst-scm_rights.c │ │ │ ├── tst-sem_getvalue-affinity.c │ │ │ ├── tst-sigabbrev_np-strings.c │ │ │ ├── tst-sigcontext-get_pc.c │ │ │ ├── tst-signal-numbers.py │ │ │ ├── tst-sigtimedwait-time64.c │ │ │ ├── tst-sigtimedwait.c │ │ │ ├── tst-skeleton-affinity.c │ │ │ ├── tst-skeleton-thread-affinity.c │ │ │ ├── tst-socket-consts.py │ │ │ ├── tst-socket-timestamp-compat-time64.c │ │ │ ├── tst-socket-timestamp-compat.c │ │ │ ├── tst-socket-timestamp-time64.c │ │ │ ├── tst-socket-timestamp.c │ │ │ ├── tst-spawn-cgroup.c │ │ │ ├── tst-spawn-chdir-pidfd.c │ │ │ ├── tst-spawn-pidfd.c │ │ │ ├── tst-spawn-pidfd.h │ │ │ ├── tst-spawn2-pidfd.c │ │ │ ├── tst-spawn3-pidfd.c │ │ │ ├── tst-spawn4-pidfd.c │ │ │ ├── tst-spawn5-pidfd.c │ │ │ ├── tst-spawn6-pidfd.c │ │ │ ├── tst-spawn7-pidfd.c │ │ │ ├── tst-strerror-strings.c │ │ │ ├── tst-strerror_l-strings.c │ │ │ ├── tst-strerror_r-strings.c │ │ │ ├── tst-strerrordesc_np-strings.c │ │ │ ├── tst-strsignal-strings.c │ │ │ ├── tst-sync_file_range.c │ │ │ ├── tst-syscall-list.sh │ │ │ ├── tst-syscall-restart.c │ │ │ ├── tst-sysconf-iov_max-uapi.c │ │ │ ├── tst-sysconf-iov_max.c │ │ │ ├── tst-sysvmsg-linux.c │ │ │ ├── tst-sysvsem-linux.c │ │ │ ├── tst-sysvshm-linux.c │ │ │ ├── tst-termios-linux.c │ │ │ ├── tst-tgkill.c │ │ │ ├── tst-time-clobber.c │ │ │ ├── tst-timerfd-time64.c │ │ │ ├── tst-timerfd.c │ │ │ ├── tst-ttyname-common.c │ │ │ ├── tst-ttyname-direct.c │ │ │ ├── tst-ttyname-namespace.c │ │ │ ├── tst-verify-unique-strings.c │ │ │ ├── tst-xsi-strerror_r-mod.c │ │ │ ├── tst-xsi-strerror_r-strings.c │ │ │ ├── ttyname.c │ │ │ ├── ttyname.h │ │ │ ├── ttyname_r.c │ │ │ ├── tv32-compat.h │ │ │ ├── ualarm.c │ │ │ ├── umount.c │ │ │ ├── umount2.c │ │ │ ├── unlink.c │ │ │ ├── unlockpt.c │ │ │ ├── update-syscall-lists.py │ │ │ ├── updwtmp.c │ │ │ ├── ustat.c │ │ │ ├── utime.c │ │ │ ├── utimensat.c │ │ │ ├── utimes.c │ │ │ ├── utmp_file.c │ │ │ ├── versionsort64.c │ │ │ ├── vfork.c │ │ │ ├── vmsplice.c │ │ │ ├── wait3.c │ │ │ ├── wait4.c │ │ │ ├── waitid.c │ │ │ ├── wordsize-64 │ │ │ ├── Versions │ │ │ ├── statx_cp.c │ │ │ └── syscalls.list │ │ │ ├── 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 │ │ │ │ ├── platform │ │ │ │ │ └── features.h │ │ │ │ ├── procfs-id.h │ │ │ │ ├── procfs.h │ │ │ │ ├── rseq.h │ │ │ │ ├── sigcontext.h │ │ │ │ ├── siginfo-arch.h │ │ │ │ ├── struct_stat.h │ │ │ │ ├── timesize.h │ │ │ │ ├── types │ │ │ │ │ └── struct_semid_ds.h │ │ │ │ └── typesizes.h │ │ │ ├── dl-hwcap2.h │ │ │ ├── dl-minsigstacksize.h │ │ │ ├── dl-sysdep.c │ │ │ ├── elf-read-prop.h │ │ │ ├── gettimeofday.c │ │ │ ├── include │ │ │ │ └── bits │ │ │ │ │ └── sigstack.h │ │ │ ├── jmp_buf-ssp.sym │ │ │ ├── longjmp.c │ │ │ ├── pkey_get.c │ │ │ ├── pkey_set.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-saved_mask-1.c │ │ │ └── xstatver.h │ │ │ ├── x86_64 │ │ │ ├── 64 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── arch-syscall.h │ │ │ │ ├── c++-types.data │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── mmap_internal.h │ │ │ │ ├── shlib-versions │ │ │ │ └── timer_t_was_int_compat.h │ │ │ ├── Implies │ │ │ ├── Makefile │ │ │ ├── Versions │ │ │ ├── ____longjmp_chk.S │ │ │ ├── __start_context.S │ │ │ ├── allocate-shadow-stack.c │ │ │ ├── allocate-shadow-stack.h │ │ │ ├── clone.S │ │ │ ├── clone3.S │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── dl-cet.h │ │ │ ├── dl-plt-rewrite.h │ │ │ ├── dl-procinfo.c │ │ │ ├── get-cpuid-feature-leaf.c │ │ │ ├── getcontext.S │ │ │ ├── include │ │ │ │ └── asm │ │ │ │ │ └── prctl.h │ │ │ ├── kernel-features.h │ │ │ ├── ldd-rewrite.sed │ │ │ ├── libc_sigaction.c │ │ │ ├── libmvec.abilist │ │ │ ├── makecontext.c │ │ │ ├── pointer_guard.h │ │ │ ├── setcontext.S │ │ │ ├── sigaltstack-offsets.sym │ │ │ ├── sigcontextinfo.h │ │ │ ├── single-thread.h │ │ │ ├── swapcontext.S │ │ │ ├── syscall.S │ │ │ ├── syscall_cancel.S │ │ │ ├── syscalls.list │ │ │ ├── sysdep.S │ │ │ ├── sysdep.h │ │ │ ├── tst-cet-property-1.c │ │ │ ├── tst-cet-property-2.c │ │ │ ├── tst-cet-property-dep-2.S │ │ │ ├── tst-cet-setcontext-1.c │ │ │ ├── tst-cet-vfork-1.c │ │ │ ├── tst-glibc-hwcaps-2.c │ │ │ ├── tst-gnu2-tls2-amx-mod0.c │ │ │ ├── tst-gnu2-tls2-amx-mod1.c │ │ │ ├── tst-gnu2-tls2-amx-mod2.c │ │ │ ├── tst-gnu2-tls2-amx.c │ │ │ ├── tst-gnu2-tls2-amx.h │ │ │ ├── ucontext_i.sym │ │ │ ├── uw-sigframe.h │ │ │ ├── vfork.S │ │ │ ├── x32 │ │ │ │ ├── Implies │ │ │ │ ├── Makefile │ │ │ │ ├── arch-syscall.h │ │ │ │ ├── arch_prctl.c │ │ │ │ ├── c++-types.data │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── dl-cache.h │ │ │ │ ├── fixup-asm-unistd.h │ │ │ │ ├── fts.c │ │ │ │ ├── fts64.c │ │ │ │ ├── ftw.c │ │ │ │ ├── ftw64.c │ │ │ │ ├── ld.abilist │ │ │ │ ├── libBrokenLocale.abilist │ │ │ │ ├── libanl.abilist │ │ │ │ ├── libc.abilist │ │ │ │ ├── libc_malloc_debug.abilist │ │ │ │ ├── libdl.abilist │ │ │ │ ├── libm.abilist │ │ │ │ ├── libnsl.abilist │ │ │ │ ├── libpthread.abilist │ │ │ │ ├── libresolv.abilist │ │ │ │ ├── librt.abilist │ │ │ │ ├── libthread_db.abilist │ │ │ │ ├── libutil.abilist │ │ │ │ ├── lseek.S │ │ │ │ ├── lseek64.S │ │ │ │ ├── prctl.c │ │ │ │ ├── shlib-versions │ │ │ │ ├── syscall_types.h │ │ │ │ ├── syscalls.list │ │ │ │ ├── sysctl.c │ │ │ │ ├── sysdep.h │ │ │ │ └── times.c │ │ │ └── x86-64-isa-level-VALUE.c │ │ │ ├── xmknod.c │ │ │ ├── xmknodat.c │ │ │ ├── xstat.c │ │ │ ├── xstat64.c │ │ │ ├── xstatconv.c │ │ │ ├── xstatconv.h │ │ │ ├── xstatover.h │ │ │ └── xstatver.h │ └── x86_64 │ │ ├── sysdep.S │ │ └── sysdep.h ├── wordsize-32 │ ├── Makefile │ ├── Versions │ ├── bits │ │ └── wordsize.h │ ├── divdi3-symbol-hacks.h │ ├── divdi3.c │ ├── llabs.c │ ├── lldiv.c │ ├── tst-scanf-format-int-d.input │ ├── tst-scanf-format-int-i.input │ ├── tst-scanf-format-long-d.input │ ├── tst-scanf-format-long-i.input │ ├── tst-scanf-format-uint-b.input │ ├── tst-scanf-format-uint-o.input │ ├── tst-scanf-format-uint-u.input │ ├── tst-scanf-format-uint-x.input │ ├── tst-scanf-format-uint-xx.input │ ├── tst-scanf-format-ulong-b.input │ ├── tst-scanf-format-ulong-o.input │ ├── tst-scanf-format-ulong-u.input │ ├── tst-scanf-format-ulong-x.input │ └── tst-scanf-format-ulong-xx.input ├── wordsize-64 │ ├── Makefile │ ├── Versions │ ├── bits │ │ └── wordsize.h │ ├── fts.c │ ├── fts64.c │ ├── ftw.c │ ├── ftw64.c │ ├── labs.c │ ├── ldiv.c │ ├── strtol.c │ ├── strtol_l.c │ ├── strtoll.c │ ├── strtoll_l.c │ ├── strtoul.c │ ├── strtoul_l.c │ ├── strtoull.c │ ├── strtoull_l.c │ ├── tst-scanf-format-int-d.input │ ├── tst-scanf-format-int-i.input │ ├── tst-scanf-format-long-d.input │ ├── tst-scanf-format-long-i.input │ ├── tst-scanf-format-uint-b.input │ ├── tst-scanf-format-uint-o.input │ ├── tst-scanf-format-uint-u.input │ ├── tst-scanf-format-uint-x.input │ ├── tst-scanf-format-uint-xx.input │ ├── tst-scanf-format-ulong-b.input │ ├── tst-scanf-format-ulong-o.input │ ├── tst-scanf-format-ulong-u.input │ ├── tst-scanf-format-ulong-x.input │ ├── tst-scanf-format-ulong-xx.input │ ├── tst-writev.c │ ├── wcstol.c │ ├── wcstol_l.c │ ├── wcstoll.c │ ├── wcstoll_l.c │ ├── wcstoul.c │ ├── wcstoul_l.c │ ├── wcstoull.c │ └── wcstoull_l.c ├── x86 │ ├── Makeconfig │ ├── Makefile │ ├── Versions │ ├── __longjmp_cancel.S │ ├── abi-note.c │ ├── atomic-machine.h │ ├── bits │ │ ├── dl_find_object.h │ │ ├── endianness.h │ │ ├── floatn.h │ │ ├── flt-eval-method.h │ │ ├── fp-logb.h │ │ ├── indirect-return.h │ │ ├── link.h │ │ ├── platform │ │ │ ├── features.h │ │ │ └── x86.h │ │ ├── setjmp.h │ │ └── wordsize.h │ ├── cacheinfo.c │ ├── cacheinfo.h │ ├── configure │ ├── configure.ac │ ├── cpu-features-offsets.sym │ ├── cpu-features.c │ ├── cpu-tunables.c │ ├── dl-cacheinfo.h │ ├── dl-diagnostics-cpu.c │ ├── dl-get-cpu-features.c │ ├── dl-hwcap.h │ ├── dl-hwcap2.h │ ├── dl-isa-level.h │ ├── dl-lookupcfg.h │ ├── dl-minsigstacksize.h │ ├── dl-new-hash.h │ ├── dl-procinfo.c │ ├── dl-prop.h │ ├── dl-tunables.list │ ├── elf-initfini.h │ ├── features-offsets.sym │ ├── float128-abi.h │ ├── fpu │ │ ├── Makefile │ │ ├── bits │ │ │ ├── fenv.h │ │ │ └── math-vector.h │ │ ├── e_sqrtf128.c │ │ ├── e_sqrtl.c │ │ ├── fenv_private.h │ │ ├── finclude │ │ │ └── math-vector-fortran.h │ │ ├── fix-fp-int-compare-invalid.h │ │ ├── math-barriers.h │ │ ├── math-inline-asm.h │ │ ├── math_private.h │ │ ├── nan-pseudo-number.h │ │ ├── powl_helper.c │ │ ├── s_ceill.c │ │ ├── s_ffma.c │ │ ├── s_floorl.c │ │ ├── s_fpclassifyl.c │ │ ├── s_isnanl.c │ │ ├── s_nearestint_387_template.c │ │ ├── s_sincosf_data.c │ │ ├── s_truncl.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 │ ├── get-cpuid-feature-leaf.c │ ├── get-isa-level.h │ ├── gmp-arch.h │ ├── hp-timing.h │ ├── htl │ │ └── pt-machdep.h │ ├── include │ │ ├── cpu-features-preferred_feature_index_1.def │ │ └── cpu-features.h │ ├── init-arch.h │ ├── isa-ifunc-macros.h │ ├── isa-level.c │ ├── isa-level.h │ ├── jmp_buf-ssp.sym │ ├── ldbl2mpn.c │ ├── ldsodefs.h │ ├── libc-start.c │ ├── link_map.h │ ├── linkmap.h │ ├── longjmp.c │ ├── nptl │ │ ├── bits │ │ │ ├── pthreadtypes-arch.h │ │ │ ├── struct_mutex.h │ │ │ └── struct_rwlock.h │ │ ├── pthreaddef.h │ │ └── tls-setup.h │ ├── readelflib.c │ ├── sys │ │ └── platform │ │ │ └── x86.h │ ├── sysdep.h │ ├── tininess.h │ ├── tst-cpu-features-cpuinfo-static.c │ ├── tst-cpu-features-cpuinfo.c │ ├── tst-cpu-features-supports-static.c │ ├── tst-cpu-features-supports.c │ ├── tst-get-cpu-features-static.c │ ├── tst-get-cpu-features.c │ ├── tst-gnu2-tls2-x86-noxsave.c │ ├── tst-gnu2-tls2-x86-noxsavec.c │ ├── tst-gnu2-tls2-x86-noxsavexsavec.c │ ├── tst-gnu2-tls2.c │ ├── tst-gnu2-tls2.h │ ├── tst-hwcap-tunables.c │ ├── tst-ifunc-isa-1-static.c │ ├── tst-ifunc-isa-1.c │ ├── tst-ifunc-isa-2-static.c │ ├── tst-ifunc-isa-2.c │ ├── tst-ifunc-isa.h │ ├── tst-isa-level-1.c │ ├── tst-isa-level-mod-1-baseline.c │ ├── tst-isa-level-mod-1-v2.c │ ├── tst-isa-level-mod-1-v3.c │ ├── tst-isa-level-mod-1-v4.c │ ├── tst-isa-level-mod-1.c │ ├── tst-ldbl-nonnormal-printf.c │ ├── tst-memchr-rtm.c │ ├── tst-memcmp-rtm.c │ ├── tst-memmove-rtm.c │ ├── tst-memrchr-rtm.c │ ├── tst-memset-rtm.c │ ├── tst-setjmp-cet.c │ ├── tst-stack-align.h │ ├── tst-strcasecmp-rtm.c │ ├── tst-strchr-rtm.c │ ├── tst-strcmp-rtm.c │ ├── tst-strcpy-rtm.c │ ├── tst-string-rtm.h │ ├── tst-strlen-rtm.c │ ├── tst-strncasecmp-rtm.c │ ├── tst-strncmp-rtm.c │ ├── tst-strrchr-rtm.c │ ├── tst-sysconf-cache-linesize-static.c │ ├── tst-sysconf-cache-linesize.c │ ├── tst-tls23.c │ ├── tst-tls23.h │ ├── tst-wcscmp-rtm.c │ ├── tst-wcsncmp-rtm.c │ └── utmp-size.h └── x86_64 │ ├── 64 │ ├── Implies-after │ ├── Makefile │ ├── dl-tunables.list │ ├── nptl │ │ └── rseq-access.h │ ├── tst-map-32bit-1a.c │ ├── tst-map-32bit-1b.c │ ├── tst-map-32bit-2.c │ ├── tst-map-32bit-mod-2.c │ └── tst-map-32bit-mod.c │ ├── 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 │ ├── check-cet.awk │ ├── configure │ ├── configure.ac │ ├── crti.S │ ├── crtn.S │ ├── dl-cache.h │ ├── dl-cet.c │ ├── dl-dtprocnum.h │ ├── dl-hwcaps-subdirs.c │ ├── dl-irel.h │ ├── dl-machine.h │ ├── dl-plt-rewrite.h │ ├── dl-procinfo.c │ ├── dl-procruntime.c │ ├── dl-runtime.h │ ├── dl-tls.c │ ├── dl-tlsdesc-dynamic.h │ ├── dl-tlsdesc.S │ ├── dl-tlsdesc.h │ ├── dl-trampoline-state.h │ ├── dl-trampoline.S │ ├── dl-trampoline.h │ ├── feature-control.h │ ├── fpu │ ├── Implies │ ├── Makeconfig │ ├── Makefile │ ├── Versions │ ├── bench-libmvec-arch.h │ ├── 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 │ ├── 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 │ ├── math-tests-arch.h │ ├── math-tests-snan.h │ ├── math-use-builtins-sqrt.h │ ├── math-use-builtins-trunc.h │ ├── math_ldbl.h │ ├── multiarch │ │ ├── Makefile │ │ ├── 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_atanh-fma.c │ │ ├── e_atanh.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_log2-fma.c │ │ ├── e_log2.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 │ │ ├── e_sinh-fma.c │ │ ├── e_sinh.c │ │ ├── ifunc-avx-fma4.h │ │ ├── ifunc-fma.h │ │ ├── ifunc-fma4.h │ │ ├── ifunc-mathvec-avx2.h │ │ ├── ifunc-mathvec-avx512-skx.h │ │ ├── ifunc-mathvec-avx512.h │ │ ├── ifunc-mathvec-sse4_1.h │ │ ├── ifunc-sse4_1-avx.h │ │ ├── ifunc-sse4_1.h │ │ ├── s_atan-avx.c │ │ ├── s_atan-fma.c │ │ ├── s_atan-fma4.c │ │ ├── s_atan.c │ │ ├── s_ceil-avx.S │ │ ├── s_ceil-c.c │ │ ├── s_ceil-sse4_1.S │ │ ├── s_ceil.c │ │ ├── s_ceilf-avx.S │ │ ├── s_ceilf-c.c │ │ ├── s_ceilf-sse4_1.S │ │ ├── s_ceilf.c │ │ ├── s_cosf-fma.c │ │ ├── s_cosf-sse2.c │ │ ├── s_cosf.c │ │ ├── s_exp10m1f-fma.c │ │ ├── s_exp10m1f.c │ │ ├── s_exp2m1f-fma.c │ │ ├── s_exp2m1f.c │ │ ├── s_expm1-fma.c │ │ ├── s_expm1.c │ │ ├── s_floor-avx.S │ │ ├── s_floor-c.c │ │ ├── s_floor-sse4_1.S │ │ ├── s_floor.c │ │ ├── s_floorf-avx.S │ │ ├── s_floorf-c.c │ │ ├── s_floorf-sse4_1.S │ │ ├── s_floorf.c │ │ ├── s_fma.c │ │ ├── s_fmaf.c │ │ ├── s_log1p-fma.c │ │ ├── s_log1p.c │ │ ├── s_modf-avx.c │ │ ├── s_modf-sse4_1.c │ │ ├── s_modf.c │ │ ├── s_modff-avx.c │ │ ├── s_modff-sse4_1.c │ │ ├── s_modff.c │ │ ├── s_nearbyint-avx.S │ │ ├── s_nearbyint-c.c │ │ ├── s_nearbyint-sse4_1.S │ │ ├── s_nearbyint.c │ │ ├── s_nearbyintf-avx.S │ │ ├── s_nearbyintf-c.c │ │ ├── s_nearbyintf-sse4_1.S │ │ ├── s_nearbyintf.c │ │ ├── s_rint-avx.S │ │ ├── s_rint-c.c │ │ ├── s_rint-sse4_1.S │ │ ├── s_rint.c │ │ ├── s_rintf-avx.S │ │ ├── s_rintf-c.c │ │ ├── s_rintf-sse4_1.S │ │ ├── s_rintf.c │ │ ├── s_roundeven-avx.S │ │ ├── s_roundeven-c.c │ │ ├── s_roundeven-sse4_1.S │ │ ├── s_roundeven.c │ │ ├── s_roundevenf-avx.S │ │ ├── s_roundevenf-c.c │ │ ├── s_roundevenf-sse4_1.S │ │ ├── s_roundevenf.c │ │ ├── s_sin-avx.c │ │ ├── s_sin-fma.c │ │ ├── s_sin-fma4.c │ │ ├── s_sin.c │ │ ├── s_sincos-avx.c │ │ ├── s_sincos-fma.c │ │ ├── s_sincos-fma4.c │ │ ├── s_sincos.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_tanh-fma.c │ │ ├── s_tanh.c │ │ ├── s_trunc-avx.S │ │ ├── s_trunc-c.c │ │ ├── s_trunc-sse4_1.S │ │ ├── s_trunc.c │ │ ├── s_truncf-avx.S │ │ ├── s_truncf-c.c │ │ ├── s_truncf-sse4_1.S │ │ ├── s_truncf.c │ │ ├── svml_d_acos2_core-sse2.S │ │ ├── svml_d_acos2_core.c │ │ ├── svml_d_acos2_core_sse4.S │ │ ├── svml_d_acos4_core-sse.S │ │ ├── svml_d_acos4_core.c │ │ ├── svml_d_acos4_core_avx2.S │ │ ├── svml_d_acos8_core-avx2.S │ │ ├── svml_d_acos8_core.c │ │ ├── svml_d_acos8_core_avx512.S │ │ ├── svml_d_acosh2_core-sse2.S │ │ ├── svml_d_acosh2_core.c │ │ ├── svml_d_acosh2_core_sse4.S │ │ ├── svml_d_acosh4_core-sse.S │ │ ├── svml_d_acosh4_core.c │ │ ├── svml_d_acosh4_core_avx2.S │ │ ├── svml_d_acosh8_core-avx2.S │ │ ├── svml_d_acosh8_core.c │ │ ├── svml_d_acosh8_core_avx512.S │ │ ├── svml_d_asin2_core-sse2.S │ │ ├── svml_d_asin2_core.c │ │ ├── svml_d_asin2_core_sse4.S │ │ ├── svml_d_asin4_core-sse.S │ │ ├── svml_d_asin4_core.c │ │ ├── svml_d_asin4_core_avx2.S │ │ ├── svml_d_asin8_core-avx2.S │ │ ├── svml_d_asin8_core.c │ │ ├── svml_d_asin8_core_avx512.S │ │ ├── svml_d_asinh2_core-sse2.S │ │ ├── svml_d_asinh2_core.c │ │ ├── svml_d_asinh2_core_sse4.S │ │ ├── svml_d_asinh4_core-sse.S │ │ ├── svml_d_asinh4_core.c │ │ ├── svml_d_asinh4_core_avx2.S │ │ ├── svml_d_asinh8_core-avx2.S │ │ ├── svml_d_asinh8_core.c │ │ ├── svml_d_asinh8_core_avx512.S │ │ ├── svml_d_atan22_core-sse2.S │ │ ├── svml_d_atan22_core.c │ │ ├── svml_d_atan22_core_sse4.S │ │ ├── svml_d_atan24_core-sse.S │ │ ├── svml_d_atan24_core.c │ │ ├── svml_d_atan24_core_avx2.S │ │ ├── svml_d_atan28_core-avx2.S │ │ ├── svml_d_atan28_core.c │ │ ├── svml_d_atan28_core_avx512.S │ │ ├── svml_d_atan2_core-sse2.S │ │ ├── svml_d_atan2_core.c │ │ ├── svml_d_atan2_core_sse4.S │ │ ├── svml_d_atan4_core-sse.S │ │ ├── svml_d_atan4_core.c │ │ ├── svml_d_atan4_core_avx2.S │ │ ├── svml_d_atan8_core-avx2.S │ │ ├── svml_d_atan8_core.c │ │ ├── svml_d_atan8_core_avx512.S │ │ ├── svml_d_atanh2_core-sse2.S │ │ ├── svml_d_atanh2_core.c │ │ ├── svml_d_atanh2_core_sse4.S │ │ ├── svml_d_atanh4_core-sse.S │ │ ├── svml_d_atanh4_core.c │ │ ├── svml_d_atanh4_core_avx2.S │ │ ├── svml_d_atanh8_core-avx2.S │ │ ├── svml_d_atanh8_core.c │ │ ├── svml_d_atanh8_core_avx512.S │ │ ├── svml_d_cbrt2_core-sse2.S │ │ ├── svml_d_cbrt2_core.c │ │ ├── svml_d_cbrt2_core_sse4.S │ │ ├── svml_d_cbrt4_core-sse.S │ │ ├── svml_d_cbrt4_core.c │ │ ├── svml_d_cbrt4_core_avx2.S │ │ ├── svml_d_cbrt8_core-avx2.S │ │ ├── svml_d_cbrt8_core.c │ │ ├── svml_d_cbrt8_core_avx512.S │ │ ├── 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_cosh2_core-sse2.S │ │ ├── svml_d_cosh2_core.c │ │ ├── svml_d_cosh2_core_sse4.S │ │ ├── svml_d_cosh4_core-sse.S │ │ ├── svml_d_cosh4_core.c │ │ ├── svml_d_cosh4_core_avx2.S │ │ ├── svml_d_cosh8_core-avx2.S │ │ ├── svml_d_cosh8_core.c │ │ ├── svml_d_cosh8_core_avx512.S │ │ ├── svml_d_erf2_core-sse2.S │ │ ├── svml_d_erf2_core.c │ │ ├── svml_d_erf2_core_sse4.S │ │ ├── svml_d_erf4_core-sse.S │ │ ├── svml_d_erf4_core.c │ │ ├── svml_d_erf4_core_avx2.S │ │ ├── svml_d_erf8_core-avx2.S │ │ ├── svml_d_erf8_core.c │ │ ├── svml_d_erf8_core_avx512.S │ │ ├── svml_d_erfc2_core-sse2.S │ │ ├── svml_d_erfc2_core.c │ │ ├── svml_d_erfc2_core_sse4.S │ │ ├── svml_d_erfc4_core-sse.S │ │ ├── svml_d_erfc4_core.c │ │ ├── svml_d_erfc4_core_avx2.S │ │ ├── svml_d_erfc8_core-avx2.S │ │ ├── svml_d_erfc8_core.c │ │ ├── svml_d_erfc8_core_avx512.S │ │ ├── svml_d_exp102_core-sse2.S │ │ ├── svml_d_exp102_core.c │ │ ├── svml_d_exp102_core_sse4.S │ │ ├── svml_d_exp104_core-sse.S │ │ ├── svml_d_exp104_core.c │ │ ├── svml_d_exp104_core_avx2.S │ │ ├── svml_d_exp108_core-avx2.S │ │ ├── svml_d_exp108_core.c │ │ ├── svml_d_exp108_core_avx512.S │ │ ├── svml_d_exp22_core-sse2.S │ │ ├── svml_d_exp22_core.c │ │ ├── svml_d_exp22_core_sse4.S │ │ ├── svml_d_exp24_core-sse.S │ │ ├── svml_d_exp24_core.c │ │ ├── svml_d_exp24_core_avx2.S │ │ ├── svml_d_exp28_core-avx2.S │ │ ├── svml_d_exp28_core.c │ │ ├── svml_d_exp28_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_expm12_core-sse2.S │ │ ├── svml_d_expm12_core.c │ │ ├── svml_d_expm12_core_sse4.S │ │ ├── svml_d_expm14_core-sse.S │ │ ├── svml_d_expm14_core.c │ │ ├── svml_d_expm14_core_avx2.S │ │ ├── svml_d_expm18_core-avx2.S │ │ ├── svml_d_expm18_core.c │ │ ├── svml_d_expm18_core_avx512.S │ │ ├── svml_d_hypot2_core-sse2.S │ │ ├── svml_d_hypot2_core.c │ │ ├── svml_d_hypot2_core_sse4.S │ │ ├── svml_d_hypot4_core-sse.S │ │ ├── svml_d_hypot4_core.c │ │ ├── svml_d_hypot4_core_avx2.S │ │ ├── svml_d_hypot8_core-avx2.S │ │ ├── svml_d_hypot8_core.c │ │ ├── svml_d_hypot8_core_avx512.S │ │ ├── svml_d_log102_core-sse2.S │ │ ├── svml_d_log102_core.c │ │ ├── svml_d_log102_core_sse4.S │ │ ├── svml_d_log104_core-sse.S │ │ ├── svml_d_log104_core.c │ │ ├── svml_d_log104_core_avx2.S │ │ ├── svml_d_log108_core-avx2.S │ │ ├── svml_d_log108_core.c │ │ ├── svml_d_log108_core_avx512.S │ │ ├── svml_d_log1p2_core-sse2.S │ │ ├── svml_d_log1p2_core.c │ │ ├── svml_d_log1p2_core_sse4.S │ │ ├── svml_d_log1p4_core-sse.S │ │ ├── svml_d_log1p4_core.c │ │ ├── svml_d_log1p4_core_avx2.S │ │ ├── svml_d_log1p8_core-avx2.S │ │ ├── svml_d_log1p8_core.c │ │ ├── svml_d_log1p8_core_avx512.S │ │ ├── svml_d_log22_core-sse2.S │ │ ├── svml_d_log22_core.c │ │ ├── svml_d_log22_core_sse4.S │ │ ├── svml_d_log24_core-sse.S │ │ ├── svml_d_log24_core.c │ │ ├── svml_d_log24_core_avx2.S │ │ ├── svml_d_log28_core-avx2.S │ │ ├── svml_d_log28_core.c │ │ ├── svml_d_log28_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_d_sinh2_core-sse2.S │ │ ├── svml_d_sinh2_core.c │ │ ├── svml_d_sinh2_core_sse4.S │ │ ├── svml_d_sinh4_core-sse.S │ │ ├── svml_d_sinh4_core.c │ │ ├── svml_d_sinh4_core_avx2.S │ │ ├── svml_d_sinh8_core-avx2.S │ │ ├── svml_d_sinh8_core.c │ │ ├── svml_d_sinh8_core_avx512.S │ │ ├── svml_d_tan2_core-sse2.S │ │ ├── svml_d_tan2_core.c │ │ ├── svml_d_tan2_core_sse4.S │ │ ├── svml_d_tan4_core-sse.S │ │ ├── svml_d_tan4_core.c │ │ ├── svml_d_tan4_core_avx2.S │ │ ├── svml_d_tan8_core-avx2.S │ │ ├── svml_d_tan8_core.c │ │ ├── svml_d_tan8_core_avx512.S │ │ ├── svml_d_tanh2_core-sse2.S │ │ ├── svml_d_tanh2_core.c │ │ ├── svml_d_tanh2_core_sse4.S │ │ ├── svml_d_tanh4_core-sse.S │ │ ├── svml_d_tanh4_core.c │ │ ├── svml_d_tanh4_core_avx2.S │ │ ├── svml_d_tanh8_core-avx2.S │ │ ├── svml_d_tanh8_core.c │ │ ├── svml_d_tanh8_core_avx512.S │ │ ├── svml_s_acosf16_core-avx2.S │ │ ├── svml_s_acosf16_core.c │ │ ├── svml_s_acosf16_core_avx512.S │ │ ├── svml_s_acosf4_core-sse2.S │ │ ├── svml_s_acosf4_core.c │ │ ├── svml_s_acosf4_core_sse4.S │ │ ├── svml_s_acosf8_core-sse.S │ │ ├── svml_s_acosf8_core.c │ │ ├── svml_s_acosf8_core_avx2.S │ │ ├── svml_s_acoshf16_core-avx2.S │ │ ├── svml_s_acoshf16_core.c │ │ ├── svml_s_acoshf16_core_avx512.S │ │ ├── svml_s_acoshf4_core-sse2.S │ │ ├── svml_s_acoshf4_core.c │ │ ├── svml_s_acoshf4_core_sse4.S │ │ ├── svml_s_acoshf8_core-sse.S │ │ ├── svml_s_acoshf8_core.c │ │ ├── svml_s_acoshf8_core_avx2.S │ │ ├── svml_s_asinf16_core-avx2.S │ │ ├── svml_s_asinf16_core.c │ │ ├── svml_s_asinf16_core_avx512.S │ │ ├── svml_s_asinf4_core-sse2.S │ │ ├── svml_s_asinf4_core.c │ │ ├── svml_s_asinf4_core_sse4.S │ │ ├── svml_s_asinf8_core-sse.S │ │ ├── svml_s_asinf8_core.c │ │ ├── svml_s_asinf8_core_avx2.S │ │ ├── svml_s_asinhf16_core-avx2.S │ │ ├── svml_s_asinhf16_core.c │ │ ├── svml_s_asinhf16_core_avx512.S │ │ ├── svml_s_asinhf4_core-sse2.S │ │ ├── svml_s_asinhf4_core.c │ │ ├── svml_s_asinhf4_core_sse4.S │ │ ├── svml_s_asinhf8_core-sse.S │ │ ├── svml_s_asinhf8_core.c │ │ ├── svml_s_asinhf8_core_avx2.S │ │ ├── svml_s_atan2f16_core-avx2.S │ │ ├── svml_s_atan2f16_core.c │ │ ├── svml_s_atan2f16_core_avx512.S │ │ ├── svml_s_atan2f4_core-sse2.S │ │ ├── svml_s_atan2f4_core.c │ │ ├── svml_s_atan2f4_core_sse4.S │ │ ├── svml_s_atan2f8_core-sse.S │ │ ├── svml_s_atan2f8_core.c │ │ ├── svml_s_atan2f8_core_avx2.S │ │ ├── svml_s_atanf16_core-avx2.S │ │ ├── svml_s_atanf16_core.c │ │ ├── svml_s_atanf16_core_avx512.S │ │ ├── svml_s_atanf4_core-sse2.S │ │ ├── svml_s_atanf4_core.c │ │ ├── svml_s_atanf4_core_sse4.S │ │ ├── svml_s_atanf8_core-sse.S │ │ ├── svml_s_atanf8_core.c │ │ ├── svml_s_atanf8_core_avx2.S │ │ ├── svml_s_atanhf16_core-avx2.S │ │ ├── svml_s_atanhf16_core.c │ │ ├── svml_s_atanhf16_core_avx512.S │ │ ├── svml_s_atanhf4_core-sse2.S │ │ ├── svml_s_atanhf4_core.c │ │ ├── svml_s_atanhf4_core_sse4.S │ │ ├── svml_s_atanhf8_core-sse.S │ │ ├── svml_s_atanhf8_core.c │ │ ├── svml_s_atanhf8_core_avx2.S │ │ ├── svml_s_cbrtf16_core-avx2.S │ │ ├── svml_s_cbrtf16_core.c │ │ ├── svml_s_cbrtf16_core_avx512.S │ │ ├── svml_s_cbrtf4_core-sse2.S │ │ ├── svml_s_cbrtf4_core.c │ │ ├── svml_s_cbrtf4_core_sse4.S │ │ ├── svml_s_cbrtf8_core-sse.S │ │ ├── svml_s_cbrtf8_core.c │ │ ├── svml_s_cbrtf8_core_avx2.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_coshf16_core-avx2.S │ │ ├── svml_s_coshf16_core.c │ │ ├── svml_s_coshf16_core_avx512.S │ │ ├── svml_s_coshf4_core-sse2.S │ │ ├── svml_s_coshf4_core.c │ │ ├── svml_s_coshf4_core_sse4.S │ │ ├── svml_s_coshf8_core-sse.S │ │ ├── svml_s_coshf8_core.c │ │ ├── svml_s_coshf8_core_avx2.S │ │ ├── svml_s_erfcf16_core-avx2.S │ │ ├── svml_s_erfcf16_core.c │ │ ├── svml_s_erfcf16_core_avx512.S │ │ ├── svml_s_erfcf4_core-sse2.S │ │ ├── svml_s_erfcf4_core.c │ │ ├── svml_s_erfcf4_core_sse4.S │ │ ├── svml_s_erfcf8_core-sse.S │ │ ├── svml_s_erfcf8_core.c │ │ ├── svml_s_erfcf8_core_avx2.S │ │ ├── svml_s_erff16_core-avx2.S │ │ ├── svml_s_erff16_core.c │ │ ├── svml_s_erff16_core_avx512.S │ │ ├── svml_s_erff4_core-sse2.S │ │ ├── svml_s_erff4_core.c │ │ ├── svml_s_erff4_core_sse4.S │ │ ├── svml_s_erff8_core-sse.S │ │ ├── svml_s_erff8_core.c │ │ ├── svml_s_erff8_core_avx2.S │ │ ├── svml_s_exp10f16_core-avx2.S │ │ ├── svml_s_exp10f16_core.c │ │ ├── svml_s_exp10f16_core_avx512.S │ │ ├── svml_s_exp10f4_core-sse2.S │ │ ├── svml_s_exp10f4_core.c │ │ ├── svml_s_exp10f4_core_sse4.S │ │ ├── svml_s_exp10f8_core-sse.S │ │ ├── svml_s_exp10f8_core.c │ │ ├── svml_s_exp10f8_core_avx2.S │ │ ├── svml_s_exp2f16_core-avx2.S │ │ ├── svml_s_exp2f16_core.c │ │ ├── svml_s_exp2f16_core_avx512.S │ │ ├── svml_s_exp2f4_core-sse2.S │ │ ├── svml_s_exp2f4_core.c │ │ ├── svml_s_exp2f4_core_sse4.S │ │ ├── svml_s_exp2f8_core-sse.S │ │ ├── svml_s_exp2f8_core.c │ │ ├── svml_s_exp2f8_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_expm1f16_core-avx2.S │ │ ├── svml_s_expm1f16_core.c │ │ ├── svml_s_expm1f16_core_avx512.S │ │ ├── svml_s_expm1f4_core-sse2.S │ │ ├── svml_s_expm1f4_core.c │ │ ├── svml_s_expm1f4_core_sse4.S │ │ ├── svml_s_expm1f8_core-sse.S │ │ ├── svml_s_expm1f8_core.c │ │ ├── svml_s_expm1f8_core_avx2.S │ │ ├── svml_s_hypotf16_core-avx2.S │ │ ├── svml_s_hypotf16_core.c │ │ ├── svml_s_hypotf16_core_avx512.S │ │ ├── svml_s_hypotf4_core-sse2.S │ │ ├── svml_s_hypotf4_core.c │ │ ├── svml_s_hypotf4_core_sse4.S │ │ ├── svml_s_hypotf8_core-sse.S │ │ ├── svml_s_hypotf8_core.c │ │ ├── svml_s_hypotf8_core_avx2.S │ │ ├── svml_s_log10f16_core-avx2.S │ │ ├── svml_s_log10f16_core.c │ │ ├── svml_s_log10f16_core_avx512.S │ │ ├── svml_s_log10f4_core-sse2.S │ │ ├── svml_s_log10f4_core.c │ │ ├── svml_s_log10f4_core_sse4.S │ │ ├── svml_s_log10f8_core-sse.S │ │ ├── svml_s_log10f8_core.c │ │ ├── svml_s_log10f8_core_avx2.S │ │ ├── svml_s_log1pf16_core-avx2.S │ │ ├── svml_s_log1pf16_core.c │ │ ├── svml_s_log1pf16_core_avx512.S │ │ ├── svml_s_log1pf4_core-sse2.S │ │ ├── svml_s_log1pf4_core.c │ │ ├── svml_s_log1pf4_core_sse4.S │ │ ├── svml_s_log1pf8_core-sse.S │ │ ├── svml_s_log1pf8_core.c │ │ ├── svml_s_log1pf8_core_avx2.S │ │ ├── svml_s_log2f16_core-avx2.S │ │ ├── svml_s_log2f16_core.c │ │ ├── svml_s_log2f16_core_avx512.S │ │ ├── svml_s_log2f4_core-sse2.S │ │ ├── svml_s_log2f4_core.c │ │ ├── svml_s_log2f4_core_sse4.S │ │ ├── svml_s_log2f8_core-sse.S │ │ ├── svml_s_log2f8_core.c │ │ ├── svml_s_log2f8_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 │ │ ├── svml_s_sinhf16_core-avx2.S │ │ ├── svml_s_sinhf16_core.c │ │ ├── svml_s_sinhf16_core_avx512.S │ │ ├── svml_s_sinhf4_core-sse2.S │ │ ├── svml_s_sinhf4_core.c │ │ ├── svml_s_sinhf4_core_sse4.S │ │ ├── svml_s_sinhf8_core-sse.S │ │ ├── svml_s_sinhf8_core.c │ │ ├── svml_s_sinhf8_core_avx2.S │ │ ├── svml_s_tanf16_core-avx2.S │ │ ├── svml_s_tanf16_core.c │ │ ├── svml_s_tanf16_core_avx512.S │ │ ├── svml_s_tanf4_core-sse2.S │ │ ├── svml_s_tanf4_core.c │ │ ├── svml_s_tanf4_core_sse4.S │ │ ├── svml_s_tanf8_core-sse.S │ │ ├── svml_s_tanf8_core.c │ │ ├── svml_s_tanf8_core_avx2.S │ │ ├── svml_s_tanhf16_core-avx2.S │ │ ├── svml_s_tanhf16_core.c │ │ ├── svml_s_tanhf16_core_avx512.S │ │ ├── svml_s_tanhf4_core-sse2.S │ │ ├── svml_s_tanhf4_core.c │ │ ├── svml_s_tanhf4_core_sse4.S │ │ ├── svml_s_tanhf8_core-sse.S │ │ ├── svml_s_tanhf8_core.c │ │ ├── svml_s_tanhf8_core_avx2.S │ │ ├── svml_s_tanhf_rodata.S │ │ ├── w_exp.c │ │ ├── w_log.c │ │ └── w_pow.c │ ├── printf_fphex.c │ ├── s_atanl.c │ ├── s_expm1l.S │ ├── s_finitel.S │ ├── s_fmax.S │ ├── s_fmaxf.S │ ├── s_fmaxl.S │ ├── s_fmin.S │ ├── s_fminf.S │ ├── s_fminl.S │ ├── s_isinfl.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 │ ├── scripts │ │ └── bench_libmvec.py │ ├── svml_d_acos2_core.S │ ├── svml_d_acos4_core.S │ ├── svml_d_acos4_core_avx.S │ ├── svml_d_acos8_core.S │ ├── svml_d_acosh2_core.S │ ├── svml_d_acosh4_core.S │ ├── svml_d_acosh4_core_avx.S │ ├── svml_d_acosh8_core.S │ ├── svml_d_asin2_core.S │ ├── svml_d_asin4_core.S │ ├── svml_d_asin4_core_avx.S │ ├── svml_d_asin8_core.S │ ├── svml_d_asinh2_core.S │ ├── svml_d_asinh4_core.S │ ├── svml_d_asinh4_core_avx.S │ ├── svml_d_asinh8_core.S │ ├── svml_d_atan22_core.S │ ├── svml_d_atan24_core.S │ ├── svml_d_atan24_core_avx.S │ ├── svml_d_atan28_core.S │ ├── svml_d_atan2_core.S │ ├── svml_d_atan4_core.S │ ├── svml_d_atan4_core_avx.S │ ├── svml_d_atan8_core.S │ ├── svml_d_atanh2_core.S │ ├── svml_d_atanh4_core.S │ ├── svml_d_atanh4_core_avx.S │ ├── svml_d_atanh8_core.S │ ├── svml_d_cbrt2_core.S │ ├── svml_d_cbrt4_core.S │ ├── svml_d_cbrt4_core_avx.S │ ├── svml_d_cbrt8_core.S │ ├── svml_d_cos2_core.S │ ├── svml_d_cos4_core.S │ ├── svml_d_cos4_core_avx.S │ ├── svml_d_cos8_core.S │ ├── svml_d_cosh2_core.S │ ├── svml_d_cosh4_core.S │ ├── svml_d_cosh4_core_avx.S │ ├── svml_d_cosh8_core.S │ ├── svml_d_erf2_core.S │ ├── svml_d_erf4_core.S │ ├── svml_d_erf4_core_avx.S │ ├── svml_d_erf8_core.S │ ├── svml_d_erfc2_core.S │ ├── svml_d_erfc4_core.S │ ├── svml_d_erfc4_core_avx.S │ ├── svml_d_erfc8_core.S │ ├── svml_d_exp102_core.S │ ├── svml_d_exp104_core.S │ ├── svml_d_exp104_core_avx.S │ ├── svml_d_exp108_core.S │ ├── svml_d_exp22_core.S │ ├── svml_d_exp24_core.S │ ├── svml_d_exp24_core_avx.S │ ├── svml_d_exp28_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_expm12_core.S │ ├── svml_d_expm14_core.S │ ├── svml_d_expm14_core_avx.S │ ├── svml_d_expm18_core.S │ ├── svml_d_hypot2_core.S │ ├── svml_d_hypot4_core.S │ ├── svml_d_hypot4_core_avx.S │ ├── svml_d_hypot8_core.S │ ├── svml_d_log102_core.S │ ├── svml_d_log104_core.S │ ├── svml_d_log104_core_avx.S │ ├── svml_d_log108_core.S │ ├── svml_d_log1p2_core.S │ ├── svml_d_log1p4_core.S │ ├── svml_d_log1p4_core_avx.S │ ├── svml_d_log1p8_core.S │ ├── svml_d_log22_core.S │ ├── svml_d_log24_core.S │ ├── svml_d_log24_core_avx.S │ ├── svml_d_log28_core.S │ ├── 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_sinh2_core.S │ ├── svml_d_sinh4_core.S │ ├── svml_d_sinh4_core_avx.S │ ├── svml_d_sinh8_core.S │ ├── svml_d_tan2_core.S │ ├── svml_d_tan4_core.S │ ├── svml_d_tan4_core_avx.S │ ├── svml_d_tan8_core.S │ ├── svml_d_tanh2_core.S │ ├── svml_d_tanh4_core.S │ ├── svml_d_tanh4_core_avx.S │ ├── svml_d_tanh8_core.S │ ├── svml_d_trig_data.S │ ├── svml_d_trig_data.h │ ├── svml_d_wrapper_impl.h │ ├── svml_s_acosf16_core.S │ ├── svml_s_acosf4_core.S │ ├── svml_s_acosf8_core.S │ ├── svml_s_acosf8_core_avx.S │ ├── svml_s_acoshf16_core.S │ ├── svml_s_acoshf4_core.S │ ├── svml_s_acoshf8_core.S │ ├── svml_s_acoshf8_core_avx.S │ ├── svml_s_asinf16_core.S │ ├── svml_s_asinf4_core.S │ ├── svml_s_asinf8_core.S │ ├── svml_s_asinf8_core_avx.S │ ├── svml_s_asinhf16_core.S │ ├── svml_s_asinhf4_core.S │ ├── svml_s_asinhf8_core.S │ ├── svml_s_asinhf8_core_avx.S │ ├── svml_s_atan2f16_core.S │ ├── svml_s_atan2f4_core.S │ ├── svml_s_atan2f8_core.S │ ├── svml_s_atan2f8_core_avx.S │ ├── svml_s_atanf16_core.S │ ├── svml_s_atanf4_core.S │ ├── svml_s_atanf8_core.S │ ├── svml_s_atanf8_core_avx.S │ ├── svml_s_atanhf16_core.S │ ├── svml_s_atanhf4_core.S │ ├── svml_s_atanhf8_core.S │ ├── svml_s_atanhf8_core_avx.S │ ├── svml_s_cbrtf16_core.S │ ├── svml_s_cbrtf4_core.S │ ├── svml_s_cbrtf8_core.S │ ├── svml_s_cbrtf8_core_avx.S │ ├── svml_s_cosf16_core.S │ ├── svml_s_cosf4_core.S │ ├── svml_s_cosf8_core.S │ ├── svml_s_cosf8_core_avx.S │ ├── svml_s_coshf16_core.S │ ├── svml_s_coshf4_core.S │ ├── svml_s_coshf8_core.S │ ├── svml_s_coshf8_core_avx.S │ ├── svml_s_erfcf16_core.S │ ├── svml_s_erfcf4_core.S │ ├── svml_s_erfcf8_core.S │ ├── svml_s_erfcf8_core_avx.S │ ├── svml_s_erff16_core.S │ ├── svml_s_erff4_core.S │ ├── svml_s_erff8_core.S │ ├── svml_s_erff8_core_avx.S │ ├── svml_s_exp10f16_core.S │ ├── svml_s_exp10f4_core.S │ ├── svml_s_exp10f8_core.S │ ├── svml_s_exp10f8_core_avx.S │ ├── svml_s_exp2f16_core.S │ ├── svml_s_exp2f4_core.S │ ├── svml_s_exp2f8_core.S │ ├── svml_s_exp2f8_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_expm1f16_core.S │ ├── svml_s_expm1f4_core.S │ ├── svml_s_expm1f8_core.S │ ├── svml_s_expm1f8_core_avx.S │ ├── svml_s_hypotf16_core.S │ ├── svml_s_hypotf4_core.S │ ├── svml_s_hypotf8_core.S │ ├── svml_s_hypotf8_core_avx.S │ ├── svml_s_log10f16_core.S │ ├── svml_s_log10f4_core.S │ ├── svml_s_log10f8_core.S │ ├── svml_s_log10f8_core_avx.S │ ├── svml_s_log1pf16_core.S │ ├── svml_s_log1pf4_core.S │ ├── svml_s_log1pf8_core.S │ ├── svml_s_log1pf8_core_avx.S │ ├── svml_s_log2f16_core.S │ ├── svml_s_log2f4_core.S │ ├── svml_s_log2f8_core.S │ ├── svml_s_log2f8_core_avx.S │ ├── 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_sinhf16_core.S │ ├── svml_s_sinhf4_core.S │ ├── svml_s_sinhf8_core.S │ ├── svml_s_sinhf8_core_avx.S │ ├── svml_s_tanf16_core.S │ ├── svml_s_tanf4_core.S │ ├── svml_s_tanf8_core.S │ ├── svml_s_tanf8_core_avx.S │ ├── svml_s_tanhf16_core.S │ ├── svml_s_tanhf4_core.S │ ├── svml_s_tanhf8_core.S │ ├── svml_s_tanhf8_core_avx.S │ ├── svml_s_trig_data.S │ ├── svml_s_trig_data.h │ ├── svml_s_wrapper_impl.h │ ├── svml_sd_wrapper_impl.h │ ├── test-double-libmvec-acos-avx.c │ ├── test-double-libmvec-acos-avx2.c │ ├── test-double-libmvec-acos-avx512f.c │ ├── test-double-libmvec-acos.c │ ├── test-double-libmvec-acosh-avx.c │ ├── test-double-libmvec-acosh-avx2.c │ ├── test-double-libmvec-acosh-avx512f.c │ ├── test-double-libmvec-acosh.c │ ├── test-double-libmvec-asin-avx.c │ ├── test-double-libmvec-asin-avx2.c │ ├── test-double-libmvec-asin-avx512f.c │ ├── test-double-libmvec-asin.c │ ├── test-double-libmvec-asinh-avx.c │ ├── test-double-libmvec-asinh-avx2.c │ ├── test-double-libmvec-asinh-avx512f.c │ ├── test-double-libmvec-asinh.c │ ├── test-double-libmvec-atan-avx.c │ ├── test-double-libmvec-atan-avx2.c │ ├── test-double-libmvec-atan-avx512f.c │ ├── test-double-libmvec-atan.c │ ├── test-double-libmvec-atan2-avx.c │ ├── test-double-libmvec-atan2-avx2.c │ ├── test-double-libmvec-atan2-avx512f.c │ ├── test-double-libmvec-atan2.c │ ├── test-double-libmvec-atanh-avx.c │ ├── test-double-libmvec-atanh-avx2.c │ ├── test-double-libmvec-atanh-avx512f.c │ ├── test-double-libmvec-atanh.c │ ├── test-double-libmvec-cbrt-avx.c │ ├── test-double-libmvec-cbrt-avx2.c │ ├── test-double-libmvec-cbrt-avx512f.c │ ├── test-double-libmvec-cbrt.c │ ├── test-double-libmvec-cos-avx.c │ ├── test-double-libmvec-cos-avx2.c │ ├── test-double-libmvec-cos-avx512f.c │ ├── test-double-libmvec-cos.c │ ├── test-double-libmvec-cosh-avx.c │ ├── test-double-libmvec-cosh-avx2.c │ ├── test-double-libmvec-cosh-avx512f.c │ ├── test-double-libmvec-cosh.c │ ├── test-double-libmvec-erf-avx.c │ ├── test-double-libmvec-erf-avx2.c │ ├── test-double-libmvec-erf-avx512f.c │ ├── test-double-libmvec-erf.c │ ├── test-double-libmvec-erfc-avx.c │ ├── test-double-libmvec-erfc-avx2.c │ ├── test-double-libmvec-erfc-avx512f.c │ ├── test-double-libmvec-erfc.c │ ├── test-double-libmvec-exp-avx.c │ ├── test-double-libmvec-exp-avx2.c │ ├── test-double-libmvec-exp-avx512f.c │ ├── test-double-libmvec-exp.c │ ├── test-double-libmvec-exp10-avx.c │ ├── test-double-libmvec-exp10-avx2.c │ ├── test-double-libmvec-exp10-avx512f.c │ ├── test-double-libmvec-exp10.c │ ├── test-double-libmvec-exp2-avx.c │ ├── test-double-libmvec-exp2-avx2.c │ ├── test-double-libmvec-exp2-avx512f.c │ ├── test-double-libmvec-exp2.c │ ├── test-double-libmvec-expm1-avx.c │ ├── test-double-libmvec-expm1-avx2.c │ ├── test-double-libmvec-expm1-avx512f.c │ ├── test-double-libmvec-expm1.c │ ├── test-double-libmvec-hypot-avx.c │ ├── test-double-libmvec-hypot-avx2.c │ ├── test-double-libmvec-hypot-avx512f.c │ ├── test-double-libmvec-hypot.c │ ├── test-double-libmvec-log-avx.c │ ├── test-double-libmvec-log-avx2.c │ ├── test-double-libmvec-log-avx512f.c │ ├── test-double-libmvec-log.c │ ├── test-double-libmvec-log10-avx.c │ ├── test-double-libmvec-log10-avx2.c │ ├── test-double-libmvec-log10-avx512f.c │ ├── test-double-libmvec-log10.c │ ├── test-double-libmvec-log1p-avx.c │ ├── test-double-libmvec-log1p-avx2.c │ ├── test-double-libmvec-log1p-avx512f.c │ ├── test-double-libmvec-log1p.c │ ├── test-double-libmvec-log2-avx.c │ ├── test-double-libmvec-log2-avx2.c │ ├── test-double-libmvec-log2-avx512f.c │ ├── test-double-libmvec-log2.c │ ├── test-double-libmvec-pow-avx.c │ ├── test-double-libmvec-pow-avx2.c │ ├── test-double-libmvec-pow-avx512f.c │ ├── test-double-libmvec-pow.c │ ├── test-double-libmvec-sin-avx.c │ ├── test-double-libmvec-sin-avx2.c │ ├── test-double-libmvec-sin-avx512f.c │ ├── test-double-libmvec-sin.c │ ├── test-double-libmvec-sincos-avx.c │ ├── test-double-libmvec-sincos-avx2.c │ ├── test-double-libmvec-sincos-avx512f.c │ ├── test-double-libmvec-sincos.c │ ├── test-double-libmvec-sinh-avx.c │ ├── test-double-libmvec-sinh-avx2.c │ ├── test-double-libmvec-sinh-avx512f.c │ ├── test-double-libmvec-sinh.c │ ├── test-double-libmvec-tan-avx.c │ ├── test-double-libmvec-tan-avx2.c │ ├── test-double-libmvec-tan-avx512f.c │ ├── test-double-libmvec-tan.c │ ├── test-double-libmvec-tanh-avx.c │ ├── test-double-libmvec-tanh-avx2.c │ ├── test-double-libmvec-tanh-avx512f.c │ ├── test-double-libmvec-tanh.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-acosf-avx.c │ ├── test-float-libmvec-acosf-avx2.c │ ├── test-float-libmvec-acosf-avx512f.c │ ├── test-float-libmvec-acosf.c │ ├── test-float-libmvec-acoshf-avx.c │ ├── test-float-libmvec-acoshf-avx2.c │ ├── test-float-libmvec-acoshf-avx512f.c │ ├── test-float-libmvec-acoshf.c │ ├── test-float-libmvec-asinf-avx.c │ ├── test-float-libmvec-asinf-avx2.c │ ├── test-float-libmvec-asinf-avx512f.c │ ├── test-float-libmvec-asinf.c │ ├── test-float-libmvec-asinhf-avx.c │ ├── test-float-libmvec-asinhf-avx2.c │ ├── test-float-libmvec-asinhf-avx512f.c │ ├── test-float-libmvec-asinhf.c │ ├── test-float-libmvec-atan2f-avx.c │ ├── test-float-libmvec-atan2f-avx2.c │ ├── test-float-libmvec-atan2f-avx512f.c │ ├── test-float-libmvec-atan2f.c │ ├── test-float-libmvec-atanf-avx.c │ ├── test-float-libmvec-atanf-avx2.c │ ├── test-float-libmvec-atanf-avx512f.c │ ├── test-float-libmvec-atanf.c │ ├── test-float-libmvec-atanhf-avx.c │ ├── test-float-libmvec-atanhf-avx2.c │ ├── test-float-libmvec-atanhf-avx512f.c │ ├── test-float-libmvec-atanhf.c │ ├── test-float-libmvec-cbrtf-avx.c │ ├── test-float-libmvec-cbrtf-avx2.c │ ├── test-float-libmvec-cbrtf-avx512f.c │ ├── test-float-libmvec-cbrtf.c │ ├── test-float-libmvec-cosf-avx.c │ ├── test-float-libmvec-cosf-avx2.c │ ├── test-float-libmvec-cosf-avx512f.c │ ├── test-float-libmvec-cosf.c │ ├── test-float-libmvec-coshf-avx.c │ ├── test-float-libmvec-coshf-avx2.c │ ├── test-float-libmvec-coshf-avx512f.c │ ├── test-float-libmvec-coshf.c │ ├── test-float-libmvec-erfcf-avx.c │ ├── test-float-libmvec-erfcf-avx2.c │ ├── test-float-libmvec-erfcf-avx512f.c │ ├── test-float-libmvec-erfcf.c │ ├── test-float-libmvec-erff-avx.c │ ├── test-float-libmvec-erff-avx2.c │ ├── test-float-libmvec-erff-avx512f.c │ ├── test-float-libmvec-erff.c │ ├── test-float-libmvec-exp10f-avx.c │ ├── test-float-libmvec-exp10f-avx2.c │ ├── test-float-libmvec-exp10f-avx512f.c │ ├── test-float-libmvec-exp10f.c │ ├── test-float-libmvec-exp2f-avx.c │ ├── test-float-libmvec-exp2f-avx2.c │ ├── test-float-libmvec-exp2f-avx512f.c │ ├── test-float-libmvec-exp2f.c │ ├── test-float-libmvec-expf-avx.c │ ├── test-float-libmvec-expf-avx2.c │ ├── test-float-libmvec-expf-avx512f.c │ ├── test-float-libmvec-expf.c │ ├── test-float-libmvec-expm1f-avx.c │ ├── test-float-libmvec-expm1f-avx2.c │ ├── test-float-libmvec-expm1f-avx512f.c │ ├── test-float-libmvec-expm1f.c │ ├── test-float-libmvec-hypotf-avx.c │ ├── test-float-libmvec-hypotf-avx2.c │ ├── test-float-libmvec-hypotf-avx512f.c │ ├── test-float-libmvec-hypotf.c │ ├── test-float-libmvec-log10f-avx.c │ ├── test-float-libmvec-log10f-avx2.c │ ├── test-float-libmvec-log10f-avx512f.c │ ├── test-float-libmvec-log10f.c │ ├── test-float-libmvec-log1pf-avx.c │ ├── test-float-libmvec-log1pf-avx2.c │ ├── test-float-libmvec-log1pf-avx512f.c │ ├── test-float-libmvec-log1pf.c │ ├── test-float-libmvec-log2f-avx.c │ ├── test-float-libmvec-log2f-avx2.c │ ├── test-float-libmvec-log2f-avx512f.c │ ├── test-float-libmvec-log2f.c │ ├── test-float-libmvec-logf-avx.c │ ├── test-float-libmvec-logf-avx2.c │ ├── test-float-libmvec-logf-avx512f.c │ ├── test-float-libmvec-logf.c │ ├── test-float-libmvec-powf-avx.c │ ├── test-float-libmvec-powf-avx2.c │ ├── test-float-libmvec-powf-avx512f.c │ ├── test-float-libmvec-powf.c │ ├── test-float-libmvec-sincosf-avx.c │ ├── test-float-libmvec-sincosf-avx2.c │ ├── test-float-libmvec-sincosf-avx512f.c │ ├── test-float-libmvec-sincosf.c │ ├── test-float-libmvec-sinf-avx.c │ ├── test-float-libmvec-sinf-avx2.c │ ├── test-float-libmvec-sinf-avx512f.c │ ├── test-float-libmvec-sinf.c │ ├── test-float-libmvec-sinhf-avx.c │ ├── test-float-libmvec-sinhf-avx2.c │ ├── test-float-libmvec-sinhf-avx512f.c │ ├── test-float-libmvec-sinhf.c │ ├── test-float-libmvec-tanf-avx.c │ ├── test-float-libmvec-tanf-avx2.c │ ├── test-float-libmvec-tanf-avx512f.c │ ├── test-float-libmvec-tanf.c │ ├── test-float-libmvec-tanhf-avx.c │ ├── test-float-libmvec-tanhf-avx2.c │ ├── test-float-libmvec-tanhf-avx512f.c │ ├── test-float-libmvec-tanhf.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-avx.c │ ├── test-libmvec-avx2.c │ ├── test-libmvec-avx512f.c │ ├── test-libmvec.c │ ├── test-vector-abi-arg1.h │ ├── test-vector-abi-arg2.h │ ├── test-vector-abi-sincos.h │ ├── test-vector-abi.h │ └── x86_64-math-asm.h │ ├── htl │ ├── Implies │ ├── Makefile │ ├── bits │ │ └── pthreadtypes-arch.h │ ├── machine-sp.h │ └── tcb-offsets.sym │ ├── ifuncmain8.c │ ├── ifuncmod8.c │ ├── isa-default-impl.h │ ├── isa.h │ ├── jmpbuf-offsets.h │ ├── jmpbuf-unwind.h │ ├── l10nflist.c │ ├── ldsodefs.h │ ├── libc-start.h │ ├── link-defines.sym │ ├── link_map.h │ ├── locale-defines.sym │ ├── localplt.data │ ├── lshift.S │ ├── machine-gmon.h │ ├── math-use-builtins-ffs.h │ ├── memchr.S │ ├── memcmp.S │ ├── memcmpeq.S │ ├── memcpy.S │ ├── memcpy_chk.S │ ├── memmove.S │ ├── memmove_chk.S │ ├── mempcpy.S │ ├── mempcpy_chk.S │ ├── memrchr.S │ ├── memset.S │ ├── memset_chk.S │ ├── mul_1.S │ ├── multiarch │ ├── Makefile │ ├── dl-symbol-redir-ifunc.h │ ├── ifunc-avx2.h │ ├── ifunc-evex.h │ ├── ifunc-impl-list.c │ ├── ifunc-memcmp.h │ ├── ifunc-memcmpeq.h │ ├── ifunc-memmove.h │ ├── ifunc-memset.h │ ├── ifunc-sse4_2.h │ ├── ifunc-strcasecmp.h │ ├── ifunc-strcpy.h │ ├── ifunc-strncpy.h │ ├── ifunc-wcs.h │ ├── ifunc-wcslen.h │ ├── ifunc-wmemset.h │ ├── memchr-avx2-rtm.S │ ├── memchr-avx2.S │ ├── memchr-evex-base.S │ ├── memchr-evex-rtm.S │ ├── memchr-evex.S │ ├── memchr-evex512.S │ ├── memchr-sse2.S │ ├── memchr.c │ ├── memcmp-avx2-movbe-rtm.S │ ├── memcmp-avx2-movbe.S │ ├── memcmp-evex-movbe.S │ ├── memcmp-sse2.S │ ├── memcmp.c │ ├── memcmpeq-avx2-rtm.S │ ├── memcmpeq-avx2.S │ ├── memcmpeq-evex.S │ ├── memcmpeq-sse2.S │ ├── memcmpeq.c │ ├── memcpy.c │ ├── memcpy_chk-nonshared.S │ ├── memcpy_chk.c │ ├── memmove-avx-unaligned-erms-rtm.S │ ├── memmove-avx-unaligned-erms.S │ ├── memmove-avx512-no-vzeroupper.S │ ├── memmove-avx512-unaligned-erms.S │ ├── memmove-erms.S │ ├── memmove-evex-unaligned-erms.S │ ├── memmove-shlib-compat.h │ ├── memmove-sse2-unaligned-erms.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-rtm.S │ ├── memrchr-avx2.S │ ├── memrchr-evex.S │ ├── memrchr-sse2.S │ ├── memrchr.c │ ├── memset-avx2-unaligned-erms-rtm.S │ ├── memset-avx2-unaligned-erms.S │ ├── memset-avx512-no-vzeroupper.S │ ├── memset-avx512-unaligned-erms.S │ ├── memset-erms.S │ ├── memset-evex-unaligned-erms.S │ ├── memset-sse2-unaligned-erms.S │ ├── memset-vec-unaligned-erms.S │ ├── memset.c │ ├── memset_chk-nonshared.S │ ├── memset_chk.c │ ├── rawmemchr-avx2-rtm.S │ ├── rawmemchr-avx2.S │ ├── rawmemchr-evex-rtm.S │ ├── rawmemchr-evex.S │ ├── rawmemchr-evex512.S │ ├── rawmemchr-sse2.S │ ├── rawmemchr.c │ ├── reg-macros.h │ ├── rtld-memchr.S │ ├── rtld-memcmp.S │ ├── rtld-memcmpeq.S │ ├── rtld-memmove.S │ ├── rtld-memset.S │ ├── rtld-rawmemchr.S │ ├── rtld-stpcpy.S │ ├── rtld-stpncpy.S │ ├── rtld-strchr.S │ ├── rtld-strchrnul.S │ ├── rtld-strcmp.S │ ├── rtld-strcpy.S │ ├── rtld-strcspn.c │ ├── rtld-strlen.S │ ├── rtld-strncmp.S │ ├── rtld-strncpy.S │ ├── rtld-strnlen.S │ ├── scripts │ │ └── gen-reg-macros.py │ ├── stpcpy-avx2-rtm.S │ ├── stpcpy-avx2.S │ ├── stpcpy-evex.S │ ├── stpcpy-sse2-unaligned.S │ ├── stpcpy-sse2.S │ ├── stpcpy.c │ ├── stpncpy-avx2-rtm.S │ ├── stpncpy-avx2.S │ ├── stpncpy-evex.S │ ├── stpncpy-sse2-unaligned.S │ ├── stpncpy.c │ ├── strcasecmp.c │ ├── strcasecmp_l-avx2-rtm.S │ ├── strcasecmp_l-avx2.S │ ├── strcasecmp_l-evex.S │ ├── strcasecmp_l-sse2.S │ ├── strcasecmp_l-sse4_2.S │ ├── strcasecmp_l.c │ ├── strcat-avx2-rtm.S │ ├── strcat-avx2.S │ ├── strcat-evex.S │ ├── strcat-sse2-unaligned.S │ ├── strcat-sse2.S │ ├── strcat-strlen-avx2.h.S │ ├── strcat-strlen-evex.h.S │ ├── strcat.c │ ├── strchr-avx2-rtm.S │ ├── strchr-avx2.S │ ├── strchr-evex-base.S │ ├── strchr-evex.S │ ├── strchr-evex512.S │ ├── strchr-sse2-no-bsf.S │ ├── strchr-sse2.S │ ├── strchr.c │ ├── strchrnul-avx2-rtm.S │ ├── strchrnul-avx2.S │ ├── strchrnul-evex.S │ ├── strchrnul-evex512.S │ ├── strchrnul-sse2.S │ ├── strchrnul.c │ ├── strcmp-avx2-rtm.S │ ├── strcmp-avx2.S │ ├── strcmp-evex.S │ ├── strcmp-naming.h │ ├── strcmp-sse2-unaligned.S │ ├── strcmp-sse2.S │ ├── strcmp-sse4_2.S │ ├── strcmp.c │ ├── strcpy-avx2-rtm.S │ ├── strcpy-avx2.S │ ├── strcpy-evex.S │ ├── strcpy-sse2-unaligned.S │ ├── strcpy-sse2.S │ ├── strcpy.c │ ├── strcspn-generic.c │ ├── strcspn-sse4.c │ ├── strcspn.c │ ├── strlen-avx2-rtm.S │ ├── strlen-avx2.S │ ├── strlen-evex-base.S │ ├── strlen-evex.S │ ├── strlen-evex512.S │ ├── strlen-sse2.S │ ├── strlen.c │ ├── strncase.c │ ├── strncase_l-avx2-rtm.S │ ├── strncase_l-avx2.S │ ├── strncase_l-evex.S │ ├── strncase_l-sse2.S │ ├── strncase_l-sse4_2.S │ ├── strncase_l.c │ ├── strncat-avx2-rtm.S │ ├── strncat-avx2.S │ ├── strncat-evex.S │ ├── strncat-sse2-unaligned.S │ ├── strncat.c │ ├── strncmp-avx2-rtm.S │ ├── strncmp-avx2.S │ ├── strncmp-evex.S │ ├── strncmp-sse2.S │ ├── strncmp-sse4_2.S │ ├── strncmp.c │ ├── strncpy-avx2-rtm.S │ ├── strncpy-avx2.S │ ├── strncpy-evex.S │ ├── strncpy-or-cat-overflow-def.h │ ├── strncpy-sse2-unaligned.S │ ├── strncpy.c │ ├── strnlen-avx2-rtm.S │ ├── strnlen-avx2.S │ ├── strnlen-evex-base.S │ ├── strnlen-evex.S │ ├── strnlen-evex512.S │ ├── strnlen-sse2.S │ ├── strnlen.c │ ├── strpbrk-generic.c │ ├── strpbrk-sse4.c │ ├── strpbrk.c │ ├── strrchr-avx2-rtm.S │ ├── strrchr-avx2.S │ ├── strrchr-evex-base.S │ ├── strrchr-evex.S │ ├── strrchr-evex512.S │ ├── strrchr-sse2.S │ ├── strrchr.c │ ├── strspn-generic.c │ ├── strspn-sse4.c │ ├── strspn.c │ ├── strstr-sse2-unaligned.S │ ├── strstr.c │ ├── varshift.c │ ├── varshift.h │ ├── wcpcpy-avx2.S │ ├── wcpcpy-evex.S │ ├── wcpcpy-generic.c │ ├── wcpcpy.c │ ├── wcpncpy-avx2.S │ ├── wcpncpy-evex.S │ ├── wcpncpy-generic.c │ ├── wcpncpy.c │ ├── wcscat-avx2.S │ ├── wcscat-evex.S │ ├── wcscat-generic.c │ ├── wcscat.c │ ├── wcschr-avx2-rtm.S │ ├── wcschr-avx2.S │ ├── wcschr-evex.S │ ├── wcschr-evex512.S │ ├── wcschr-sse2.S │ ├── wcschr.c │ ├── wcscmp-avx2-rtm.S │ ├── wcscmp-avx2.S │ ├── wcscmp-evex.S │ ├── wcscmp-sse2.S │ ├── wcscmp.c │ ├── wcscpy-avx2.S │ ├── wcscpy-evex.S │ ├── wcscpy-generic.c │ ├── wcscpy-ssse3.S │ ├── wcscpy.c │ ├── wcslen-avx2-rtm.S │ ├── wcslen-avx2.S │ ├── wcslen-evex.S │ ├── wcslen-evex512.S │ ├── wcslen-sse2.S │ ├── wcslen-sse4_1.S │ ├── wcslen.c │ ├── wcsncat-avx2.S │ ├── wcsncat-evex.S │ ├── wcsncat-generic.c │ ├── wcsncat.c │ ├── wcsncmp-avx2-rtm.S │ ├── wcsncmp-avx2.S │ ├── wcsncmp-evex.S │ ├── wcsncmp-generic.c │ ├── wcsncmp.c │ ├── wcsncpy-avx2.S │ ├── wcsncpy-evex.S │ ├── wcsncpy-generic.c │ ├── wcsncpy.c │ ├── wcsnlen-avx2-rtm.S │ ├── wcsnlen-avx2.S │ ├── wcsnlen-evex.S │ ├── wcsnlen-evex512.S │ ├── wcsnlen-generic.c │ ├── wcsnlen-sse4_1.S │ ├── wcsnlen.c │ ├── wcsrchr-avx2-rtm.S │ ├── wcsrchr-avx2.S │ ├── wcsrchr-evex.S │ ├── wcsrchr-evex512.S │ ├── wcsrchr-sse2.S │ ├── wcsrchr.c │ ├── wmemchr-avx2-rtm.S │ ├── wmemchr-avx2.S │ ├── wmemchr-evex-rtm.S │ ├── wmemchr-evex.S │ ├── wmemchr-evex512.S │ ├── wmemchr-sse2.S │ ├── wmemchr.c │ ├── wmemcmp-avx2-movbe-rtm.S │ ├── wmemcmp-avx2-movbe.S │ ├── wmemcmp-evex-movbe.S │ ├── wmemcmp-sse2.S │ ├── wmemcmp.c │ ├── wmemset.c │ ├── wmemset_chk-nonshared.S │ ├── wmemset_chk.c │ ├── x86-avx-rtm-vecs.h │ ├── x86-avx-vecs.h │ ├── x86-evex-vecs-common.h │ ├── x86-evex256-vecs.h │ ├── x86-evex512-vecs.h │ ├── x86-sse2-vecs.h │ └── x86-vec-macros.h │ ├── nptl │ ├── Makefile │ ├── pthread-offsets.h │ ├── pthread_mutex_backoff.h │ ├── pthread_spin_init.c │ ├── pthread_spin_lock.S │ ├── pthread_spin_trylock.S │ ├── pthread_spin_unlock.S │ ├── tcb-access.h │ ├── tcb-offsets.sym │ ├── tls.h │ └── tst-x86-64-tls-1.c │ ├── preconfigure │ ├── preconfigure.ac │ ├── rawmemchr.S │ ├── rshift.S │ ├── rtld-offsets.sym │ ├── setjmp.S │ ├── stackguard-macros.h │ ├── stackinfo.h │ ├── start.S │ ├── stpcpy.S │ ├── stpncpy.S │ ├── strcasecmp.S │ ├── strcasecmp_l-nonascii.c │ ├── strcasecmp_l.S │ ├── strcat.S │ ├── strchr-isa-default-impl.h │ ├── strchr.S │ ├── strchrnul.S │ ├── strcmp.S │ ├── strcpy.S │ ├── strcspn-generic.c │ ├── strcspn.c │ ├── strlen.S │ ├── strncase.S │ ├── strncase_l-nonascii.c │ ├── strncase_l.S │ ├── strncat.S │ ├── strncmp.S │ ├── strncpy.S │ ├── strnlen.S │ ├── strpbrk-generic.c │ ├── strpbrk.c │ ├── strrchr.S │ ├── strspn-generic.c │ ├── strspn.c │ ├── sub_n.S │ ├── submul_1.S │ ├── sys │ └── ucontext.h │ ├── sysdep.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-cet-legacy-1.c │ ├── tst-cet-legacy-10-static.c │ ├── tst-cet-legacy-10.c │ ├── tst-cet-legacy-10a-static.c │ ├── tst-cet-legacy-10a.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-7.c │ ├── tst-cet-legacy-8.c │ ├── tst-cet-legacy-9-static.c │ ├── tst-cet-legacy-9.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-glibc-hwcaps.c │ ├── tst-gnu2-tls2mod1.S │ ├── tst-platform-1.c │ ├── tst-platformmod-1.c │ ├── tst-platformmod-2.c │ ├── tst-plt-rewrite1.c │ ├── tst-plt-rewrite2.c │ ├── tst-plt-rewritemod1.c │ ├── tst-plt-rewritemod2.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-rsi-strlen.c │ ├── tst-rsi-wcslen.c │ ├── tst-shstk-legacy-1-extra.S │ ├── tst-shstk-legacy-1a-static.c │ ├── tst-shstk-legacy-1a.c │ ├── tst-shstk-legacy-1b-static.c │ ├── tst-shstk-legacy-1b.c │ ├── tst-shstk-legacy-1c-static.c │ ├── tst-shstk-legacy-1c.c │ ├── tst-shstk-legacy-1d-static.c │ ├── tst-shstk-legacy-1d.c │ ├── tst-shstk-legacy-1e-static.c │ ├── tst-shstk-legacy-1e-static.sh │ ├── tst-shstk-legacy-1e.c │ ├── tst-shstk-legacy-1e.sh │ ├── tst-shstk-legacy-1f.c │ ├── tst-shstk-legacy-1g.c │ ├── tst-shstk-legacy-1g.sh │ ├── tst-shstk-legacy-mod-1.c │ ├── tst-split-dynreloc.c │ ├── tst-split-dynreloc.lds │ ├── tst-sse.c │ ├── tst-ssemod.c │ ├── varshift.c │ ├── wcpcpy-generic.c │ ├── wcpcpy.S │ ├── wcpncpy-generic.c │ ├── wcpncpy.S │ ├── wcscat-generic.c │ ├── wcscat.S │ ├── wcschr.S │ ├── wcscmp.S │ ├── wcscpy-generic.c │ ├── wcscpy.S │ ├── wcslen.S │ ├── wcsncat-generic.c │ ├── wcsncat.S │ ├── wcsncmp-generic.c │ ├── wcsncmp.S │ ├── wcsncpy-generic.c │ ├── wcsncpy.S │ ├── wcsnlen-generic.c │ ├── wcsnlen.S │ ├── wcsrchr.S │ ├── wmemchr.S │ ├── wmemcmp.S │ ├── wmemset.S │ ├── wmemset_chk.S │ ├── wordcopy.c │ ├── x32 │ ├── Implies-after │ ├── Makefile │ ├── _itoa.h │ ├── divdi3.c │ ├── dl-tls.h │ ├── fpu │ │ ├── s_lrint.S │ │ ├── s_lrintf.S │ │ └── s_lrintl.S │ ├── gmp-mparam.h │ ├── nptl │ │ └── rseq-access.h │ ├── string-optype.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-strncat.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 │ └── x86-lp_size.h │ └── x86-lp_size.h ├── 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-sysvipc.h ├── test-sysvmsg-time64.c ├── test-sysvmsg.c ├── test-sysvsem-time64.c ├── test-sysvsem.c ├── test-sysvshm-time64.c └── test-sysvshm.c ├── termios ├── Makefile ├── Versions ├── baud.c ├── cfmakeraw.c ├── cfsetbaud.c ├── cfsetspeed.c ├── isatty.c ├── isatty_nostatus.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_timeb.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 ├── clock_getcpuclockid.c ├── clock_getres.c ├── clock_gettime.c ├── clock_nanosleep.c ├── clock_settime.c ├── clocktest.c ├── ctime.c ├── ctime_r.c ├── 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 ├── settimezone.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 ├── timespec_getres.c ├── tst-adjtime-time64.c ├── tst-adjtime.c ├── tst-clock-time64.c ├── tst-clock.c ├── tst-clock2-time64.c ├── tst-clock2.c ├── tst-clock_gettime-time64.c ├── tst-clock_gettime.c ├── tst-clock_nanosleep-time64.c ├── tst-clock_nanosleep.c ├── tst-clock_settime-time64.c ├── tst-clock_settime.c ├── tst-cpuclock1-time64.c ├── tst-cpuclock1.c ├── tst-ctime-time64.c ├── tst-ctime.c ├── tst-difftime-time64.c ├── tst-difftime.c ├── tst-ftime.c ├── tst-ftime_l.c ├── tst-getdate.c ├── tst-gettimeofday-time64.c ├── tst-gettimeofday.c ├── tst-gmtime-time64.c ├── tst-gmtime.c ├── tst-itimer-time64.c ├── tst-itimer.c ├── tst-mktime.c ├── tst-mktime2.c ├── tst-mktime3.c ├── tst-mktime4-time64.c ├── tst-mktime4.c ├── tst-posixtz.c ├── tst-settimeofday-time64.c ├── tst-settimeofday.c ├── tst-strftime.c ├── tst-strftime2.c ├── tst-strftime3.c ├── tst-strftime4-time64.c ├── tst-strftime4.c ├── tst-strptime-whitespace.c ├── tst-strptime.c ├── tst-strptime2.c ├── tst-strptime3.c ├── tst-time-time64.c ├── tst-time.c ├── tst-timegm-time64.c ├── tst-timegm.c ├── tst-timespec_get-time64.c ├── tst-timespec_get.c ├── tst-timespec_getres-time64.c ├── tst-timespec_getres.c ├── tst-tzfile-fault.c ├── tst-tzname.c ├── tst-y2039-time64.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 │ ├── XT6 │ └── gen-XT5.sh ├── tst-bz28707.c ├── tst-bz29951.c ├── tst-timezone.c ├── tst-tzset.c ├── tzfile.h ├── tzselect.ksh ├── version ├── 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-decl.h │ └── wchar2.h ├── btowc.c ├── c16rtomb.c ├── c32rtomb.c ├── c8rtomb.c ├── isoc23_fwscanf.c ├── isoc23_swscanf.c ├── isoc23_vfwscanf.c ├── isoc23_vswscanf.c ├── isoc23_vwscanf.c ├── isoc23_wscanf.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 ├── mbrtoc8.c ├── mbrtowc.c ├── mbsinit.c ├── mbsnrtowcs.c ├── mbsrtowcs.c ├── mbsrtowcs_l.c ├── test-c8rtomb.c ├── test-char-types.c ├── test-mbrtoc8.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-wcsdup.c ├── test-wcslen.c ├── test-wcsncat.c ├── test-wcsncmp-nonarray.c ├── test-wcsncmp.c ├── test-wcsncpy.c ├── test-wcsnlen-nonarray.c ├── test-wcsnlen.c ├── test-wcspbrk.c ├── test-wcsrchr.c ├── test-wcsspn.c ├── test-wcsstr.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-const.c ├── tst-fgetwc-after-eof.c ├── tst-mbrtowc.c ├── tst-mbrtowc2.c ├── tst-mbsrtowcs.c ├── tst-mbstowcs.c ├── tst-wchar-h.c ├── tst-wcpncpy.c ├── tst-wcrtomb.c ├── tst-wcslcat.c ├── tst-wcslcat2.c ├── tst-wcslcpy.c ├── tst-wcslcpy2.c ├── tst-wcsnlen.c ├── tst-wcstod-nan-locale.c ├── tst-wcstod-nan-sign.c ├── tst-wcstod-round.c ├── tst-wcstof.c ├── tst-wcstol-binary-c11.c ├── tst-wcstol-binary-c23.c ├── tst-wcstol-binary-gnu11.c ├── tst-wcstol-binary-gnu23.c ├── tst-wcstol-locale.c ├── tst-wprintf-binary.c ├── tst-wprintf-intn.c ├── tst-wscanf-binary-c11.c ├── tst-wscanf-binary-c23.c ├── tst-wscanf-binary-gnu11.c ├── tst-wscanf-binary-gnu89.c ├── tst-wscanf-intn.c ├── tst-wscanf-to_inpunct.c ├── uchar.h ├── wchar.h ├── wcpcpy.c ├── wcpncpy.c ├── wcrtomb.c ├── wcs-two-way.h ├── 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 ├── wcslcat.c ├── wcslcpy.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 /.b4-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/.b4-config -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTED-BY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/CONTRIBUTED-BY -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- 1 | COPYING.LESSERv2 -------------------------------------------------------------------------------- /COPYINGv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/COPYINGv2 -------------------------------------------------------------------------------- /COPYINGv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/COPYINGv3 -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/LICENSES -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- 1 | See https://sourceware.org/glibc/wiki/MAINTAINERS 2 | -------------------------------------------------------------------------------- /Makeconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/Makeconfig -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/Makefile.help -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/Makefile.in -------------------------------------------------------------------------------- /Makerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/Makerules -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/README -------------------------------------------------------------------------------- /Rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/Rules -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SHARED-FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/SHARED-FILES -------------------------------------------------------------------------------- /abi-tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/abi-tags -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /argp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/argp/Makefile -------------------------------------------------------------------------------- /argp/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/argp/Versions -------------------------------------------------------------------------------- /argp/argp-ba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/argp/argp-ba.c -------------------------------------------------------------------------------- /argp/argp-pv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/argp/argp-pv.c -------------------------------------------------------------------------------- /argp/argp-pvh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/argp/argp-pvh.c -------------------------------------------------------------------------------- /argp/argp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/argp/argp.h -------------------------------------------------------------------------------- /assert/Depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/assert/Depend -------------------------------------------------------------------------------- /assert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/assert/Makefile -------------------------------------------------------------------------------- /assert/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/assert/Versions -------------------------------------------------------------------------------- /assert/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/assert/assert.c -------------------------------------------------------------------------------- /assert/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/assert/assert.h -------------------------------------------------------------------------------- /benchtests/strcoll-inputs/filelist#C: -------------------------------------------------------------------------------- 1 | filelist#en_US.UTF-8 -------------------------------------------------------------------------------- /bits/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/byteswap.h -------------------------------------------------------------------------------- /bits/confname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/confname.h -------------------------------------------------------------------------------- /bits/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/dirent.h -------------------------------------------------------------------------------- /bits/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/dlfcn.h -------------------------------------------------------------------------------- /bits/elfclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/elfclass.h -------------------------------------------------------------------------------- /bits/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/endian.h -------------------------------------------------------------------------------- /bits/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/errno.h -------------------------------------------------------------------------------- /bits/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/fcntl.h -------------------------------------------------------------------------------- /bits/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/fenv.h -------------------------------------------------------------------------------- /bits/floatn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/floatn.h -------------------------------------------------------------------------------- /bits/fp-fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/fp-fast.h -------------------------------------------------------------------------------- /bits/fp-logb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/fp-logb.h -------------------------------------------------------------------------------- /bits/hwcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/hwcap.h -------------------------------------------------------------------------------- /bits/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/in.h -------------------------------------------------------------------------------- /bits/ioctls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/ioctls.h -------------------------------------------------------------------------------- /bits/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/ipc.h -------------------------------------------------------------------------------- /bits/ipctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/ipctypes.h -------------------------------------------------------------------------------- /bits/link.h: -------------------------------------------------------------------------------- 1 | #error "Architecture-specific definition needed." 2 | -------------------------------------------------------------------------------- /bits/mathdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/mathdef.h -------------------------------------------------------------------------------- /bits/mman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/mman.h -------------------------------------------------------------------------------- /bits/mman_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/mman_ext.h -------------------------------------------------------------------------------- /bits/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/mqueue.h -------------------------------------------------------------------------------- /bits/msq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/msq.h -------------------------------------------------------------------------------- /bits/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/netdb.h -------------------------------------------------------------------------------- /bits/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/param.h -------------------------------------------------------------------------------- /bits/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/poll.h -------------------------------------------------------------------------------- /bits/pthreadtypes.h: -------------------------------------------------------------------------------- 1 | /* No thread support. */ 2 | -------------------------------------------------------------------------------- /bits/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/resource.h -------------------------------------------------------------------------------- /bits/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/sched.h -------------------------------------------------------------------------------- /bits/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/select.h -------------------------------------------------------------------------------- /bits/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/sem.h -------------------------------------------------------------------------------- /bits/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/setjmp.h -------------------------------------------------------------------------------- /bits/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/shm.h -------------------------------------------------------------------------------- /bits/sigstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/sigstack.h -------------------------------------------------------------------------------- /bits/sigstksz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/sigstksz.h -------------------------------------------------------------------------------- /bits/sockaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/sockaddr.h -------------------------------------------------------------------------------- /bits/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/socket.h -------------------------------------------------------------------------------- /bits/ss_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/ss_flags.h -------------------------------------------------------------------------------- /bits/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/stat.h -------------------------------------------------------------------------------- /bits/statfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/statfs.h -------------------------------------------------------------------------------- /bits/statvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/statvfs.h -------------------------------------------------------------------------------- /bits/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/termios.h -------------------------------------------------------------------------------- /bits/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/time.h -------------------------------------------------------------------------------- /bits/time64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/time64.h -------------------------------------------------------------------------------- /bits/timesize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/timesize.h -------------------------------------------------------------------------------- /bits/uio-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/uio-ext.h -------------------------------------------------------------------------------- /bits/uio_lim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/uio_lim.h -------------------------------------------------------------------------------- /bits/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/utmp.h -------------------------------------------------------------------------------- /bits/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/utsname.h -------------------------------------------------------------------------------- /bits/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/wchar.h -------------------------------------------------------------------------------- /bits/wordsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/bits/wordsize.h -------------------------------------------------------------------------------- /catgets/Depend: -------------------------------------------------------------------------------- 1 | intl 2 | -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/config.h.in -------------------------------------------------------------------------------- /config.make.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/config.make.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/configure.ac -------------------------------------------------------------------------------- /csu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/csu/Makefile -------------------------------------------------------------------------------- /csu/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/csu/Versions -------------------------------------------------------------------------------- /csu/abi-note.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/csu/abi-note.c -------------------------------------------------------------------------------- /csu/check_fds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/csu/check_fds.c -------------------------------------------------------------------------------- /csu/errno-loc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/csu/errno-loc.c -------------------------------------------------------------------------------- /csu/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/csu/errno.c -------------------------------------------------------------------------------- /csu/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/csu/init.c -------------------------------------------------------------------------------- /csu/libc-tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/csu/libc-tls.c -------------------------------------------------------------------------------- /csu/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/csu/start.c -------------------------------------------------------------------------------- /csu/sysdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/csu/sysdep.c -------------------------------------------------------------------------------- /csu/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/csu/version.c -------------------------------------------------------------------------------- /ctype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/ctype/Makefile -------------------------------------------------------------------------------- /ctype/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/ctype/Versions -------------------------------------------------------------------------------- /ctype/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/ctype/ctype.c -------------------------------------------------------------------------------- /ctype/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/ctype/ctype.h -------------------------------------------------------------------------------- /ctype/ctype_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/ctype/ctype_l.c -------------------------------------------------------------------------------- /ctype/isctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/ctype/isctype.c -------------------------------------------------------------------------------- /debug/Depend: -------------------------------------------------------------------------------- 1 | localedata 2 | -------------------------------------------------------------------------------- /debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/debug/Makefile -------------------------------------------------------------------------------- /debug/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/debug/Versions -------------------------------------------------------------------------------- /dlfcn/glreflib3.c: -------------------------------------------------------------------------------- 1 | #include "glreflib1.c" 2 | -------------------------------------------------------------------------------- /dlfcn/sdlfreeres.c: -------------------------------------------------------------------------------- 1 | #include "dlfreeres.c" 2 | -------------------------------------------------------------------------------- /elf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/Makefile -------------------------------------------------------------------------------- /elf/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/Versions -------------------------------------------------------------------------------- /elf/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/cache.c -------------------------------------------------------------------------------- /elf/circlemod1a.c: -------------------------------------------------------------------------------- 1 | #include "circlemod1.c" 2 | -------------------------------------------------------------------------------- /elf/circlemod3a.c: -------------------------------------------------------------------------------- 1 | #include "circlemod3.c" 2 | -------------------------------------------------------------------------------- /elf/dep1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/dep1.c -------------------------------------------------------------------------------- /elf/dep2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/dep2.c -------------------------------------------------------------------------------- /elf/dep3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/dep3.c -------------------------------------------------------------------------------- /elf/dep4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/dep4.c -------------------------------------------------------------------------------- /elf/dl-brk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/dl-brk.c -------------------------------------------------------------------------------- /elf/dl-dst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/dl-dst.h -------------------------------------------------------------------------------- /elf/dl-sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/dl-sym.c -------------------------------------------------------------------------------- /elf/dl-tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/dl-tls.c -------------------------------------------------------------------------------- /elf/do-rel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/do-rel.h -------------------------------------------------------------------------------- /elf/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/elf.h -------------------------------------------------------------------------------- /elf/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/filter.c -------------------------------------------------------------------------------- /elf/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/global.c -------------------------------------------------------------------------------- /elf/ifuncmain9pic.c: -------------------------------------------------------------------------------- 1 | #include "ifuncmain9.c" 2 | -------------------------------------------------------------------------------- /elf/ifuncmain9picstatic.c: -------------------------------------------------------------------------------- 1 | #include "ifuncmain9.c" 2 | -------------------------------------------------------------------------------- /elf/ifuncmain9pie.c: -------------------------------------------------------------------------------- 1 | #include "ifuncmain9.c" 2 | -------------------------------------------------------------------------------- /elf/ifuncmain9static.c: -------------------------------------------------------------------------------- 1 | #include "ifuncmain9.c" 2 | -------------------------------------------------------------------------------- /elf/interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/interp.c -------------------------------------------------------------------------------- /elf/liborigin-mod.c: -------------------------------------------------------------------------------- 1 | void foo (void) {} 2 | -------------------------------------------------------------------------------- /elf/libtracemod1-1.c: -------------------------------------------------------------------------------- 1 | /* Empty */ 2 | -------------------------------------------------------------------------------- /elf/libtracemod2-1.c: -------------------------------------------------------------------------------- 1 | /* Empty */ 2 | -------------------------------------------------------------------------------- /elf/libtracemod3-1.c: -------------------------------------------------------------------------------- 1 | /* Empty */ 2 | -------------------------------------------------------------------------------- /elf/libtracemod4-1.c: -------------------------------------------------------------------------------- 1 | /* Empty */ 2 | -------------------------------------------------------------------------------- /elf/libtracemod5-1.c: -------------------------------------------------------------------------------- 1 | /* Empty */ 2 | -------------------------------------------------------------------------------- /elf/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/link.h -------------------------------------------------------------------------------- /elf/next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/next.c -------------------------------------------------------------------------------- /elf/nodel2mod3.c: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /elf/nodlopenmod.c: -------------------------------------------------------------------------------- 1 | int a = 42; 2 | -------------------------------------------------------------------------------- /elf/noload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/noload.c -------------------------------------------------------------------------------- /elf/order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/order.c -------------------------------------------------------------------------------- /elf/order2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/order2.c -------------------------------------------------------------------------------- /elf/pldd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/pldd.c -------------------------------------------------------------------------------- /elf/reldep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/reldep.c -------------------------------------------------------------------------------- /elf/reldep8mod3.c: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /elf/reldep9mod2.c: -------------------------------------------------------------------------------- 1 | void baz (void) 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /elf/reldep9mod3.c: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /elf/rtld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/rtld.c -------------------------------------------------------------------------------- /elf/sln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/sln.c -------------------------------------------------------------------------------- /elf/sofini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/sofini.c -------------------------------------------------------------------------------- /elf/sprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/sprof.c -------------------------------------------------------------------------------- /elf/tst-absolute-zero-lib.lds: -------------------------------------------------------------------------------- 1 | "absolute" = 0; 2 | -------------------------------------------------------------------------------- /elf/tst-array1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-array1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-array2.c: -------------------------------------------------------------------------------- 1 | #include "tst-array1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-array3.c: -------------------------------------------------------------------------------- 1 | #include "tst-array1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-array5-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-array5.c" 2 | -------------------------------------------------------------------------------- /elf/tst-audit1.c: -------------------------------------------------------------------------------- 1 | #include "../io/pwd.c" 2 | -------------------------------------------------------------------------------- /elf/tst-audit14.exp: -------------------------------------------------------------------------------- 1 | info: tst-auditlogmod-1.so loaded 2 | -------------------------------------------------------------------------------- /elf/tst-audit14a.c: -------------------------------------------------------------------------------- 1 | #include "tst-audit14.c" 2 | -------------------------------------------------------------------------------- /elf/tst-audit15.c: -------------------------------------------------------------------------------- 1 | #include "tst-audit14.c" 2 | -------------------------------------------------------------------------------- /elf/tst-audit16.c: -------------------------------------------------------------------------------- 1 | #include "tst-audit14.c" 2 | -------------------------------------------------------------------------------- /elf/tst-audit8.c: -------------------------------------------------------------------------------- 1 | #include "../io/pwd.c" 2 | -------------------------------------------------------------------------------- /elf/tst-execstack-prog-static.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /elf/tst-execstack-tunable.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /elf/tst-glibc-hwcaps-2-cache.root/postclean.req: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elf/tst-glibc-hwcaps-cache.root/postclean.req: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elf/tst-glibc-hwcaps-prepend-cache.root/ldconfig.run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elf/tst-glibc-hwcaps-prepend-cache.root/postclean.req: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elf/tst-hash-collision1-gnu.c: -------------------------------------------------------------------------------- 1 | #include "tst-hash-collision1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-hash-collision1-sysv.c: -------------------------------------------------------------------------------- 1 | #include "tst-hash-collision1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-hash-collision2-gnu.c: -------------------------------------------------------------------------------- 1 | #include "tst-hash-collision1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-hash-collision2-sysv.c: -------------------------------------------------------------------------------- 1 | #include "tst-hash-collision1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-hash-collision2.c: -------------------------------------------------------------------------------- 1 | #include "tst-hash-collision1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-ldconfig-bad-aux-cache.root/postclean.req: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elf/tst-ldconfig-ld_so_conf-update.root/ldconfig.run: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elf/tst-ldconfig-ld_so_conf-update.root/postclean.req: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elf/tst-non-directory-mod.c: -------------------------------------------------------------------------------- 1 | void foo (void) {} 2 | -------------------------------------------------------------------------------- /elf/tst-pie1.c: -------------------------------------------------------------------------------- 1 | int 2 | foo (void) 3 | { 4 | return 34; 5 | } 6 | -------------------------------------------------------------------------------- /elf/tst-ptrguard1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-ptrguard1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-relr-mod4b.map: -------------------------------------------------------------------------------- 1 | DT_RELR { 2 | global: bar; 3 | }; 4 | -------------------------------------------------------------------------------- /elf/tst-relr-pie.c: -------------------------------------------------------------------------------- 1 | #include "tst-relr.c" 2 | -------------------------------------------------------------------------------- /elf/tst-relr4.c: -------------------------------------------------------------------------------- 1 | #include "tst-relr3.c" 2 | -------------------------------------------------------------------------------- /elf/tst-rootdir.root/preclean.req: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elf/tst-rtld-no-malloc-audit.c: -------------------------------------------------------------------------------- 1 | #include "tst-rtld-no-malloc.c" 2 | -------------------------------------------------------------------------------- /elf/tst-rtld-no-malloc-preload.c: -------------------------------------------------------------------------------- 1 | #include "tst-rtld-no-malloc.c" 2 | -------------------------------------------------------------------------------- /elf/tst-stackguard1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-stackguard1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-tls1-static-non-pie.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-tls1-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls1.c" 2 | -------------------------------------------------------------------------------- /elf/tst-tls2-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls2.c" 2 | -------------------------------------------------------------------------------- /elf/tst-tls21mod.c: -------------------------------------------------------------------------------- 1 | int __thread x; 2 | -------------------------------------------------------------------------------- /elf/tst-tls22-gnu2.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /elf/tst-tls22-mod1-gnu2.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /elf/tst-tls22-mod2-gnu2.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /elf/tst-tls9-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tls9.c" 2 | -------------------------------------------------------------------------------- /elf/tst-tlsalign-extern-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-tlsalign-extern.c" 2 | -------------------------------------------------------------------------------- /elf/tst-tlsmod10.c: -------------------------------------------------------------------------------- 1 | #include "tst-tlsmod8.c" 2 | -------------------------------------------------------------------------------- /elf/tst-tlsmod16a.c: -------------------------------------------------------------------------------- 1 | int __thread tlsvar; 2 | -------------------------------------------------------------------------------- /elf/tst-tlsmod5.c: -------------------------------------------------------------------------------- 1 | __thread int foo; 2 | -------------------------------------------------------------------------------- /elf/tst-tlsmod6.c: -------------------------------------------------------------------------------- 1 | __thread int bar; 2 | -------------------------------------------------------------------------------- /elf/unload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/unload.c -------------------------------------------------------------------------------- /elf/unload3mod1.c: -------------------------------------------------------------------------------- 1 | int dummy1; 2 | -------------------------------------------------------------------------------- /elf/unload3mod2.c: -------------------------------------------------------------------------------- 1 | int dummy2; 2 | -------------------------------------------------------------------------------- /elf/unload7mod2.c: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /elf/unload8mod1x.c: -------------------------------------------------------------------------------- 1 | int mod1x; 2 | -------------------------------------------------------------------------------- /elf/vismod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/elf/vismod.h -------------------------------------------------------------------------------- /extra-lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/extra-lib.mk -------------------------------------------------------------------------------- /gmon/gmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/gmon/gmon.c -------------------------------------------------------------------------------- /gmon/tst-gmon-pie.c: -------------------------------------------------------------------------------- 1 | #include "tst-gmon.c" 2 | -------------------------------------------------------------------------------- /gmon/tst-gmon-static-pie.c: -------------------------------------------------------------------------------- 1 | #include "tst-gmon.c" 2 | -------------------------------------------------------------------------------- /gmon/tst-gmon-static.c: -------------------------------------------------------------------------------- 1 | #include "tst-gmon.c" 2 | -------------------------------------------------------------------------------- /hesiod/Depend: -------------------------------------------------------------------------------- 1 | nss 2 | resolv 3 | -------------------------------------------------------------------------------- /htl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/htl/Makefile -------------------------------------------------------------------------------- /htl/Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/htl/Versions -------------------------------------------------------------------------------- /htl/shlib-versions: -------------------------------------------------------------------------------- 1 | libpthread=0.3 2 | -------------------------------------------------------------------------------- /hurd/Depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/hurd/Depend -------------------------------------------------------------------------------- /hurd/Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/hurd/Notes -------------------------------------------------------------------------------- /hurd/hurd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/hurd/hurd.h -------------------------------------------------------------------------------- /hurd/stack_chk_fail_local.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /hurd/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/hurd/xattr.c -------------------------------------------------------------------------------- /iconv/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bminor/glibc/HEAD/iconv/loop.c -------------------------------------------------------------------------------- /iconvdata/Depend: -------------------------------------------------------------------------------- 1 | iconv 2 | localedata 3 | -------------------------------------------------------------------------------- /iconvdata/EUC-JP.irreversible: -------------------------------------------------------------------------------- 1 | 0x5C 0x00A5 2 | 0x7E 0x203E 3 | -------------------------------------------------------------------------------- /iconvdata/EUC-KR.irreversible: -------------------------------------------------------------------------------- 1 | 0xA3DC 0x20A9 2 | -------------------------------------------------------------------------------- /iconvdata/EUC-TW.irreversible: -------------------------------------------------------------------------------- 1 | 0x8EA3A1B8 0x5344 2 | -------------------------------------------------------------------------------- /iconvdata/IBM1132.irreversible: -------------------------------------------------------------------------------- 1 | 0x70 0x006B 2 | -------------------------------------------------------------------------------- /iconvdata/IBM1133.irreversible: -------------------------------------------------------------------------------- 1 | 0xDF 0x006B 2 | -------------------------------------------------------------------------------- /iconvdata/IBM1163.irreversible: -------------------------------------------------------------------------------- 1 | 0xAF 0x203E 2 | 0xD0 0x00D0 3 | -------------------------------------------------------------------------------- /iconvdata/TSCII.irreversible: -------------------------------------------------------------------------------- 1 | 0xAD 0x0B87 2 | -------------------------------------------------------------------------------- /include/ar.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/arpa/ftp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/arpa/telnet.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/arpa/tftp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/dl_find_object.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | -------------------------------------------------------------------------------- /include/bits/endian.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/err-ldbl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/error-ldbl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/error.h: -------------------------------------------------------------------------------- 1 | #include "../../misc/bits/error.h" 2 | -------------------------------------------------------------------------------- /include/bits/fcntl2.h: -------------------------------------------------------------------------------- 1 | #include "../../io/bits/fcntl2.h" 2 | -------------------------------------------------------------------------------- /include/bits/getopt_core.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/getopt_ext.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/monetary-ldbl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/mqueue2.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/poll2.h: -------------------------------------------------------------------------------- 1 | #include "../../io/bits/poll2.h" 2 | -------------------------------------------------------------------------------- /include/bits/printf-ldbl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/select-decl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/select2.h: -------------------------------------------------------------------------------- 1 | #include "../../misc/bits/select2.h" 2 | -------------------------------------------------------------------------------- /include/bits/stab.def: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/statx-generic.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/statx.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/stdio-ldbl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/stdio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/stdio2.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/syslog-ldbl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/types/FILE.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/types/__FILE.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/types/__fpos_t.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/bits/types/clock_t.h: -------------------------------------------------------------------------------- 1 | #include