Home
last modified time | relevance | path

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

1234

/bionic/libc/stdlib/
Dctype_.c81 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 …]
Dtolower_.c52 tolower(int c) in tolower()
Dtoupper_.c53 toupper(int c) in toupper()
/bionic/libc/include/
Dctype.h98 __CTYPE_INLINE int isalnum(int c) in isalnum()
103 __CTYPE_INLINE int isalpha(int c) in isalpha()
108 __CTYPE_INLINE int iscntrl(int c) in iscntrl()
113 __CTYPE_INLINE int isdigit(int c) in isdigit()
118 __CTYPE_INLINE int isgraph(int c) in isgraph()
123 __CTYPE_INLINE int islower(int c) in islower()
128 __CTYPE_INLINE int isprint(int c) in isprint()
133 __CTYPE_INLINE int ispunct(int c) in ispunct()
138 __CTYPE_INLINE int isspace(int c) in isspace()
143 __CTYPE_INLINE int isupper(int c) in isupper()
[all …]
Dstdint.h84 # define INT8_C(c) c argument
85 # define INT_LEAST8_C(c) INT8_C(c) argument
86 # define INT_FAST8_C(c) INT8_C(c) argument
88 # define UINT8_C(c) c ## U argument
89 # define UINT_LEAST8_C(c) UINT8_C(c) argument
90 # define UINT_FAST8_C(c) UINT8_C(c) argument
118 # define INT16_C(c) c argument
119 # define INT_LEAST16_C(c) INT16_C(c) argument
120 # define INT_FAST16_C(c) INT32_C(c) argument
122 # define UINT16_C(c) c ## U argument
[all …]
/bionic/libc/kernel/common/linux/
Dctype.h26 #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0) argument
27 #define isalpha(c) ((__ismask(c)&(_U|_L)) != 0) argument
28 #define iscntrl(c) ((__ismask(c)&(_C)) != 0) argument
29 #define isdigit(c) ((__ismask(c)&(_D)) != 0) argument
30 #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0) argument
31 #define islower(c) ((__ismask(c)&(_L)) != 0) argument
32 #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) argument
33 #define ispunct(c) ((__ismask(c)&(_P)) != 0) argument
34 #define isspace(c) ((__ismask(c)&(_S)) != 0) argument
35 #define isupper(c) ((__ismask(c)&(_U)) != 0) argument
[all …]
Ddebug_locks.h20 #define DEBUG_LOCKS_WARN_ON(c) ({ int __ret = 0; if (unlikely(c)) { if (debug_locks_off())… argument
22 #define SMP_DEBUG_LOCKS_WARN_ON(c) do { } while (0) argument
Dvt_buffer.h18 #define scr_memcpyw(d, s, c) memcpy(d, s, c) argument
19 #define scr_memmovew(d, s, c) memmove(d, s, c) argument
Dversion.h13 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) argument
/bionic/libc/netbsd/resolv/
Dres_comp.c157 #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/
Dcard.h72 #define mmc_card_present(c) ((c)->state & MMC_STATE_PRESENT) argument
73 #define mmc_card_dead(c) ((c)->state & MMC_STATE_DEAD) argument
74 #define mmc_card_bad(c) ((c)->state & MMC_STATE_BAD) argument
75 #define mmc_card_sd(c) ((c)->state & MMC_STATE_SDCARD) argument
76 #define mmc_card_readonly(c) ((c)->state & MMC_STATE_READONLY) argument
78 #define mmc_card_set_present(c) ((c)->state |= MMC_STATE_PRESENT) argument
79 #define mmc_card_set_dead(c) ((c)->state |= MMC_STATE_DEAD) argument
80 #define mmc_card_set_bad(c) ((c)->state |= MMC_STATE_BAD) argument
81 #define mmc_card_set_sd(c) ((c)->state |= MMC_STATE_SDCARD) argument
82 #define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY) argument
[all …]
/bionic/libc/stdio/
Dputchar.c41 putchar_unlocked(int c) in putchar_unlocked()
54 putchar(int c) in putchar()
Dputc.c44 putc_unlocked(int c, FILE *fp) in putc_unlocked()
59 putc(int c, FILE *fp) in putc()
Dfputc.c39 fputc(int c, FILE *fp) in fputc()
Dgets.c42 int c; in gets() local
Dwbuf.c44 __swbuf(int c, FILE *fp) in __swbuf()
Dgetc.c55 int c; in getc() local
Dputs.c44 size_t c = strlen(s); in puts() local
/bionic/libm/src/
Ds_ceill.c35 #define INC_MANH(u, c) do { \ argument
43 #define INC_MANH(u, c) do { \ argument
Ds_floorl.c35 #define INC_MANH(u, c) do { \ argument
43 #define INC_MANH(u, c) do { \ argument
/bionic/libc/netbsd/inet/
Dnsap_addr.c46 xtob(int c) { in xtob()
52 u_char c, nib; in inet_nsap_addr() local
/bionic/libc/unistd/
Dfnmatch.c58 char c, test; in fnmatch() local
157 char c, c2; in rangematch() local
/bionic/libc/netbsd/net/
Dreentrant.h167 #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/string/
Dstrcasestr.c45 char c, sc; in strcasestr() local
Dmemrchr.c31 void *memrchr(const void *s, int c, size_t n) in memrchr()

1234