Lines Matching refs:m
106 const uint64_t m = DOUBLE_POW5_TABLE[offset]; in __double_computePow5() local
107 const uint128_t b0 = ((uint128_t) m) * mul[0]; in __double_computePow5()
108 const uint128_t b2 = ((uint128_t) m) * mul[1]; in __double_computePow5()
126 const uint64_t m = DOUBLE_POW5_TABLE[offset]; // 5^offset in __double_computeInvPow5() local
127 const uint128_t b0 = ((uint128_t) m) * (mul[0] - 1); in __double_computeInvPow5()
128 …const uint128_t b2 = ((uint128_t) m) * mul[1]; // 1/5^base2 * 5^offset = 1/5^(base2-offset) = 1/5^i in __double_computeInvPow5()
149 const uint64_t m = DOUBLE_POW5_TABLE[offset]; in __double_computePow5() local
151 const uint64_t low1 = umul128(m, mul[1], &high1); in __double_computePow5()
153 const uint64_t low0 = umul128(m, mul[0], &high0); in __double_computePow5()
175 const uint64_t m = DOUBLE_POW5_TABLE[offset]; in __double_computeInvPow5() local
177 const uint64_t low1 = umul128(m, mul[1], &high1); in __double_computeInvPow5()
179 const uint64_t low0 = umul128(m, mul[0] - 1, &high0); in __double_computeInvPow5()