Lines Matching refs:amt
102 size_t amt; in malloc() local
130 amt = (1UL << EXP); in malloc()
131 while (pagesz > amt) { in malloc()
132 amt <<= 1; in malloc()
143 amt = (1UL << EXP); /* size of first bucket */ in malloc()
147 amt = pagesz; in malloc()
150 while (nbytes > amt + n) { in malloc()
151 amt <<= 1; in malloc()
152 if (amt == 0) in malloc()
180 ssize_t amt; /* amount to allocate */ in morecore() local
187 amt = pagesz; in morecore()
188 nblks = amt / sz; in morecore()
190 amt = sz + pagesz; in morecore()
193 if (amt <= 0) in morecore()
195 if (amt > LONG_MAX) { in morecore()
209 amt -= LONG_MAX; in morecore()
210 delta = amt; in morecore()
214 op = sbrk(amt); in morecore()