Searched refs:nptr (Results 1 – 2 of 2) sorted by relevance
/bionic/libc/upstream-netbsd/lib/libc/stdlib/ |
D | reallocarr.c | 61 void *nptr; in __weak_alias() local 67 nptr = NULL; in __weak_alias() 68 memcpy(ptr, &nptr, sizeof(ptr)); in __weak_alias() 85 nptr = realloc(optr, number * size); in __weak_alias() 86 if (__predict_false(nptr == NULL)) { in __weak_alias() 90 memcpy(ptr, &nptr, sizeof(ptr)); in __weak_alias()
|
/bionic/libc/bionic/ |
D | ndk_cruft.cpp | 150 uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n) { in strntoumax() argument 151 const unsigned char* p = (const unsigned char *)nptr; in strntoumax() 198 intmax_t strntoimax(const char* nptr, char** endptr, int base, size_t n) { in strntoimax() argument 199 return (intmax_t) strntoumax(nptr, endptr, base, n); in strntoimax()
|