Home
last modified time | relevance | path

Searched refs:__negative (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/include/__format/
H A Dformatter_integral.h57 _LIBCPP_HIDE_FROM_ABI inline _Iterator __insert_sign(_Iterator __buf, bool __negative, __format_spe… in __insert_sign() argument
58 if (__negative) in __insert_sign()
288 bool __negative, in __format_integer() argument
293 _Iterator __first = __formatter::__insert_sign(__begin, __negative, __specs.__std_.__sign_); in __format_integer()
348 bool __negative = false) {
352 …return __formatter::__format_integer(__value, __ctx, __specs, __negative, __array.begin(), __array…
362 …__value, __ctx, __specs, __negative, __array.begin(), __array.end(), __value != 0 ? "0" : nullptr,…
368 __value, __ctx, __specs, __negative, __array.begin(), __array.end(), nullptr, 10);
394 bool __negative = __value < 0; in __format_integer() local
395 if (__negative) in __format_integer()
[all …]
H A Dformatter_floating_point.h451 bool __negative,
455 char* __first = __formatter::__insert_sign(__buffer.begin(), __negative, __sign);
582 …_OutIt __out_it, __format_spec::__parsed_specifications<_CharT> __specs, bool __negative, bool __i…
584 char* __last = __formatter::__insert_sign(__buffer, __negative, __specs.__std_.__sign_);
638 bool __negative = std::signbit(__value);
641 …return __formatter::__format_floating_point_non_finite(__ctx.out(), __specs, __negative, std::isna…
650 if (__negative)
658 …__buffer, __value, __negative, (__specs.__has_precision()), __specs.__std_.__sign_, __specs.__std_…
/freebsd-14.2/contrib/llvm-project/libcxx/include/__chrono/
H A Dformatter.h168 bool __negative = __year < 0; in __format_century() local
169 int __century = (__year - (99 * __negative)) / 100; // floored division in __format_century()