Home
last modified time | relevance | path

Searched refs:pow10 (Results 1 – 25 of 31) sorted by relevance

12

/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/
DDigitSequence.java98 private static long pow10(int n) { in pow10() method in DigitSequence
118 if (next < pow10(num.length)) { in next()
133 return (len >= 0) ? new DigitSequence(len, pow10(len) - 1) : null; in previous()
191 return new DigitSequence(length, pow10(length) - 1); in nines()
209 Preconditions.checkArgument(value >= 0 && value < pow10(length)); in DigitSequence()
230 return (int) (value / pow10(((length - 1) - n)) % 10); in getDigit()
239 return new DigitSequence(n, value / pow10(length - n)); in first()
248 return new DigitSequence(n, value % pow10(n)); in last()
262 return new DigitSequence(length + n.length, (pow10(n.length) * value) + n.value); in extendBy()
/third_party/json/include/nlohmann/detail/conversions/
Dto_chars.hpp484 inline int find_largest_pow10(const std::uint32_t n, std::uint32_t& pow10) in find_largest_pow10() argument
489 pow10 = 1000000000; in find_largest_pow10()
495 pow10 = 100000000; in find_largest_pow10()
500 pow10 = 10000000; in find_largest_pow10()
505 pow10 = 1000000; in find_largest_pow10()
510 pow10 = 100000; in find_largest_pow10()
515 pow10 = 10000; in find_largest_pow10()
520 pow10 = 1000; in find_largest_pow10()
525 pow10 = 100; in find_largest_pow10()
530 pow10 = 10; in find_largest_pow10()
[all …]
/third_party/boost/boost/spirit/home/karma/numeric/detail/
Dreal_utils.hpp102 n /= spirit::traits::pow10<U>(traits::truncate_to_long::call(dim)); in call_n()
111 n *= spirit::traits::pow10<U>(std::numeric_limits<U>::max_exponent10); in call_n()
112 n *= spirit::traits::pow10<U>(exp - std::numeric_limits<U>::max_exponent10); in call_n()
114 n *= spirit::traits::pow10<U>(exp); in call_n()
120 U precexp = spirit::traits::pow10<U>(precision); in call_n()
156 spirit::traits::pow10<U>(precision-prec); in call_n()
/third_party/boost/boost/spirit/home/x3/support/numeric_utils/
Dextract_real.hpp29 using x3::traits::pow10;
44 n *= pow10<T>(exp); in scale()
50 n /= pow10<T>(-min_exp); in scale()
58 n /= pow10<T>(-exp); in scale()
62 n /= pow10<T>(-exp); in scale()
Dpow10.hpp102 inline T pow10(unsigned dim) in pow10() function
/third_party/boost/boost/spirit/home/qi/numeric/detail/
Dreal_impl.hpp34 using spirit::traits::pow10;
74 n = acc_n * pow10<T>(exp); in scale()
82 n /= pow10<T>(-min_exp); in scale()
90 n /= pow10<T>(-exp); in scale()
94 n = T(acc_n) / pow10<T>(-exp); in scale()
/third_party/flutter/skia/src/utils/
DSkFloatToDecimal.cpp33 static double pow10(int e) { in pow10() function
122 double power = pow10(-decimalShift); in SkFloatToDecimal()
DSkJSON.cpp264 static inline float pow10(int32_t exp) { in pow10() function
743 const auto decimal_scale = pow10(exp); in matchFastFloatDecimalPart()
820 this->pushFloat(sign * n32 * pow10(exp)); in matchFast32OrFloat()
/third_party/skia/src/utils/
DSkFloatToDecimal.cpp33 static double pow10(int e) { in pow10() function
122 double power = pow10(-decimalShift); in SkFloatToDecimal()
DSkJSON.cpp272 static inline float pow10(int32_t exp) { in pow10() function
751 const auto decimal_scale = pow10(exp); in matchFastFloatDecimalPart()
828 this->pushFloat(sign * n32 * pow10(exp)); in matchFast32OrFloat()
/third_party/musl/src/math/
Dexp10.c24 weak_alias(exp10, pow10);
/third_party/musl/porting/liteos_a/kernel/src/math/
Dexp10.c24 weak_alias(exp10, pow10);
/third_party/boost/boost/spirit/home/support/detail/
Dpow10.hpp104 inline T pow10(unsigned dim) in pow10() function
/third_party/musl/libc-test/src/math/
Dpow10.c27 y = pow10(p->x); in main()
Dtest_src_math.gni145 "pow10",
/third_party/python/Modules/_decimal/tests/
Dranddec.py157 pow10 = [10**n for n in lst]
163 for coeff in pow10:
174 pow10 = [10**n for n in lst]
184 for coeff in pow10:
/third_party/flutter/skia/third_party/externals/angle2/third_party/rapidjson/
DBUILD.gn29 "src/include/rapidjson/internal/pow10.h",
/third_party/skia/third_party/externals/angle2/third_party/rapidjson/
DBUILD.gn32 "src/include/rapidjson/internal/pow10.h",
/third_party/musl/include/
Dmath.h433 double pow10(double);
/third_party/musl/porting/uniproton/kernel/include/
Dmath.h433 double pow10(double);
/third_party/musl/porting/liteos_m/kernel/include/
Dmath.h433 double pow10(double);
/third_party/musl/porting/liteos_a/kernel/include/
Dmath.h433 double pow10(double);
/third_party/musl/libc-test/src/math/gen/
Dfunctions.h155 T(pow10, d_d)
/third_party/abseil-cpp/absl/time/
Dduration.cc716 double pow10; member
744 int64_t frac_part = Round(std::modf(n, &d) * unit.pow10); in AppendNumberUnit()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/
Dduration.cc716 double pow10; member
744 int64_t frac_part = Round(std::modf(n, &d) * unit.pow10); in AppendNumberUnit()

12