Lines Matching refs:extra
116 (that adds an extra first argument), based on the state of use_extra_arg.
156 /* 12 is sizeof (mhead) and 4 is EXTRA from GNU malloc.
158 the extra bytes won't be missed terribly, but if range checking is on
159 and we used a larger request, a whole extra 4096 bytes would be
164 int extra = ((((12 + DEFAULT_ROUNDING - 1) & ~(DEFAULT_ROUNDING - 1))
167 size = 4096 - extra;
203 /* 12 is sizeof (mhead) and 4 is EXTRA from GNU malloc.
205 the extra bytes won't be missed terribly, but if range checking is on
206 and we used a larger request, a whole extra 4096 bytes would be
211 int extra = ((((12 + DEFAULT_ROUNDING - 1) & ~(DEFAULT_ROUNDING - 1))
214 size = 4096 - extra;
281 /* We used to copy the odd few remaining bytes as one extra COPYING_UNIT,