Home | History | Annotate | Download | only in lib

Lines Matching refs:extra

114    (that adds an extra first argument), based on the state of use_extra_arg.
154 /* 12 is sizeof (mhead) and 4 is EXTRA from GNU malloc.
156 the extra bytes won't be missed terribly, but if range checking is on
157 and we used a larger request, a whole extra 4096 bytes would be
162 int extra = ((((12 + DEFAULT_ROUNDING - 1) & ~(DEFAULT_ROUNDING - 1))
165 size = 4096 - extra;
201 /* 12 is sizeof (mhead) and 4 is EXTRA from GNU malloc.
203 the extra bytes won't be missed terribly, but if range checking is on
204 and we used a larger request, a whole extra 4096 bytes would be
209 int extra = ((((12 + DEFAULT_ROUNDING - 1) & ~(DEFAULT_ROUNDING - 1))
212 size = 4096 - extra;
279 /* We used to copy the odd few remaining bytes as one extra COPYING_UNIT,