Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/libcxx/src/ryu/
H A Df2s.cpp241 uint32_t _Output; in __f2d() local
486 if (_Output == 1) { in __to_chars()
561 const uint32_t __c = _Output - 10000 * (_Output / 10000); in __to_chars()
565 _Output /= 10000; in __to_chars()
573 _Output /= 100; in __to_chars()
576 if (_Output >= 10) { in __to_chars()
613 const uint32_t __c = _Output - 10000 * (_Output / 10000); in __to_chars()
617 _Output /= 10000; in __to_chars()
624 if (_Output >= 100) { in __to_chars()
626 _Output /= 100; in __to_chars()
[all …]
H A Dd2s.cpp267 uint64_t _Output; in __d2d() local
345 _Output = __vr + (__vr == __vm || __roundUp); in __d2d()
351 __fd.__mantissa = _Output; in __d2d()
358 uint64_t _Output = __v.__mantissa; in __to_chars() local
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()
520 _Output = __q; in __to_chars()
592 if ((_Output >> 32) != 0) { in __to_chars()
594 const uint64_t __q = __div1e8(_Output); in __to_chars()
[all …]
/openbsd/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> &&