Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/src/ryu/
H A Df2s.cpp243 uint32_t _Output; in __f2d() local
274_Output = __vr + ((__vr == __vm && (!__acceptBounds || !__vmIsTrailingZeros)) || __lastRemovedDigi… in __f2d()
287 _Output = __vr + (__vr == __vm || __lastRemovedDigit >= 5); in __f2d()
293 __fd.__mantissa = _Output; in __f2d()
424 uint32_t _Output = __v.__mantissa; in __to_chars() local
426 const uint32_t __olength = __decimalLength9(_Output); in __to_chars()
488 if (_Output == 1) { in __to_chars()
561 while (_Output >= 10000) { in __to_chars()
563 const uint32_t __c = _Output - 10000 * (_Output / 10000); in __to_chars()
565 const uint32_t __c = _Output % 10000; in __to_chars()
[all …]
H A Dd2s.cpp268 uint64_t _Output; in __d2d() local
312_Output = __vr + ((__vr == __vm && (!__acceptBounds || !__vmIsTrailingZeros)) || __lastRemovedDigi… in __d2d()
346 _Output = __vr + (__vr == __vm || __roundUp); in __d2d()
352 __fd.__mantissa = _Output; in __d2d()
359 uint64_t _Output = __v.__mantissa; in __to_chars() local
361 const uint32_t __olength = __decimalLength17(_Output); in __to_chars()
423 if (_Output == 1) { in __to_chars()
517 if ((_Output >> 32) != 0) { in __to_chars()
519 const uint64_t __q = __div1e8(_Output); in __to_chars()
520 uint32_t __output2 = static_cast<uint32_t>(_Output - 100000000 * __q); in __to_chars()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Dmergeable.h29 class _Output,
34 input_iterator<_Input1> && input_iterator<_Input2> && weakly_incrementable<_Output> &&
35 indirectly_copyable<_Input1, _Output> && indirectly_copyable<_Input2, _Output> &&