/sysdeps/unix/sysv/linux/s390/ |
A D | sysconf.c | 42 if (level < 1 || level > CACHE_LEVEL_MAX in get_cache_info() 135 level = 1; in __sysconf() 140 level = 1; in __sysconf() 145 level = 1; in __sysconf() 151 level = 1; in __sysconf() 156 level = 1; in __sysconf() 161 level = 1; in __sysconf() 167 level = 2; in __sysconf() 172 level = 2; in __sysconf() 177 level = 2; in __sysconf() [all …]
|
/sysdeps/unix/sysv/linux/x86_64/ |
A D | Makefile | 18 ifeq (yes,$(enable-x86-isa-level)) 28 libx86-64-isa-level-1 \ 29 libx86-64-isa-level-2 \ 30 libx86-64-isa-level-3 \ 31 libx86-64-isa-level-4 40 $(objpfx)libx86-64-isa-level-2.so 44 $(objpfx)libx86-64-isa-level-3.so 58 LDFLAGS-libx86-64-isa-level-1.so += -Wl,-soname,libx86-64-isa-level.so 59 LDFLAGS-libx86-64-isa-level-4.so += -Wl,-soname,libx86-64-isa-level.so 60 $(objpfx)libx86-64-isa-level%.os: $(..)/sysdeps/unix/sysv/linux/x86_64/x86-64-isa-level-VALUE.c [all …]
|
A D | tst-glibc-hwcaps-2.c | 46 int level = dso_isa_level (); in do_test() local 48 switch (level) in do_test() 54 if (has_isa_v3 || has_isa_v4 || (!has_isa_v2 && level == 2)) in do_test()
|
/sysdeps/unix/sysv/linux/ |
A D | getsockopt.c | 25 getsockopt_syscall (int fd, int level, int optname, void *optval, in getsockopt_syscall() argument 29 return INLINE_SYSCALL (getsockopt, 5, fd, level, optname, optval, len); in getsockopt_syscall() 31 return SOCKETCALL (getsockopt, fd, level, optname, optval, len); in getsockopt_syscall() 37 getsockopt32 (int fd, int level, int optname, void *optval, in getsockopt32() argument 42 if (level != SOL_SOCKET) in getsockopt32() 56 r = getsockopt_syscall (fd, level, optname, &tv32, in getsockopt32() 82 r = getsockopt_syscall (fd, level, optname, optval, len); in getsockopt32() 92 __getsockopt (int fd, int level, int optname, void *optval, socklen_t *len) in __getsockopt() argument 94 int r = getsockopt_syscall (fd, level, optname, optval, len); in __getsockopt() 98 r = getsockopt32 (fd, level, optname, optval, len); in __getsockopt()
|
A D | setsockopt.c | 25 setsockopt_syscall (int fd, int level, int optname, const void *optval, in setsockopt_syscall() argument 29 return INLINE_SYSCALL_CALL (setsockopt, fd, level, optname, optval, len); in setsockopt_syscall() 31 return SOCKETCALL (setsockopt, fd, level, optname, optval, len); in setsockopt_syscall() 37 setsockopt32 (int fd, int level, int optname, const void *optval, in setsockopt32() argument 42 if (level != SOL_SOCKET) in setsockopt32() 70 r = setsockopt_syscall (fd, level, optname, &tv32, sizeof (tv32)); in setsockopt32() 83 r = setsockopt_syscall (fd, level, optname, optval, len); in setsockopt32() 93 __setsockopt (int fd, int level, int optname, const void *optval, socklen_t len) in __setsockopt() argument 95 int r = setsockopt_syscall (fd, level, optname, optval, len); in __setsockopt() 99 r = setsockopt32 (fd, level, optname, optval, len); in __setsockopt()
|
/sysdeps/x86_64/ |
A D | tst-glibc-hwcaps.c | 48 int level = compute_level (); in do_test() local 49 printf ("info: detected x86-64 micro-architecture level: %d\n", level); in do_test() 50 TEST_COMPARE (marker2 (), MIN (level, 2)); in do_test() 51 TEST_COMPARE (marker3 (), MIN (level, 3)); in do_test() 52 TEST_COMPARE (marker4 (), MIN (level, 4)); in do_test()
|
/sysdeps/s390/s390-64/ |
A D | tst-glibc-hwcaps.c | 74 int level = compute_level (); in do_test() local 75 printf ("info: detected architecture level: arch%d\n", level); in do_test() 76 TEST_COMPARE (marker2 (), MIN (level - 9, 2)); in do_test() 77 TEST_COMPARE (marker3 (), MIN (level - 9, 3)); in do_test() 78 TEST_COMPARE (marker4 (), MIN (level - 9, 4)); in do_test()
|
/sysdeps/powerpc/powerpc64/le/ |
A D | tst-glibc-hwcaps.c | 47 int level = compute_level (); in do_test() local 48 printf ("info: detected POWER level: %d\n", level); in do_test() 49 TEST_COMPARE (marker2 (), MIN (level - 7, 2)); in do_test() 50 TEST_COMPARE (marker3 (), MIN (level - 7, 3)); in do_test()
|
/sysdeps/unix/sysv/linux/x86/ |
A D | elf-read-prop.h | 49 unsigned int level; in read_gnu_property() local 50 asm ("bsr %1, %0" : "=r" (level) : "g" (isa_1_needed)); in read_gnu_property() 51 *isal_level = level; in read_gnu_property()
|
/sysdeps/mach/hurd/ |
A D | setsockopt.c | 29 int level, in __setsockopt() argument 35 level, optname, in __setsockopt()
|
A D | getsockopt.c | 32 int level, in getsockopt() argument 42 level, optname, in getsockopt()
|
/sysdeps/x86/ |
A D | dl-cacheinfo.h | 162 unsigned int level = (eax >> 5) & 0x7; in intel_check_word() local 164 if ((level == 1 && type == data in intel_check_word() 166 || (level == 1 && type == inst in intel_check_word() 449 unsigned int level = (eax >> 5) & 0x7; in handle_zhaoxin() local 451 if ((level == 1 && type == data in handle_zhaoxin() 453 || (level == 1 && type == inst in handle_zhaoxin() 505 unsigned int level = 3; in get_common_cache_info() local 513 level = 2; in get_common_cache_info() 589 int count = ((threads_l2 > 0 && level == 3) in get_common_cache_info() 630 if (level == 2) in get_common_cache_info() [all …]
|
/sysdeps/unix/sysv/linux/ia64/ |
A D | ioperm.c | 115 _iopl (unsigned int level) in _iopl() argument 117 if (level > 3) in _iopl() 122 if (level) in _iopl()
|
/sysdeps/hppa/ |
A D | bsd-setjmp.S | 27 .level 2.0
|
A D | bsd-_setjmp.S | 29 .level 2.0
|
/sysdeps/sparc/ |
A D | configure.ac | 1 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
/sysdeps/unix/sysv/linux/nios2/ |
A D | configure.ac | 1 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
/sysdeps/unix/sysv/linux/arc/ |
A D | configure.ac | 1 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
/sysdeps/unix/sysv/linux/sh/ |
A D | configure.ac | 1 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
/sysdeps/unix/sysv/linux/powerpc/powerpc32/ |
A D | configure.ac | 1 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
/sysdeps/unix/sysv/linux/x86_64/64/ |
A D | configure.ac | 1 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
/sysdeps/unix/sysv/linux/s390/s390-64/ |
A D | configure.ac | 1 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
/sysdeps/unix/sysv/linux/sparc/sparc64/ |
A D | configure.ac | 1 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
/sysdeps/unix/sysv/linux/aarch64/ |
A D | configure.ac | 1 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
/sysdeps/unix/sysv/linux/x86_64/x32/ |
A D | configure.ac | 1 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|