Lines Matching refs:nget
502 ssize_t nget; /* number of words to get */ in malloc_unlocked() local
522 nget = nb + HEADSZ; in malloc_unlocked()
524 nget = (nget + BLOCKSZ - 1)/BLOCKSZ * BLOCKSZ; in malloc_unlocked()
527 if (morecore(nget) == (void *)-1) in malloc_unlocked()
530 newend = (struct header *)((char *)newblk + nget in malloc_unlocked()
549 nget = (nb + BLOCKSZ - 1) / BLOCKSZ * BLOCKSZ; in malloc_unlocked()
550 if (morecore(nget) == (void *)-1) in malloc_unlocked()
561 (struct header *)((char *)arenaend+nget); in malloc_unlocked()
573 nget = nb - in malloc_unlocked()
575 nget = (nget + (BLOCKSZ - 1)) / in malloc_unlocked()
578 if (morecore(nget) == (void *)-1) in malloc_unlocked()
582 ((char *)arenaend + nget); in malloc_unlocked()