Searched refs:nbytes (Results 1 – 1 of 1) sorted by relevance
1508 ckrealloc(void * p, size_t nbytes)1510 p = realloc(p, nbytes);1517 ckmalloc(size_t nbytes)1519 return ckrealloc(NULL, nbytes);1523 ckzalloc(size_t nbytes)1525 return memset(ckmalloc(nbytes), 0, nbytes);1548 #define SHELL_ALIGN(nbytes) (((nbytes) + SHELL_SIZE) & ~SHELL_SIZE) argument1605 stalloc(size_t nbytes) in stalloc() argument1610 aligned = SHELL_ALIGN(nbytes); in stalloc()1638 stzalloc(size_t nbytes) in stzalloc() argument[all …]