Lines Matching refs:negative
203 … bool negative, unsigned int base, unsigned int prec, unsigned int width, unsigned int flags) in _ntoa_format() argument
207 if(width && (flags & FLAGS_ZEROPAD) && (negative || (flags & (FLAGS_PLUS | FLAGS_SPACE)))) { in _ntoa_format()
241 if(negative) { in _ntoa_format()
256 …ong(out_fct_type out, char * buffer, size_t idx, size_t maxlen, unsigned long value, bool negative, in _ntoa_long() argument
276 …return _ntoa_format(out, buffer, idx, maxlen, buf, len, negative, (unsigned int)base, prec, width,… in _ntoa_long()
282 … bool negative, unsigned long long base, unsigned int prec, unsigned int width, unsigned int flags) in _ntoa_long_long() argument
301 …return _ntoa_format(out, buffer, idx, maxlen, buf, len, negative, (unsigned int)base, prec, width,… in _ntoa_long_long()
344 bool negative = false; in _ftoa() local
346 negative = true; in _ftoa()
418 if(width && (negative || (flags & (FLAGS_PLUS | FLAGS_SPACE)))) { in _ftoa()
427 if(negative) { in _ftoa()
452 const bool negative = value < 0; in _etoa() local
453 if(negative) { in _etoa()
535 …idx = _ftoa(out, buffer, idx, maxlen, negative ? -value : value, prec, fwidth, flags & ~FLAGS_ADAP… in _etoa()