Lines Matching refs:negative
267 …t, char* buffer, size_t idx, size_t maxlen, char* buf, size_t len, bool negative, unsigned int bas… in _ntoa_format() argument
271 if (width && (flags & FLAGS_ZEROPAD) && (negative || (flags & (FLAGS_PLUS | FLAGS_SPACE)))) { in _ntoa_format()
305 if (negative) { in _ntoa_format()
321 …out, char* buffer, size_t idx, size_t maxlen, unsigned long value, bool negative, unsigned long ba… in _ntoa_long() argument
340 …return _ntoa_format(out, buffer, idx, maxlen, buf, len, negative, (unsigned int)base, prec, width,… in _ntoa_long()
346 …char* buffer, size_t idx, size_t maxlen, unsigned long long value, bool negative, unsigned long lo… in _ntoa_long_long() argument
365 …return _ntoa_format(out, buffer, idx, maxlen, buf, len, negative, (unsigned int)base, prec, width,… in _ntoa_long_long()
407 bool negative = false; in _ftoa() local
409 negative = true; in _ftoa()
481 if (width && (negative || (flags & (FLAGS_PLUS | FLAGS_SPACE)))) { in _ftoa()
490 if (negative) { in _ftoa()
515 const bool negative = value < 0; in _etoa() local
516 if (negative) { in _etoa()
597 …idx = _ftoa(out, buffer, idx, maxlen, negative ? -value : value, prec, fwidth, flags & ~FLAGS_ADAP… in _etoa()