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

/system/core/sh/
H A Dmemalloc.c59 ckmalloc(int nbytes) argument
63 p = malloc(nbytes);
75 ckrealloc(pointer p, int nbytes) argument
77 p = realloc(p, nbytes);
124 stalloc(int nbytes) argument
128 nbytes = SHELL_ALIGN(nbytes);
129 if (nbytes > stacknleft) {
133 blocksize = nbytes;
145 stacknxt += nbytes;
[all...]
H A Doutput.c479 xwrite(int fd, char *buf, int nbytes) argument
485 n = nbytes;
491 return nbytes;
496 return nbytes - n;

Completed in 404 milliseconds