Home
last modified time | relevance | path

Searched defs:c (Results 1 – 25 of 380) sorted by relevance

12345678910>>...16

/glibc-2.36/ctype/
Dctype.h88 # 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 …]
Dctype-extn.c29 _tolower (int c) in _tolower()
34 _toupper (int c) in _toupper()
40 toascii (int c) in toascii()
Dtest_ctype.c23 #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/
Datomic_wide_counter.h28 __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()
Dwctype.h66 # 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
Dctype.h60 # 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/
Dtst-btowc.c29 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/
Dmemchr.S37 #define CHARTSTMASK(c) 1<<(31-(c*8)) argument
39 #define CHARTSTMASK(c) 1<<(c*8) argument
/glibc-2.36/nptl/
Dtst-tls5modc.c4 static __thread int c; variable
/glibc-2.36/sysdeps/generic/
Dmath-type-macros-float128.h22 #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
Dmath-type-macros-double.h22 #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
Dmath-type-macros-float.h22 #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
Dmath-type-macros-ldouble.h22 #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/
Dputchar_u.c24 putchar_unlocked (int c) in putchar_unlocked()
Dputc_u.c24 __putc_unlocked (int c, FILE *fp) in __putc_unlocked()
Dputchar.c24 putchar (int c) in putchar()
Dfputc_u.c33 fputc_unlocked (int c, FILE *fp) in fputc_unlocked()
/glibc-2.36/misc/
Datomic_wide_counter.c60 __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/
Dtestmb.c8 char c[10]; in main() local
48 char c = 'x'; in main() local
Dstdint.h106 # 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/
Dq_dtoq.c29 long double c; in _Q_dtoq() local
Dq_sqrt.c27 long double c; in _Q_sqrt() local
Dq_stoq.c29 long double c; in _Q_stoq() local
/glibc-2.36/sysdeps/riscv/
De_sqrtl.c29 long double c; in __ieee754_sqrtl() local
/glibc-2.36/sysdeps/mips/mips64/
De_sqrtl.c29 long double c; in __ieee754_sqrtl() local

12345678910>>...16