/sysdeps/unix/sysv/linux/s390/ |
A D | sysconf.c | 44 || type < CACHE_TYPE_DATA || type > CACHE_TYPE_INSTRUCTION) in get_cache_info() 130 int type; in __sysconf() local 153 type = CACHE_TYPE_DATA; in __sysconf() 158 type = CACHE_TYPE_DATA; in __sysconf() 163 type = CACHE_TYPE_DATA; in __sysconf() 169 type = CACHE_TYPE_DATA; in __sysconf() 174 type = CACHE_TYPE_DATA; in __sysconf() 179 type = CACHE_TYPE_DATA; in __sysconf() 185 type = CACHE_TYPE_DATA; in __sysconf() 190 type = CACHE_TYPE_DATA; in __sysconf() [all …]
|
/sysdeps/mach/hurd/ |
A D | ioctl.c | 34 #define typesize(type) (1 << (type)) argument 73 + _IOT_COUNT2 (type) * typesize (_IOT_TYPE2 (type))]; in __ioctl() 76 char data[_IOT_COUNT0 (type) * typesize (_IOT_TYPE0 (type)) in __ioctl() 77 + _IOT_COUNT1 (type) * typesize (_IOT_TYPE1 (type)) in __ioctl() 78 + _IOT_COUNT2 (type) * typesize (_IOT_TYPE2 (type))]; in __ioctl() 142 in (_IOT_COUNT0 (type), _IOT_TYPE0 (type)); in __ioctl() 143 in (_IOT_COUNT1 (type), _IOT_TYPE1 (type)); in __ioctl() 144 in (_IOT_COUNT2 (type), _IOT_TYPE2 (type)); in __ioctl() 269 figure_reply (_IOT_COUNT0 (type), _IOT_TYPE0 (type)); in __ioctl() 270 figure_reply (_IOT_COUNT1 (type), _IOT_TYPE1 (type)); in __ioctl() [all …]
|
A D | access.c | 27 __access_noerrno (const char *file, int type) in __access_noerrno() argument 29 return __faccessat_noerrno (AT_FDCWD, file, type, 0); in __access_noerrno() 34 __access (const char *file, int type) in __access() argument 36 return __faccessat (AT_FDCWD, file, type, 0); in __access()
|
A D | socket.c | 30 __socket (int domain, int type, int protocol) in __socket() argument 34 int flags = sock_to_o_flags (type & ~SOCK_TYPE_MASK); in __socket() 35 type &= SOCK_TYPE_MASK; in __socket() 45 err = __socket_create (server, type, protocol, &sock); in __socket() 54 err = __socket_create (server, type, protocol, &sock); in __socket()
|
A D | socketpair.c | 33 __socketpair (int domain, int type, int protocol, int fds[2]) in __socketpair() argument 38 int flags = sock_to_o_flags (type & ~SOCK_TYPE_MASK); in __socketpair() 39 type &= SOCK_TYPE_MASK; in __socketpair() 54 err = __socket_create (server, type, protocol, &sock1); in __socketpair() 63 err = __socket_create (server, type, protocol, &sock1); in __socketpair() 75 if (err = __socket_create (server, type, protocol, &sock2)) in __socketpair()
|
/sysdeps/unix/sysv/linux/riscv/ |
A D | sysconf.c | 26 getauxval2_einval (unsigned long int type, unsigned long int *result) in getauxval2_einval() argument 28 if (__getauxval2 (type, result)) in getauxval2_einval() 37 sysconf_get_cache_associativity (unsigned long type) in sysconf_get_cache_associativity() argument 41 if (getauxval2_einval (type, &result)) in sysconf_get_cache_associativity() 48 sysconf_get_cache_linesize (unsigned long type) in sysconf_get_cache_linesize() argument 52 if (getauxval2_einval (type, &result)) in sysconf_get_cache_linesize() 59 sysconf_get_cache_size (unsigned long type) in sysconf_get_cache_size() argument 63 if (getauxval2_einval (type, &result)) in sysconf_get_cache_size()
|
/sysdeps/mach/hurd/htl/ |
A D | pt-mutexattr-settype.c | 27 __pthread_mutexattr_settype (pthread_mutexattr_t *attrp, int type) in __pthread_mutexattr_settype() argument 29 if (type < 0 || type > __PTHREAD_MUTEX_RECURSIVE) in __pthread_mutexattr_settype() 32 attrp->__mutex_type = type; in __pthread_mutexattr_settype()
|
/sysdeps/alpha/bits/ |
A D | mathdef.h | 30 # define __MATHDECL(type, function, args) \ argument 31 __MATHDECL_1(type, function##f, args, __c1_##function##f); \ 32 __MATHDECL_1(type, __##function##f, args, __c1_##function##f) 33 # define __MATHDECL_1(type, function, args, alias) \ argument 34 extern type function args __asm__(#alias) __THROW
|
/sysdeps/ieee754/ |
A D | k_standard.c | 119 switch(type) { in __kernel_standard() 124 exc.type = DOMAIN; in __kernel_standard() 143 exc.type = DOMAIN; in __kernel_standard() 164 exc.type = DOMAIN; in __kernel_standard() 374 exc.type = SING; in __kernel_standard() 393 exc.type = SING; in __kernel_standard() 431 exc.type = SING; in __kernel_standard() 665 exc.type = SING; in __kernel_standard() 822 exc.type = SING; in __kernel_standard() 899 exc.type = SING; in __kernel_standard() [all …]
|
A D | k_standardl.c | 50 __kernel_standard_l (long double x, long double y, int type) in __kernel_standard_l() argument 63 switch (type) in __kernel_standard_l() 69 exc.type = OVERFLOW; in __kernel_standard_l() 95 exc.type = UNDERFLOW; in __kernel_standard_l() 108 return __kernel_standard (dx, dy, type); in __kernel_standard_l()
|
A D | k_standardf.c | 29 __kernel_standard_f (float x, float y, int type) in __kernel_standard_f() argument 31 return __kernel_standard (x, y, type); in __kernel_standard_f()
|
/sysdeps/unix/sysv/linux/ |
A D | convert_scm_timestamps.c | 51 int type = 0; in __convert_scm_timestamps() local 63 if (type != 0) in __convert_scm_timestamps() 65 type = COMPAT_SO_TIMESTAMP_NEW; in __convert_scm_timestamps() 69 type = COMPAT_SO_TIMESTAMPNS_NEW; in __convert_scm_timestamps() 82 if (last == NULL || type == 0) in __convert_scm_timestamps() 96 cmsg->cmsg_type = type; in __convert_scm_timestamps()
|
A D | access.c | 24 __access (const char *file, int type) in __access() argument 27 return INLINE_SYSCALL_CALL (access, file, type); in __access() 29 return INLINE_SYSCALL_CALL (faccessat, AT_FDCWD, file, type); in __access()
|
A D | socket.c | 27 __socket (int fd, int type, int domain) in __socket() argument 30 return INLINE_SYSCALL (socket, 3, fd, type, domain); in __socket() 32 return SOCKETCALL (socket, fd, type, domain); in __socket()
|
A D | socketpair.c | 27 __socketpair (int domain, int type, int protocol, int sv[2]) in __socketpair() argument 30 return INLINE_SYSCALL (socketpair, 4, domain, type, protocol, &sv[0]); in __socketpair() 32 return SOCKETCALL (socketpair, domain, type, protocol, sv); in __socketpair()
|
/sysdeps/powerpc/powerpc32/ |
A D | libgcc-compat.S | 59 .type __ashldi3_v_glibc20,@function 66 .type __ashrdi3_v_glibc20,@function 73 .type __lshrdi3_v_glibc20,@function 80 .type __cmpdi2_v_glibc20,@function 87 .type __ucmpdi2_v_glibc20,@function 95 .type __fixdfdi_v_glibc20,@function 102 .type __fixunsdfdi_v_glibc20,@function 109 .type __fixsfdi_v_glibc20,@function 116 .type __fixunssfdi_v_glibc20,@function 123 .type __floatdidf_v_glibc20,@function [all …]
|
/sysdeps/gnu/netinet/ |
A D | ip_icmp.h | 28 uint8_t type; /* message type */ member 289 #define ICMP_INFOTYPE(type) \ argument 290 ((type) == ICMP_ECHOREPLY || (type) == ICMP_ECHO \ 291 || (type) == ICMP_ROUTERADVERT || (type) == ICMP_ROUTERSOLICIT \ 292 || (type) == ICMP_TSTAMP || (type) == ICMP_TSTAMPREPLY \ 293 || (type) == ICMP_IREQ || (type) == ICMP_IREQREPLY \ 294 || (type) == ICMP_MASKREQ || (type) == ICMP_MASKREPLY)
|
/sysdeps/unix/sysv/linux/powerpc/ |
A D | sysconf.c | 26 auxv2sysconf_cache_associativity (unsigned long type) in auxv2sysconf_cache_associativity() argument 28 return (__getauxval (type) & 0xffff0000) >> 16; in auxv2sysconf_cache_associativity() 32 auxv2sysconf_cache_linesize (unsigned long type) in auxv2sysconf_cache_linesize() argument 34 return __getauxval (type) & 0xffff; in auxv2sysconf_cache_linesize()
|
/sysdeps/arm/ |
A D | aeabi_sighandlers.S | 42 .type __aeabi_SIG_DFL, %function 47 .type __aeabi_SIG_IGN, %function 52 .type __aeabi_SIG_ERR, %function
|
/sysdeps/unix/sysv/linux/x86/ |
A D | elf-read-prop.h | 30 read_gnu_property (unsigned int *isal_level, uint32_t type, in read_gnu_property() argument 34 if (type > GNU_PROPERTY_X86_ISA_1_NEEDED) in read_gnu_property() 37 if (type == GNU_PROPERTY_X86_ISA_1_NEEDED) in read_gnu_property()
|
/sysdeps/x86/ |
A D | dl-prop.h | 131 unsigned int type = *(unsigned int *) ptr; in _dl_process_property_note() local 135 if (type < last_type) in _dl_process_property_note() 142 last_type = type; in _dl_process_property_note() 144 if (type == GNU_PROPERTY_X86_FEATURE_1_AND in _dl_process_property_note() 145 || type == GNU_PROPERTY_X86_ISA_1_NEEDED in _dl_process_property_note() 146 || type == GNU_PROPERTY_1_NEEDED) in _dl_process_property_note() 164 if (type == GNU_PROPERTY_X86_FEATURE_1_AND) in _dl_process_property_note() 166 else if (type == GNU_PROPERTY_1_NEEDED) in _dl_process_property_note() 177 else if (type > GNU_PROPERTY_X86_ISA_1_NEEDED) in _dl_process_property_note() 217 _dl_process_gnu_property (struct link_map *l, int fd, uint32_t type, in _dl_process_gnu_property() argument
|
/sysdeps/unix/sysv/linux/generic/bits/ |
A D | struct_stat.h | 30 # define __field64(type, type64, name) type64 name argument 35 # define __field64(type, type64, name) type name argument 37 # define __field64(type, type64, name) \ argument 38 type name __attribute__((__aligned__ (__alignof__ (type64)))); int __##name##_pad 40 # define __field64(type, type64, name) \ argument 41 int __##name##_pad __attribute__((__aligned__ (__alignof__ (type64)))); type name
|
/sysdeps/unix/sysv/linux/csky/bits/ |
A D | statfs.h | 27 # define __field64(type, type64, name) type64 name argument 29 # define __field64(type, type64, name) \ argument 30 type name __attribute__((__aligned__ (__alignof__ (type64)))); int __##name##_pad 32 # define __field64(type, type64, name) \ argument 33 int __##name##_pad __attribute__((__aligned__ (__alignof__ (type64)))); type name
|
/sysdeps/unix/sysv/linux/nios2/bits/ |
A D | statfs.h | 27 # define __field64(type, type64, name) type64 name argument 29 # define __field64(type, type64, name) \ argument 30 type name __attribute__((__aligned__ (__alignof__ (type64)))); int __##name##_pad 32 # define __field64(type, type64, name) \ argument 33 int __##name##_pad __attribute__((__aligned__ (__alignof__ (type64)))); type name
|
/sysdeps/mips/ |
A D | ldsodefs.h | 132 #define ELF64_MIPS_R_INFO(sym, type) \ argument 135 { (sym), ELF64_MIPS_R_SSYM (type), \ 136 ELF64_MIPS_R_TYPE3 (type), \ 137 ELF64_MIPS_R_TYPE2 (type), \ 138 ELF64_MIPS_R_TYPE1 (type) \ 158 #define ELF64_R_INFO(sym, type) ELF64_MIPS_R_INFO ((sym), (type)) argument
|