Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libc/src/__support/
H A Dhigh_precision_decimal.h178 uint32_t write_index = 0; in right_shift() local
207 this->digits[write_index] = static_cast<uint8_t>(write_digit); in right_shift()
210 ++write_index; in right_shift()
218 if (write_index < MAX_NUM_DIGITS) { in right_shift()
220 ++write_index; in right_shift()
226 this->num_digits = write_index; in right_shift()
237 uint32_t write_index = this->num_digits + new_digits; in left_shift() local
251 --write_index; in left_shift()
252 if (write_index < MAX_NUM_DIGITS) { in left_shift()
266 --write_index; in left_shift()
[all …]