Lines Matching refs:__j
91 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint32_t __mulShift_mod1e9(const uint64_t __m, const uint64_t* const __mul, const int32_t __j) {
105 _LIBCPP_ASSERT_INTERNAL(__j >= 128, "");
106 _LIBCPP_ASSERT_INTERNAL(__j <= 180, "");
108 const uint32_t __dist = static_cast<uint32_t>(__j - 128); // __dist: [0, 52]
113 if (__j < 160) { // __j: [128, 160)
117 return __mod1e9(__r2 >> (__j - 128));
118 } else { // __j: [160, 192)
121 return __mod1e9(__r1 >> (__j - 160));
279 const uint32_t __j = __p10bits - __e2;
280 // Temporary: __j is usually around 128, and by shifting a bit, we push it to 128 or above, which is
283 static_cast<int32_t>(__j + 8));
335 const int32_t __j = __ADDITIONAL_BITS_2 + (-__e2 - 16 * __idx);
348 // Temporary: __j is usually around 128, and by shifting a bit, we push it to 128 or above, which is
350 uint32_t __digits = __mulShift_mod1e9(__m2 << 8, __POW10_SPLIT_2[__p], __j + 8);
475 const uint32_t __j = __p10bits - __e2;
476 // Temporary: __j is usually around 128, and by shifting a bit, we push it to 128 or above, which is
479 static_cast<int32_t>(__j + 8));
518 const int32_t __j = __ADDITIONAL_BITS_2 + (-__e2 - 16 * __idx);
520 // Temporary: __j is usually around 128, and by shifting a bit, we push it to 128 or above, which is
522 __digits = (__p >= __POW10_OFFSET_2[__idx + 1]) ? 0 : __mulShift_mod1e9(__m2 << 8, __POW10_SPLIT_2[__p], __j + 8);