Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/libcxx/src/ryu/
H A Df2s.cpp241 uint32_t _Output; in __f2d() local
272_Output = __vr + ((__vr == __vm && (!__acceptBounds || !__vmIsTrailingZeros)) || __lastRemovedDigi… in __f2d()
285 _Output = __vr + (__vr == __vm || __lastRemovedDigit >= 5); in __f2d()
291 __fd.__mantissa = _Output; in __f2d()
422 uint32_t _Output = __v.__mantissa; in __to_chars() local
424 const uint32_t __olength = __decimalLength9(_Output); in __to_chars()
486 if (_Output == 1) { in __to_chars()
559 while (_Output >= 10000) { in __to_chars()
561 const uint32_t __c = _Output - 10000 * (_Output / 10000); in __to_chars()
563 const uint32_t __c = _Output % 10000; in __to_chars()
[all …]
H A Dd2s.cpp267 uint64_t _Output; in __d2d() local
311_Output = __vr + ((__vr == __vm && (!__acceptBounds || !__vmIsTrailingZeros)) || __lastRemovedDigi… in __d2d()
345 _Output = __vr + (__vr == __vm || __roundUp); in __d2d()
351 __fd.__mantissa = _Output; in __d2d()
358 uint64_t _Output = __v.__mantissa; in __to_chars() local
360 const uint32_t __olength = __decimalLength17(_Output); in __to_chars()
422 if (_Output == 1) { in __to_chars()
516 if ((_Output >> 32) != 0) { in __to_chars()
518 const uint64_t __q = __div1e8(_Output); in __to_chars()
519 uint32_t __output2 = static_cast<uint32_t>(_Output - 100000000 * __q); in __to_chars()
[all …]
/openbsd-src/gnu/llvm/libcxx/include/__iterator/
H A Dmergeable.h27 template <class _Input1, class _Input2, class _Output,
32 weakly_incrementable<_Output> &&
33 indirectly_copyable<_Input1, _Output> &&
34 indirectly_copyable<_Input2, _Output> &&