Lines Matching refs:exp_num
14627 int32_t exp_num = ((uint8_t)(*p - '0'));
14629 // The rest of the exp_num walking has a peculiar control flow but, once
14633 exp_num = (10 * exp_num) + ((uint8_t)(*p - '0'));
14637 exp_num = (10 * exp_num) + ((uint8_t)(*p - '0'));
14641 if (exp_num > 0x1000000) {
14644 exp_num = (10 * exp_num) + ((uint8_t)(*p - '0'));
14647 exp10 += exp_sign * exp_num;