Lines Matching defs:nbytes
81 malloc(nbytes)
82 unsigned nbytes;
89 nw = (nbytes+WORD+WORD-1)/WORD + 1; /*need one more than asked for*/
156 /* ialloc(q, nbytes) inserts a block that did not come
164 ialloc(qq, nbytes)
166 unsigned nbytes;
172 r = q + (nbytes/WORD) - 1;
195 /* realloc(p, nbytes) reallocates a block obtained from malloc()
197 * to have new size nbytes, and old content
202 realloc(pp, nbytes)
204 unsigned nbytes;
216 q = (union store *)malloc(nbytes);
222 nw = (nbytes+WORD-1)/WORD;