Lines Matching defs:nbytes
95 malloc(size_t nbytes)
140 if (nbytes <= (n = pagesz - sizeof (*op))) {
148 while (nbytes > amt + n) {
262 realloc(void *cp, size_t nbytes)
270 if (nbytes == 0) {
275 return (malloc(nbytes));
294 if ((res = malloc(nbytes)) != NULL)
295 (void) memmove(res, cp, nbytes);
314 if (nbytes <= onb && nbytes > sz) {
319 if ((res = malloc(nbytes)) == NULL)
322 (void) memmove(res, cp, (nbytes < onb) ? nbytes : onb);