Lines Matching refs:decimal_point
109 int32_t decimal_point = 0; variable
169 this->decimal_point = 0; in trim_trailing_zeroes()
199 this->decimal_point -= read_index - 1; in right_shift()
279 this->decimal_point += new_digits; in left_shift()
296 this->decimal_point = total_digits; in HighPrecisionDecimal()
300 --this->decimal_point; in HighPrecisionDecimal()
317 this->decimal_point = total_digits; in HighPrecisionDecimal()
328 this->decimal_point += add_to_exp; in HighPrecisionDecimal()
364 while (static_cast<int32_t>(cur_digit) < this->decimal_point && in round_to_integer_type()
371 while (static_cast<int32_t>(cur_digit) < this->decimal_point) { in round_to_integer_type()
375 if (this->should_round_up(this->decimal_point)) { in round_to_integer_type()
385 int32_t get_decimal_point() { return this->decimal_point; } in get_decimal_point()