Lines Matching refs:amt
101 size_t amt; in malloc() local
129 amt = (1UL << EXP); in malloc()
130 while (pagesz > amt) { in malloc()
131 amt <<= 1; in malloc()
142 amt = (1UL << EXP); /* size of first bucket */ in malloc()
146 amt = pagesz; in malloc()
149 while (nbytes > amt + n) { in malloc()
150 amt <<= 1; in malloc()
151 if (amt == 0) in malloc()
179 ssize_t amt; /* amount to allocate */ in morecore() local
186 amt = pagesz; in morecore()
187 nblks = amt / sz; in morecore()
189 amt = sz + pagesz; in morecore()
192 if (amt <= 0) in morecore()
194 if (amt > LONG_MAX) { in morecore()
208 amt -= LONG_MAX; in morecore()
209 delta = amt; in morecore()
213 op = sbrk(amt); in morecore()