/bionic/libc/stdlib/ |
D | ctype_.c | 81 int isalnum(int c) in isalnum() 86 int isalpha(int c) in isalpha() 91 int iscntrl(int c) in iscntrl() 96 int isdigit(int c) in isdigit() 101 int isgraph(int c) in isgraph() 106 int islower(int c) in islower() 111 int isprint(int c) in isprint() 116 int ispunct(int c) in ispunct() 121 int isspace(int c) in isspace() 126 int isupper(int c) in isupper() [all …]
|
D | tolower_.c | 52 tolower(int c) in tolower()
|
D | toupper_.c | 53 toupper(int c) in toupper()
|
/bionic/libc/include/ |
D | ctype.h | 102 __CTYPE_INLINE int isalnum(int c) in isalnum() 107 __CTYPE_INLINE int isalpha(int c) in isalpha() 112 __CTYPE_INLINE int iscntrl(int c) in iscntrl() 117 __CTYPE_INLINE int isdigit(int c) in isdigit() 122 __CTYPE_INLINE int isgraph(int c) in isgraph() 127 __CTYPE_INLINE int islower(int c) in islower() 132 __CTYPE_INLINE int isprint(int c) in isprint() 137 __CTYPE_INLINE int ispunct(int c) in ispunct() 142 __CTYPE_INLINE int isspace(int c) in isspace() 147 __CTYPE_INLINE int isupper(int c) in isupper() [all …]
|
D | stdint.h | 75 # define INT8_C(c) c argument 76 # define INT_LEAST8_C(c) INT8_C(c) argument 77 # define INT_FAST8_C(c) INT8_C(c) argument 79 # define UINT8_C(c) c ## U argument 80 # define UINT_LEAST8_C(c) UINT8_C(c) argument 81 # define UINT_FAST8_C(c) UINT8_C(c) argument 108 # define INT16_C(c) c argument 109 # define INT_LEAST16_C(c) INT16_C(c) argument 110 # define INT_FAST16_C(c) INT32_C(c) argument 112 # define UINT16_C(c) c ## U argument [all …]
|
/bionic/libc/kernel/common/linux/ |
D | ctype.h | 32 #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0) argument 34 #define isalpha(c) ((__ismask(c)&(_U|_L)) != 0) argument 35 #define iscntrl(c) ((__ismask(c)&(_C)) != 0) argument 36 #define isdigit(c) ((__ismask(c)&(_D)) != 0) argument 37 #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0) argument 39 #define islower(c) ((__ismask(c)&(_L)) != 0) argument 40 #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) argument 41 #define ispunct(c) ((__ismask(c)&(_P)) != 0) argument 42 #define isspace(c) ((__ismask(c)&(_S)) != 0) argument 44 #define isupper(c) ((__ismask(c)&(_U)) != 0) argument [all …]
|
D | debug_locks.h | 25 #define DEBUG_LOCKS_WARN_ON(c) ({ int __ret = 0; if (unlikely(c)) { if (debug_locks_off())… argument 26 #define SMP_DEBUG_LOCKS_WARN_ON(c) do { } while (0) argument
|
D | vt_buffer.h | 25 #define scr_memcpyw(d, s, c) memcpy(d, s, c) argument 26 #define scr_memmovew(d, s, c) memmove(d, s, c) argument
|
D | version.h | 20 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) argument
|
/bionic/libc/netbsd/resolv/ |
D | res_comp.c | 157 #define hyphenchar(c) ((c) == 0x2d) argument 158 #define bslashchar(c) ((c) == 0x5c) argument 159 #define periodchar(c) ((c) == PERIOD) argument 160 #define asterchar(c) ((c) == 0x2a) argument 161 #define alphachar(c) (((c) >= 0x41 && (c) <= 0x5a) \ argument 163 #define digitchar(c) ((c) >= 0x30 && (c) <= 0x39) argument 164 #define underscorechar(c) ((c) == 0x5f) argument 166 #define borderchar(c) (alphachar(c) || digitchar(c)) argument 167 #define middlechar(c) (borderchar(c) || hyphenchar(c) || underscorechar(c)) argument 168 #define domainchar(c) ((c) > 0x20 && (c) < 0x7f) argument
|
/bionic/libc/kernel/common/linux/mmc/ |
D | card.h | 85 #define mmc_card_present(c) ((c)->state & MMC_STATE_PRESENT) argument 86 #define mmc_card_dead(c) ((c)->state & MMC_STATE_DEAD) argument 87 #define mmc_card_bad(c) ((c)->state & MMC_STATE_BAD) argument 89 #define mmc_card_sd(c) ((c)->state & MMC_STATE_SDCARD) argument 90 #define mmc_card_readonly(c) ((c)->state & MMC_STATE_READONLY) argument 91 #define mmc_card_set_present(c) ((c)->state |= MMC_STATE_PRESENT) argument 92 #define mmc_card_set_dead(c) ((c)->state |= MMC_STATE_DEAD) argument 94 #define mmc_card_set_bad(c) ((c)->state |= MMC_STATE_BAD) argument 95 #define mmc_card_set_sd(c) ((c)->state |= MMC_STATE_SDCARD) argument 96 #define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY) argument [all …]
|
/bionic/libc/stdio/ |
D | putchar.c | 41 putchar_unlocked(int c) in putchar_unlocked() 54 putchar(int c) in putchar()
|
D | putc.c | 44 putc_unlocked(int c, FILE *fp) in putc_unlocked() 59 putc(int c, FILE *fp) in putc()
|
D | fputc.c | 38 fputc(int c, FILE *fp) in fputc()
|
D | wbuf.c | 44 __swbuf(int c, FILE *fp) in __swbuf()
|
D | gets.c | 43 int c; in gets() local
|
D | getc.c | 56 int c; in getc() local
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_floorl.c | 34 #define INC_MANH(u, c) do { \ argument 42 #define INC_MANH(u, c) do { \ argument
|
D | s_ceill.c | 34 #define INC_MANH(u, c) do { \ argument 42 #define INC_MANH(u, c) do { \ argument
|
/bionic/libc/netbsd/inet/ |
D | nsap_addr.c | 46 xtob(int c) { in xtob() 52 u_char c, nib; in inet_nsap_addr() local
|
/bionic/libc/kernel/arch-mips/asm/ |
D | vga.h | 30 #define scr_memcpyw(d, s, c) memcpy(d, s, c) argument 31 #define scr_memmovew(d, s, c) memmove(d, s, c) argument
|
/bionic/libc/netbsd/net/ |
D | reentrant.h | 167 #define cond_init(c, t, a) __libc_cond_init((c), (a)) argument 168 #define cond_signal(c) __libc_cond_signal((c)) argument 169 #define cond_broadcast(c) __libc_cond_broadcast((c)) argument 170 #define cond_wait(c, m) __libc_cond_wait((c), (m)) argument 171 #define cond_timedwait(c, m, t) __libc_cond_timedwait((c), (m), (t)) argument 172 #define cond_destroy(c) __libc_cond_destroy((c)) argument
|
/bionic/libc/upstream-freebsd/lib/libc/string/ |
D | wcschr.c | 33 wcschr(const wchar_t *s, wchar_t c) in wcschr()
|
D | wcsrchr.c | 33 wcsrchr(const wchar_t *s, wchar_t c) in wcsrchr()
|
/bionic/libc/bionic/ |
D | __memset_chk.cpp | 44 extern "C" void *__memset_chk (void *dest, int c, size_t n, size_t dest_len) { in __memset_chk()
|