Home
last modified time | relevance | path

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

/openbmc/qemu/target/s390x/tcg/
H A Dint_helper.c104 int64_t pow10 = 1, bin = 0; in HELPER() local
119 bin += digit * pow10; in HELPER()
120 pow10 *= 10; in HELPER()
137 int64_t bin = 0, pow10, tmp; in HELPER() local
145 pow10 = (sign == 0xb || sign == 0xd) ? -1 : 1; in HELPER()
161 tmp = bin + pow10 * digit; in HELPER()
166 pow10 *= 10; in HELPER()
/openbmc/qemu/libdecnumber/
H A DdecNumber.c7966 static bool mulUInt128ByPowOf10(uLong *plow, uLong *phigh, uInt pow10) argument
7968 while (pow10 >= ARRAY_SIZE(powers)) {
7973 pow10 -= ARRAY_SIZE(powers) - 1;
7976 if (pow10 > 0) {
7977 return mulu128(plow, phigh, powers[pow10]);
/openbmc/openbmc/poky/meta/recipes-support/vte/vte/
H A D0004-fast_float-Add-single-header-library-for-from_char-i.patch3117 + FASTFLOAT_CONSTEXPR20 bool pow10(uint32_t exp) noexcept {
3467 + FASTFLOAT_ASSERT(bigmant.pow10(uint32_t(exponent)));