/bionic/libc/include/ |
D | stdint.h | 109 #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 …]
|
D | string.h | 195 void* _Nullable __bionic_memchr(const void* _Nonnull const s __pass_object_size, int c, size_t n) { in __bionic_memchr() 200 const void* _Nullable memchr(const void* _Nonnull const s __pass_object_size, int c, size_t n) in memchr() 206 void* _Nullable memchr(void* _Nonnull const s __pass_object_size, int c, size_t n) __prefer_this_ov… in memchr() 211 char* _Nullable __bionic_strchr(const char* _Nonnull const s __pass_object_size, int c) { in __bionic_strchr() 216 const char* _Nullable strchr(const char* _Nonnull const s __pass_object_size, int c) in strchr() 222 char* _Nullable strchr(char* _Nonnull const s __pass_object_size, int c) in strchr() 228 char* _Nullable __bionic_strrchr(const char* _Nonnull const s __pass_object_size, int c) { in __bionic_strrchr() 233 const char* _Nullable strrchr(const char* _Nonnull const s __pass_object_size, int c) __prefer_this… in strrchr() 238 char* _Nullable strrchr(char* _Nonnull const s __pass_object_size, int c) __prefer_this_overload { in strrchr()
|
/bionic/libc/bionic/ |
D | wctype.cpp | 84 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 …]
|
D | pthread_exit.cpp | 52 void __pthread_cleanup_push(__pthread_cleanup_t* c, __pthread_cleanup_func_t routine, void* arg) { in __pthread_cleanup_push() 61 void __pthread_cleanup_pop(__pthread_cleanup_t* c, int execute) { in __pthread_cleanup_pop() 79 __pthread_cleanup_t* c = thread->cleanup_stack; in pthread_exit() local
|
/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/linker/ |
D | linked_list_test.cpp | 63 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/include/bits/fortify/ |
D | string.h | 129 void* _Nonnull memset(void* _Nonnull const s __pass_object_size0, int c, size_t n) __overloadable in memset() 142 void* _Nullable memchr(const void* _Nonnull const s __pass_object_size, int c, size_t n) __overload… in memchr() 153 void* _Nullable __memrchr_fortify(const void* _Nonnull const __pass_object_size s, int c, size_t n)… in __memrchr_fortify() 230 char* _Nullable strchr(const char* _Nonnull const s __pass_object_size, int c) __overloadable { in strchr() 242 char* _Nullable strrchr(const char* _Nonnull const s __pass_object_size, int c) __overloadable { in strrchr() 257 void* _Nullable memrchr(void* _Nonnull const __pass_object_size s, int c, size_t n) { in memrchr() 262 const void* _Nullable memrchr(const void* _Nonnull const __pass_object_size s, int c, size_t n) { in memrchr() 268 void* _Nullable memrchr(const void* _Nonnull const __pass_object_size s, int c, size_t n) __overloa… in memrchr()
|
/bionic/tests/ |
D | iconv_test.cpp | 40 iconv_t c; in TEST() local 59 iconv_t c = iconv_open("UTF-32LE", "UTF-8"); in TEST() local 85 iconv_t c = iconv_open("ASCII//TRANSLIT", "UTF-8"); in TEST() local 114 iconv_t c = iconv_open("ASCII//IGNORE", "UTF-8"); in TEST() local 142 iconv_t c = iconv_open("ASCII", "UTF-8"); in TEST() local 168 iconv_t c = iconv_open("UTF-8", "UTF-8"); in TEST() local 201 iconv_t c = iconv_open("UTF-8", "UTF-8"); in TEST() local 228 iconv_t c = iconv_open("UTF-8", "UTF-8"); in TEST() local 297 iconv_t c = iconv_open(dst_enc, "UTF-8"); in RoundTrip() local 365 iconv_t c = iconv_open("wchar_t", src_enc); in Check() local [all …]
|
D | syslog_test.cpp | 80 for (auto c = array; c->c_name != nullptr; c++) { in by_name() local 87 for (auto c = array; c->c_name != nullptr; c++) { in by_value() local
|
/bionic/libc/arch-arm/bionic/ |
D | __aeabi.c | 116 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/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
|
D | e_jn.c | 57 double a, b, c, s, temp, di; in jn() local 220 double a, b, c, s, temp; in yn() local
|
/bionic/libc/upstream-netbsd/common/lib/libc/hash/sha1/ |
D | sha1.c | 84 uint8_t c[64]; member 107 do_R01(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) in do_R01() 117 do_R2(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) in do_R2() 127 do_R3(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) in do_R3() 137 do_R4(uint32_t *a, uint32_t *b, uint32_t *c, uint32_t *d, uint32_t *e, CHAR64LONG16 *block) in do_R4() 152 uint32_t a, b, c, d, e; in SHA1Transform() local
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | utils.h | 61 #define iswctype(c, t) __regex_iswctype((c), (t)) argument 82 #define memmove(d, s, c) bcopy(s, d, c) argument
|
D | regcomp.c | 198 #define SEE(c) (MORE() && PEEK() == (c)) argument 201 #define EAT(c) ((SEE(c)) ? (NEXT(), 1) : 0) argument 211 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e)) argument 212 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e)) argument 213 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e)) argument 260 __regex_iswctype(wint_t c, wctype_t ct) in __regex_iswctype() 443 char c; in p_ere_exp() local 886 int c; in p_simp_re() local 1178 char c; local 1261 p_b_pseudoclass(struct parse *p, char c) { [all …]
|
/bionic/libc/upstream-freebsd/lib/libc/gen/ |
D | glob.c | 138 #define CHAR(c) ((Char)((c)&M_CHAR)) argument 139 #define META(c) ((Char)((c)|M_QUOTE)) argument 140 #define UNPROT(c) ((c) & ~M_PROTECT) argument 147 #define ismeta(c) (((c)&M_QUOTE) != 0) argument 149 #define isprot(c) (((c)&M_PROTECT) != 0) argument 537 Char *bufnext, c, patbuf[MAXPATHLEN]; in glob0() local 913 Char c, k, *nextp, *nextn; in match() local
|
/bionic/libc/stdio/ |
D | scanf_common.h | 84 #define to_digit(c) static_cast<int>((c) - '0') argument 85 #define is_digit(c) (static_cast<unsigned>(to_digit(c)) <= 9) argument
|
D | vfscanf.cpp | 43 int c; /* character from format, or conversion */ in __svfscanf() local 710 int c, n, v; in __sccl() local
|
D | parsefloat.c | 47 unsigned char c; in parsefloat() local 195 wint_t c; in wparsefloat() local
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
D | smisc.c | 129 int c, d; local 145 copybits(c, n, b) ULong *c; int n; Bigint *b; in copybits() argument
|
/bionic/libc/upstream-freebsd/lib/libc/string/ |
D | wcschr.c | 35 wcschr(const wchar_t *s, wchar_t c) in wcschr()
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | gets.c | 43 int c; in gets() local
|
D | wbuf.c | 43 __swbuf(int c, FILE *fp) in __swbuf()
|
/bionic/libc/upstream-openbsd/lib/libc/locale/ |
D | wctob.c | 34 wctob(wint_t c) in wctob()
|