Home
last modified time | relevance | path

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

12345

/bionic/libc/upstream-openbsd/lib/libc/gen/
Disctype.c42 isalnum(int c) in isalnum()
50 isalpha(int c) in isalpha()
58 isblank(int c) in isblank()
66 iscntrl(int c) in iscntrl()
74 isdigit(int c) in isdigit()
82 isgraph(int c) in isgraph()
90 islower(int c) in islower()
98 isprint(int c) in isprint()
106 ispunct(int c) in ispunct()
114 isspace(int c) in isspace()
[all …]
Dtoupper_.c56 toupper(int c) in toupper()
Dtolower_.c55 tolower(int c) in tolower()
/bionic/libc/bionic/
Dctype.cpp31 int isalnum_l(int c, locale_t) { in isalnum_l()
35 int isalpha_l(int c, locale_t) { in isalpha_l()
39 int isblank_l(int c, locale_t) { in isblank_l()
43 int iscntrl_l(int c, locale_t) { in iscntrl_l()
47 int isdigit_l(int c, locale_t) { in isdigit_l()
51 int isgraph_l(int c, locale_t) { in isgraph_l()
55 int islower_l(int c, locale_t) { in islower_l()
59 int isprint_l(int c, locale_t) { in isprint_l()
63 int ispunct_l(int c, locale_t) { in ispunct_l()
67 int isspace_l(int c, locale_t) { in isspace_l()
[all …]
Dwctype.cpp84 int iswalnum_l(wint_t c, locale_t) { return iswalnum(c); } in iswalnum_l()
85 int iswalpha_l(wint_t c, locale_t) { return iswalpha(c); } in iswalpha_l()
86 int iswblank_l(wint_t c, locale_t) { return iswblank(c); } in iswblank_l()
87 int iswcntrl_l(wint_t c, locale_t) { return iswcntrl(c); } in iswcntrl_l()
88 int iswdigit_l(wint_t c, locale_t) { return iswdigit(c); } in iswdigit_l()
89 int iswgraph_l(wint_t c, locale_t) { return iswgraph(c); } in iswgraph_l()
90 int iswlower_l(wint_t c, locale_t) { return iswlower(c); } in iswlower_l()
91 int iswprint_l(wint_t c, locale_t) { return iswprint(c); } in iswprint_l()
92 int iswpunct_l(wint_t c, locale_t) { return iswpunct(c); } in iswpunct_l()
93 int iswspace_l(wint_t c, locale_t) { return iswspace(c); } in iswspace_l()
[all …]
Dpthread_exit.cpp51 void __pthread_cleanup_push(__pthread_cleanup_t* c, __pthread_cleanup_func_t routine, void* arg) { in __pthread_cleanup_push()
60 void __pthread_cleanup_pop(__pthread_cleanup_t* c, int execute) { in __pthread_cleanup_pop()
78 __pthread_cleanup_t* c = thread->cleanup_stack; in pthread_exit() local
/bionic/libc/include/
Dstdint.h109 #define INT8_C(c) c argument
110 #define INT_LEAST8_C(c) INT8_C(c) argument
111 #define INT_FAST8_C(c) INT8_C(c) argument
113 #define UINT8_C(c) c argument
114 #define UINT_LEAST8_C(c) UINT8_C(c) argument
115 #define UINT_FAST8_C(c) UINT8_C(c) argument
117 #define INT16_C(c) c argument
118 #define INT_LEAST16_C(c) INT16_C(c) argument
119 #define INT_FAST16_C(c) INT32_C(c) argument
121 #define UINT16_C(c) c argument
[all …]
Dstring.h155 void* __bionic_memchr(const void* const s __pass_object_size, int c, size_t n) { in __bionic_memchr()
160 const void* memchr(const void* const s __pass_object_size, int c, size_t n) in memchr()
166 void* memchr(void* const s __pass_object_size, int c, size_t n) __prefer_this_overload { in memchr()
171 char* __bionic_strchr(const char* const s __pass_object_size, int c) { in __bionic_strchr()
176 const char* strchr(const char* const s __pass_object_size, int c) in strchr()
182 char* strchr(char* const s __pass_object_size, int c) in strchr()
188 char* __bionic_strrchr(const char* const s __pass_object_size, int c) { in __bionic_strrchr()
193 const char* strrchr(const char* const s __pass_object_size, int c) __prefer_this_overload { in strrchr()
198 char* strrchr(char* const s __pass_object_size, int c) __prefer_this_overload { in strrchr()
/bionic/linker/
Dlinked_list_test.cpp63 list.for_each([&] (const char* c) { in test_list_to_string()
90 list.remove_if([] (const char* c) { in TEST()
99 list.remove_if([] (const char* c) { in TEST()
137 list.remove_if([](const char* c) { in TEST()
156 list.remove_if([](const char* c) { in TEST()
193 list.remove_if([](const char* c) { in TEST()
202 list.remove_if([](const char* c) { in TEST()
219 bool result = list.visit([&](const char* c) { in TEST()
232 result = list.visit([&](const char* c) { in TEST()
/bionic/libc/dns/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/include/bits/fortify/
Dstring.h93 void* memset(void* const s __pass_object_size0, int c, size_t n) in memset()
105 void* memchr(const void* const s __pass_object_size, int c, size_t n) __overloadable { in memchr()
116 void* __memrchr_fortify(const void* const __pass_object_size s, int c, size_t n) __overloadable { in __memrchr_fortify()
207 char* strchr(const char* const s __pass_object_size, int c) __overloadable { in strchr()
218 char* strrchr(const char* const s __pass_object_size, int c) __overloadable { in strrchr()
233 void* memrchr(void* const __pass_object_size s, int c, size_t n) { in memrchr()
238 const void* memrchr(const void* const __pass_object_size s, int c, size_t n) { in memrchr()
244 void* memrchr(const void* const __pass_object_size s, int c, size_t n) __overloadable { in memrchr()
/bionic/libm/upstream-freebsd/lib/msun/src/
Ds_ceill.c34 #define INC_MANH(u, c) do { \ argument
42 #define INC_MANH(u, c) do { \ argument
Ds_floorl.c34 #define INC_MANH(u, c) do { \ argument
42 #define INC_MANH(u, c) do { \ argument
/bionic/tests/
Diconv_test.cpp38 iconv_t c; in TEST() local
57 iconv_t c = iconv_open("UTF-32LE", "UTF-8"); in TEST() local
83 iconv_t c = iconv_open("ASCII//TRANSLIT", "UTF-8"); in TEST() local
112 iconv_t c = iconv_open("ASCII//IGNORE", "UTF-8"); in TEST() local
140 iconv_t c = iconv_open("ASCII", "UTF-8"); in TEST() local
166 iconv_t c = iconv_open("UTF-8", "UTF-8"); in TEST() local
199 iconv_t c = iconv_open("UTF-8", "UTF-8"); in TEST() local
226 iconv_t c = iconv_open("UTF-8", "UTF-8"); in TEST() local
295 iconv_t c = iconv_open(dst_enc, "UTF-8"); in RoundTrip() local
363 iconv_t c = iconv_open("wchar_t", src_enc); in Check() local
[all …]
/bionic/libc/arch-arm/bionic/
D__aeabi.c116 void __attribute__((weak)) __aeabi_memset8_impl(void *dest, size_t n, int c) { in __aeabi_memset8_impl()
120 void __attribute__((weak)) __aeabi_memset4_impl(void *dest, size_t n, int c) { in __aeabi_memset4_impl()
124 void __attribute__((weak)) __aeabi_memset_impl(void *dest, size_t n, int c) { in __aeabi_memset_impl()
128 void __attribute__((weak)) __aeabi_memset8_impl2(void *dest, size_t n, int c) { in __aeabi_memset8_impl2()
132 void __attribute__((weak)) __aeabi_memset4_impl2(void *dest, size_t n, int c) { in __aeabi_memset4_impl2()
136 void __attribute__((weak)) __aeabi_memset_impl2(void *dest, size_t n, int c) { in __aeabi_memset_impl2()
/bionic/libc/upstream-freebsd/lib/libc/string/
Dwcschr.c33 wcschr(const wchar_t *s, wchar_t c) in wcschr()
Dwcsrchr.c33 wcsrchr(const wchar_t *s, wchar_t c) in wcsrchr()
Dwmemchr.c40 wmemchr(const wchar_t *s, wchar_t c, size_t n) in wmemchr()
/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dwbuf.c44 __swbuf(int c, FILE *fp) in __swbuf()
Dgets.c43 int c; in gets() local
/bionic/libc/upstream-openbsd/lib/libc/locale/
Dwctob.c34 wctob(wint_t c) in wctob()
Dbtowc.c34 btowc(int c) in btowc()
/bionic/libc/upstream-openbsd/lib/libc/string/
Dmemrchr.c26 memrchr(const void *s, int c, size_t n) in memrchr()
Dmemchr.c37 memchr(const void *s, int c, size_t n) in memchr()
/bionic/libc/kernel/uapi/linux/
Dversion.h20 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) argument

12345