Searched defs:nmemb (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/upstream-netbsd/lib/libc/stdlib/
H A Dbsearch.c62 bsearch(const void *key, const void *base0, size_t nmemb, size_t size, argument
71 _DIAGASSERT(base0 != NULL || nmemb == 0);
74 for (lim = nmemb; lim != 0; lim >>= 1) {
/bionic/libc/bionic/
H A Dmalloc_debug_check.cpp524 extern "C" void* chk_calloc(size_t nmemb, size_t bytes) { argument
527 return g_malloc_dispatch->calloc(nmemb, bytes);
530 size_t total_bytes = nmemb * bytes;
532 if (size < total_bytes || (nmemb && SIZE_MAX / nmemb < bytes)) { // Overflow

Completed in 116 milliseconds