Lines Matching refs:negative
209 bool negative, unsigned int base, unsigned int prec, unsigned int width, in _ntoa_format() argument
213 … if (width && (flags & FLAGS_ZEROPAD) && (negative || (flags & (FLAGS_PLUS | FLAGS_SPACE)))) { in _ntoa_format()
245 if (negative) { in _ntoa_format()
259 …long(out_fct_type out, char *buffer, size_t idx, size_t maxlen, unsigned long value, bool negative, in _ntoa_long() argument
278 …return _ntoa_format(out, buffer, idx, maxlen, buf, len, negative, (unsigned int) base, prec, width… in _ntoa_long()
286 … bool negative, unsigned long long base, unsigned int prec, unsigned int width, in _ntoa_long_long() argument
305 …return _ntoa_format(out, buffer, idx, maxlen, buf, len, negative, (unsigned int) base, prec, width… in _ntoa_long_long()
351 bool negative = false; in _ftoa() local
353 negative = true; in _ftoa()
422 if (width && (negative || (flags & (FLAGS_PLUS | FLAGS_SPACE)))) { in _ftoa()
431 if (negative) { in _ftoa()
455 const bool negative = value < 0; in _etoa() local
456 if (negative) { in _etoa()
540 …idx = _ftoa(out, buffer, idx, maxlen, negative ? -value : value, prec, fwidth, flags & ~FLAGS_ADAP… in _etoa()