Home
last modified time | relevance | path

Searched refs:nbytes (Results 1 – 1 of 1) sorted by relevance

/busybox-1.35.0/shell/
Dash.c1508 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) argument
1605 stalloc(size_t nbytes) in stalloc() argument
1610 aligned = SHELL_ALIGN(nbytes); in stalloc()
1638 stzalloc(size_t nbytes) in stzalloc() argument
[all …]