/bionic/libc/bionic/ |
D | fts.c | 56 #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) &~ ALIGNBYTES) argument 77 FTSENT *p, *root; in fts_open() local 182 fts_load(FTS *sp, FTSENT *p) in fts_load() 208 FTSENT *freep, *p; in fts_close() local 252 #define NAPPEND(p) \ argument 259 FTSENT *p, *tmp; in fts_read() local 452 fts_set(FTS *sp __unused, FTSENT *p, int instr) in fts_set() 466 FTSENT *p; in fts_children() local 549 FTSENT *p, *head; in fts_build() local 794 fts_stat(FTS *sp, FTSENT *p, int follow, int dfd) in fts_stat() [all …]
|
D | strchr.cpp | 33 char* strchr(const char* p, int ch) { in strchr()
|
D | strrchr.cpp | 33 char* strrchr(const char* p, int ch) { in strrchr()
|
D | strnlen.c | 32 char* p = memchr(str, 0, maxlen); in strnlen() local
|
D | __strchr_chk.cpp | 33 extern "C" char* __strchr_chk(const char* p, int ch, size_t s_len) { in __strchr_chk()
|
D | new.cpp | 26 void* p = malloc(size); in operator new() local 34 void* p = malloc(size); in operator new[]() local
|
D | __strrchr_chk.cpp | 33 extern "C" char* __strrchr_chk(const char *p, int ch, size_t s_len) { in __strrchr_chk()
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | regcomp.c | 215 #define MEMSIZE(p) \ argument 241 struct parse *p = &pa; in regcomp() local 342 struct parse *p, in p_ere() 396 struct parse *p, in p_ere_exp() 548 struct parse *p) in p_str() 572 struct parse *p, in p_bre() 615 struct parse *p, in p_simp_re() 735 struct parse *p) in p_count() 760 struct parse *p) in p_bracket() 841 struct parse *p, in p_b_term() [all …]
|
/bionic/libc/stdio/ |
D | local.h | 123 #define __sfeof(p) (((p)->_flags & __SEOF) != 0) argument 124 #define __sferror(p) (((p)->_flags & __SERR) != 0) argument 125 #define __sclearerr(p) ((void)((p)->_flags &= ~(__SERR|__SEOF))) argument 126 #define __sfileno(p) ((p)->_file) argument 128 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++)) argument
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | fgetln.c | 45 void *p; in __slbexpand() local 66 unsigned char *p; in fgetln() local
|
D | ungetc.c | 50 unsigned char *p; in __submore() local
|
/bionic/libc/upstream-netbsd/lib/libc/include/isc/ |
D | memcluster.h | 28 #define memput(p, s) __memput_debug(p, s, __FILE__, __LINE__) argument 32 #define memput(p, s) __memput_record(p, s, __FILE__, __LINE__) argument
|
/bionic/libc/upstream-freebsd/lib/libc/string/ |
D | wcslen.c | 42 const wchar_t *p; in wcslen() local
|
D | wcspbrk.c | 42 const wchar_t *p; in wcspbrk() local
|
D | wcsspn.c | 42 const wchar_t *p; in wcsspn() local
|
D | wcscspn.c | 42 const wchar_t *p; in wcscspn() local
|
D | wmemset.c | 43 wchar_t *p; in wmemset() local
|
D | wcsncat.c | 42 wchar_t *p; in wcsncat() local
|
/bionic/libc/stdlib/ |
D | atexit.c | 78 struct atexit *p = __atexit; in __cxa_atexit() local 129 struct atexit *p, *q; in __cxa_finalize() local 193 struct atexit *p; in __atexit_register_cleanup() local
|
/bionic/libc/upstream-openbsd/lib/libc/string/ |
D | memchr.c | 40 const unsigned char *p = s; in memchr() local
|
D | wcsstr.c | 41 const wchar_t *p; in wcswcs() local
|
D | strcspn.c | 42 const char *p, *spanp; in strcspn() local
|
D | strspn.c | 39 const char *p = s1, *spanp; in strspn() local
|
/bionic/libc/upstream-openbsd/lib/libc/net/ |
D | inet_ntoa.c | 44 char *p; in inet_ntoa() local
|
/bionic/libc/upstream-dlmalloc/ |
D | malloc.c | 2218 #define chunk2mem(p) ((void*)((char*)(p) + TWO_SIZE_T_SIZES)) argument 2256 #define cinuse(p) ((p)->head & CINUSE_BIT) argument 2257 #define pinuse(p) ((p)->head & PINUSE_BIT) argument 2258 #define flag4inuse(p) ((p)->head & FLAG4_BIT) argument 2259 #define is_inuse(p) (((p)->head & INUSE_BITS) != PINUSE_BIT) argument 2260 #define is_mmapped(p) (((p)->head & INUSE_BITS) == 0) argument 2262 #define chunksize(p) ((p)->head & ~(FLAG_BITS)) argument 2264 #define clear_pinuse(p) ((p)->head &= ~PINUSE_BIT) argument 2265 #define set_flag4(p) ((p)->head |= FLAG4_BIT) argument 2266 #define clear_flag4(p) ((p)->head &= ~FLAG4_BIT) argument [all …]
|