Lines Matching refs:amt
118 size_t amt; in __crt_malloc() local
130 amt = FIRST_BUCKET_SIZE; in __crt_malloc()
132 while (nbytes > amt - sizeof(*op)) { in __crt_malloc()
133 amt <<= 1; in __crt_malloc()
135 if (amt == 0 || bucket >= NBUCKETS) in __crt_malloc()
200 int amt; /* amount to allocate */ in morecore() local
205 amt = pagesz; in morecore()
206 nblks = amt / sz; in morecore()
208 amt = sz; in morecore()
211 if (amt > pagepool_end - pagepool_start) in morecore()
212 if (morepages(amt / pagesz + NPOOLPAGES) == 0 && in morecore()
214 morepages(amt / pagesz) == 0) in morecore()
217 pagepool_start += amt; in morecore()