Home
last modified time | relevance | path

Searched defs:p (Results 1 – 25 of 115) sorted by relevance

12345

/bionic/libc/bionic/
Dfts.c56 #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 …]
Dstrchr.cpp33 char* strchr(const char* p, int ch) { in strchr()
Dstrrchr.cpp33 char* strrchr(const char* p, int ch) { in strrchr()
Dstrnlen.c32 char* p = memchr(str, 0, maxlen); in strnlen() local
D__strchr_chk.cpp33 extern "C" char* __strchr_chk(const char* p, int ch, size_t s_len) { in __strchr_chk()
Dnew.cpp26 void* p = malloc(size); in operator new() local
34 void* p = malloc(size); in operator new[]() local
D__strrchr_chk.cpp33 extern "C" char* __strrchr_chk(const char *p, int ch, size_t s_len) { in __strrchr_chk()
/bionic/libc/upstream-netbsd/lib/libc/regex/
Dregcomp.c215 #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/
Dlocal.h123 #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/
Dfgetln.c45 void *p; in __slbexpand() local
66 unsigned char *p; in fgetln() local
Dungetc.c50 unsigned char *p; in __submore() local
/bionic/libc/upstream-netbsd/lib/libc/include/isc/
Dmemcluster.h28 #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/
Dwcslen.c42 const wchar_t *p; in wcslen() local
Dwcspbrk.c42 const wchar_t *p; in wcspbrk() local
Dwcsspn.c42 const wchar_t *p; in wcsspn() local
Dwcscspn.c42 const wchar_t *p; in wcscspn() local
Dwmemset.c43 wchar_t *p; in wmemset() local
Dwcsncat.c42 wchar_t *p; in wcsncat() local
/bionic/libc/stdlib/
Datexit.c78 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/
Dmemchr.c40 const unsigned char *p = s; in memchr() local
Dwcsstr.c41 const wchar_t *p; in wcswcs() local
Dstrcspn.c42 const char *p, *spanp; in strcspn() local
Dstrspn.c39 const char *p = s1, *spanp; in strspn() local
/bionic/libc/upstream-openbsd/lib/libc/net/
Dinet_ntoa.c44 char *p; in inet_ntoa() local
/bionic/libc/upstream-dlmalloc/
Dmalloc.c2218 #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 …]

12345