Home | History | Annotate | Download | only in gas

Lines Matching defs:max

63   ptr->max = size;
131 if (want > ptr->max)
133 size_t max;
139 max = (size_t) 1 << (CHAR_BIT * sizeof (want)
144 max = 128;
145 while (want > max)
146 max <<= 1;
148 max -= MALLOC_OVERHEAD + 1;
149 ptr->max = max;
150 ptr->ptr = xrealloc (ptr->ptr, max + 1);