| /bionic/libc/upstream-openbsd/lib/libc/gen/ |
| D | isctype.c | 42 isalnum(int c) in isalnum() 49 isalpha(int c) in isalpha() 56 isblank(int c) in isblank() 63 iscntrl(int c) in iscntrl() 70 isdigit(int c) in isdigit() 77 isgraph(int c) in isgraph() 84 islower(int c) in islower() 91 isprint(int c) in isprint() 98 ispunct(int c) in ispunct() 105 isspace(int c) in isspace() [all …]
|
| /bionic/libc/bionic/ |
| D | ctype.cpp | 31 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 …]
|
| D | wctype.cpp | 50 int iswalnum_l(wint_t c, locale_t) { return iswalnum(c); } in iswalnum_l() 51 int iswalpha_l(wint_t c, locale_t) { return iswalpha(c); } in iswalpha_l() 52 int iswblank_l(wint_t c, locale_t) { return iswblank(c); } in iswblank_l() 53 int iswcntrl_l(wint_t c, locale_t) { return iswcntrl(c); } in iswcntrl_l() 54 int iswdigit_l(wint_t c, locale_t) { return iswdigit(c); } in iswdigit_l() 55 int iswgraph_l(wint_t c, locale_t) { return iswgraph(c); } in iswgraph_l() 56 int iswlower_l(wint_t c, locale_t) { return iswlower(c); } in iswlower_l() 57 int iswprint_l(wint_t c, locale_t) { return iswprint(c); } in iswprint_l() 58 int iswpunct_l(wint_t c, locale_t) { return iswpunct(c); } in iswpunct_l() 59 int iswspace_l(wint_t c, locale_t) { return iswspace(c); } in iswspace_l() [all …]
|
| D | pthread_exit.cpp | 46 void __pthread_cleanup_push(__pthread_cleanup_t* c, __pthread_cleanup_func_t routine, void* arg) { in __pthread_cleanup_push() 54 void __pthread_cleanup_pop(__pthread_cleanup_t* c, int execute) { in __pthread_cleanup_pop() 71 __pthread_cleanup_t* c = thread->cleanup_stack; in pthread_exit() local
|
| D | __memchr_chk.cpp | 33 extern "C" void* __memchr_chk(const void* s, int c, size_t n, size_t buf_size) { in __memchr_chk()
|
| D | __memrchr_chk.cpp | 33 extern "C" void* __memrchr_chk(const void* s, int c, size_t n, size_t buf_size) { in __memrchr_chk()
|
| /bionic/libc/include/ |
| D | stdint.h | 108 #define INT8_C(c) c argument 109 #define INT_LEAST8_C(c) INT8_C(c) argument 110 #define INT_FAST8_C(c) INT8_C(c) argument 112 #define UINT8_C(c) c argument 113 #define UINT_LEAST8_C(c) UINT8_C(c) argument 114 #define UINT_FAST8_C(c) UINT8_C(c) argument 116 #define INT16_C(c) c argument 117 #define INT_LEAST16_C(c) INT16_C(c) argument 118 #define INT_FAST16_C(c) INT32_C(c) argument 120 #define UINT16_C(c) c argument [all …]
|
| D | string.h | 149 void* memchr(const void *s, int c, size_t n) { in memchr() 170 void* memrchr(const void *s, int c, size_t n) { in memrchr() 263 void* memset(void *s, int c, size_t n) { in memset() 328 char* strchr(const char *s, int c) { in strchr() 347 char* strrchr(const char *s, int c) { in strrchr()
|
| /bionic/tests/ |
| D | uniqueptr_test.cpp | 43 UniquePtr<C> c(new C); in TEST() local 50 UniquePtr<C> c(new C); in TEST() local 58 UniquePtr<C> c(new C); in TEST() local 77 UniquePtr<C[]> c(new C[4]); in TEST() local 85 UniquePtr<C[]> c(new C[4]); in TEST() local
|
| /bionic/linker/tests/ |
| D | linked_list_test.cpp | 51 list.for_each([&] (const char* c) { in test_list_to_string() 78 list.remove_if([] (const char* c) { in TEST() 87 list.remove_if([] (const char* c) { in TEST() 125 list.remove_if([](const char* c) { in TEST() 144 list.remove_if([](const char* c) { in TEST() 181 list.remove_if([](const char* c) { in TEST() 190 list.remove_if([](const char* c) { in TEST() 207 bool result = list.visit([&](const char* c) { in TEST() 220 result = list.visit([&](const char* c) { in TEST()
|
| /bionic/libc/dns/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/upstream-openbsd/lib/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() 60 putc(int c, FILE *fp) in putc()
|
| D | fputc.c | 38 fputc(int c, FILE *fp) in fputc()
|
| D | gets.c | 43 int c; in gets() local
|
| D | wbuf.c | 44 __swbuf(int c, FILE *fp) in __swbuf()
|
| /bionic/libm/upstream-freebsd/lib/msun/src/ |
| D | s_ceill.c | 34 #define INC_MANH(u, c) do { \ argument 42 #define INC_MANH(u, c) do { \ argument
|
| D | s_floorl.c | 34 #define INC_MANH(u, c) do { \ argument 42 #define INC_MANH(u, c) do { \ 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()
|
| D | wmemchr.c | 40 wmemchr(const wchar_t *s, wchar_t c, size_t n) in wmemchr()
|
| /bionic/libc/arch-arm/bionic/ |
| D | __aeabi.c | 118 void __attribute__((weak)) __aeabi_memset8_impl(void *dest, size_t n, int c) { in __aeabi_memset8_impl() 122 void __attribute__((weak)) __aeabi_memset4_impl(void *dest, size_t n, int c) { in __aeabi_memset4_impl() 126 void __attribute__((weak)) __aeabi_memset_impl(void *dest, size_t n, int c) { in __aeabi_memset_impl() 130 void __attribute__((weak)) __aeabi_memset8_impl2(void *dest, size_t n, int c) { in __aeabi_memset8_impl2() 134 void __attribute__((weak)) __aeabi_memset4_impl2(void *dest, size_t n, int c) { in __aeabi_memset4_impl2() 138 void __attribute__((weak)) __aeabi_memset_impl2(void *dest, size_t n, int c) { in __aeabi_memset_impl2()
|
| /bionic/libc/upstream-openbsd/lib/libc/locale/ |
| D | wctob.c | 34 wctob(wint_t c) in wctob()
|
| /bionic/libc/kernel/uapi/linux/ |
| D | version.h | 20 #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) argument
|
| /bionic/libc/upstream-openbsd/lib/libc/string/ |
| D | memrchr.c | 26 memrchr(const void *s, int c, size_t n) in memrchr()
|