Home
last modified time | relevance | path

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

/external/llvm-project/flang/lib/Decimal/
Dbig-radix-floating-point.h35 static constexpr std::uint64_t TenToThe(int power) { in TenToThe() function
36 return power <= 0 ? 1 : 10 * TenToThe(power - 1); in TenToThe()
48 static constexpr std::uint64_t uint64Radix{TenToThe(log10Radix)};