Home | History | Annotate | Download | only in sh

Lines Matching refs:nbytes

59 ckmalloc(int nbytes)
63 p = malloc(nbytes);
75 ckrealloc(pointer p, int nbytes)
77 p = realloc(p, nbytes);
124 stalloc(int nbytes)
128 nbytes = SHELL_ALIGN(nbytes);
129 if (nbytes > stacknleft) {
133 blocksize = nbytes;
145 stacknxt += nbytes;
146 stacknleft -= nbytes;