/glibc-2.36/ctype/ |
D | ctype.h | 88 # define __isctype(c, type) \ argument 99 #define __isascii(c) (((c) & ~0x7f) == 0) /* If C is a 7 bit value. */ argument 100 #define __toascii(c) ((c) & 0x7f) /* Mask off high bits. */ argument 155 #define __tobody(c, f, a, args) \ argument 220 # define tolower(c) __tobody (c, tolower, *__ctype_tolower_loc (), (c)) argument 221 # define toupper(c) __tobody (c, toupper, *__ctype_toupper_loc (), (c)) argument 225 # define isascii(c) __isascii (c) argument 226 # define toascii(c) __toascii (c) argument 228 # define _tolower(c) ((int) (*__ctype_tolower_loc ())[(int) (c)]) argument 229 # define _toupper(c) ((int) (*__ctype_toupper_loc ())[(int) (c)]) argument [all …]
|
D | ctype-extn.c | 29 _tolower (int c) in _tolower() 34 _toupper (int c) in _toupper() 40 toascii (int c) in toascii()
|
D | test_ctype.c | 23 #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') argument 24 #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) argument 31 print_char (unsigned char c) in print_char() 43 unsigned short int c; in main() local
|
/glibc-2.36/include/ |
D | atomic_wide_counter.h | 28 __atomic_wide_counter_load_relaxed (__atomic_wide_counter *c) in __atomic_wide_counter_load_relaxed() 34 __atomic_wide_counter_load_acquire (__atomic_wide_counter *c) in __atomic_wide_counter_load_acquire() 40 __atomic_wide_counter_fetch_add_relaxed (__atomic_wide_counter *c, in __atomic_wide_counter_fetch_add_relaxed() 47 __atomic_wide_counter_fetch_add_acquire (__atomic_wide_counter *c, in __atomic_wide_counter_fetch_add_acquire() 54 __atomic_wide_counter_add_relaxed (__atomic_wide_counter *c, in __atomic_wide_counter_add_relaxed() 62 __atomic_wide_counter_fetch_xor_release (__atomic_wide_counter *c, in __atomic_wide_counter_fetch_xor_release() 74 __atomic_wide_counter_load_acquire (__atomic_wide_counter *c) in __atomic_wide_counter_load_acquire() 86 __atomic_wide_counter_fetch_add_acquire (__atomic_wide_counter *c, in __atomic_wide_counter_fetch_add_acquire() 95 __atomic_wide_counter_add_relaxed (__atomic_wide_counter *c, in __atomic_wide_counter_add_relaxed()
|
D | wctype.h | 66 # define iswdigit(c) ({ wint_t __c = (c); __c >= L'0' && __c <= L'9'; }) argument 68 # define iswdigit_l(c, l) ({ wint_t __c = (c); __c >= L'0' && __c <= L'9'; }) argument 70 # define __iswdigit_l(c, l) ({ wint_t __c = (c); __c >= L'0' && __c <= L'9'; }) argument
|
D | ctype.h | 60 # define isdigit(c) ({ int __c = (c); __c >= '0' && __c <= '9'; }) argument 62 # define isdigit_l(c, l) ({ int __c = (c); __c >= '0' && __c <= '9'; }) argument 64 # define __isdigit_l(c, l) ({ int __c = (c); __c >= '0' && __c <= '9'; }) argument
|
/glibc-2.36/wcsmbs/ |
D | tst-btowc.c | 29 ok_test (int c, wint_t expwc) in ok_test() 45 fail_test (int c) in fail_test() 89 int c; in do_test() local 108 int c; in do_test() local 124 int c; in do_test() local 158 int c; in do_test() local
|
/glibc-2.36/sysdeps/arm/armv6t2/ |
D | memchr.S | 37 #define CHARTSTMASK(c) 1<<(31-(c*8)) argument 39 #define CHARTSTMASK(c) 1<<(c*8) argument
|
/glibc-2.36/nptl/ |
D | tst-tls5modc.c | 4 static __thread int c; variable
|
/glibc-2.36/sysdeps/generic/ |
D | math-type-macros-float128.h | 22 #define M_LIT(c) __f128 (c) argument 24 #define M_SUF(c) c ## f128 argument 27 #define M_USE_BUILTIN(c) USE_ ##c ##F128_BUILTIN argument 31 #define M_MLIT(c) c ## f128 argument
|
D | math-type-macros-double.h | 22 #define M_LIT(c) c argument 23 #define M_MLIT(c) c argument 25 #define M_SUF(c) c argument 29 #define M_USE_BUILTIN(c) USE_ ##c ##_BUILTIN argument
|
D | math-type-macros-float.h | 22 #define M_LIT(c) c ## f argument 24 #define M_SUF(c) c ## f argument 28 #define M_USE_BUILTIN(c) USE_ ##c ##F_BUILTIN argument 31 #define M_MLIT(c) c ## f argument
|
D | math-type-macros-ldouble.h | 22 #define M_LIT(c) c ## L argument 23 #define M_MLIT(c) c ## l argument 25 #define M_SUF(c) c ## l argument 29 #define M_USE_BUILTIN(c) USE_ ##c ##L_BUILTIN argument
|
/glibc-2.36/libio/ |
D | putchar_u.c | 24 putchar_unlocked (int c) in putchar_unlocked()
|
D | putc_u.c | 24 __putc_unlocked (int c, FILE *fp) in __putc_unlocked()
|
D | putchar.c | 24 putchar (int c) in putchar()
|
D | fputc_u.c | 33 fputc_unlocked (int c, FILE *fp) in fputc_unlocked()
|
/glibc-2.36/misc/ |
D | atomic_wide_counter.c | 60 __atomic_wide_counter_fetch_add_relaxed (__atomic_wide_counter *c, in __atomic_wide_counter_fetch_add_relaxed() 88 __atomic_wide_counter_load_relaxed (__atomic_wide_counter *c) in __atomic_wide_counter_load_relaxed()
|
/glibc-2.36/stdlib/ |
D | testmb.c | 8 char c[10]; in main() local 48 char c = 'x'; in main() local
|
D | stdint.h | 106 # define __INT64_C(c) c ## L argument 107 # define __UINT64_C(c) c ## UL argument 109 # define __INT64_C(c) c ## LL argument 110 # define __UINT64_C(c) c ## ULL argument 248 # define INT8_C(c) c argument 249 # define INT16_C(c) c argument 250 # define INT32_C(c) c argument 252 # define INT64_C(c) c ## L argument 254 # define INT64_C(c) c ## LL argument 258 # define UINT8_C(c) c argument [all …]
|
/glibc-2.36/sysdeps/sparc/sparc32/ |
D | q_dtoq.c | 29 long double c; in _Q_dtoq() local
|
D | q_sqrt.c | 27 long double c; in _Q_sqrt() local
|
D | q_stoq.c | 29 long double c; in _Q_stoq() local
|
/glibc-2.36/sysdeps/riscv/ |
D | e_sqrtl.c | 29 long double c; in __ieee754_sqrtl() local
|
/glibc-2.36/sysdeps/mips/mips64/ |
D | e_sqrtl.c | 29 long double c; in __ieee754_sqrtl() local
|