Lines Matching refs:extra
126 (that adds an extra first argument), based on the state of use_extra_arg.
166 /* 12 is sizeof (mhead) and 4 is EXTRA from GNU malloc.
168 the extra bytes won't be missed terribly, but if range checking is on
169 and we used a larger request, a whole extra 4096 bytes would be
174 int extra = ((((12 + DEFAULT_ROUNDING - 1) & ~(DEFAULT_ROUNDING - 1))
177 size = 4096 - extra;
213 /* 12 is sizeof (mhead) and 4 is EXTRA from GNU malloc.
215 the extra bytes won't be missed terribly, but if range checking is on
216 and we used a larger request, a whole extra 4096 bytes would be
221 int extra = ((((12 + DEFAULT_ROUNDING - 1) & ~(DEFAULT_ROUNDING - 1))
224 size = 4096 - extra;
291 /* We used to copy the odd few remaining bytes as one extra COPYING_UNIT,