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

/illumos-gate/usr/src/cmd/mandoc/
H A Dcompat_reallocarray.c39 reallocarray(void *optr, size_t nmemb, size_t size) argument
41 if ((nmemb >= MUL_NO_OVERFLOW || size >= MUL_NO_OVERFLOW) &&
42 nmemb > 0 && SIZE_MAX / nmemb < size) {
46 return realloc(optr, size * nmemb);
/illumos-gate/usr/src/uts/common/io/drm/
H A Ddrm_memory.c71 drm_calloc(size_t nmemb, size_t size, int area) argument
73 return (kmem_zalloc(size * nmemb, KM_NOSLEEP));

Completed in 66 milliseconds