Lines Matching defs:write_index
209 uint32_t write_index = 0;
238 this->digits[write_index] = static_cast<uint8_t>(write_digit);
241 ++write_index;
249 if (write_index < MAX_NUM_DIGITS) {
250 this->digits[write_index] = static_cast<uint8_t>(write_digit);
251 ++write_index;
257 this->num_digits = write_index;
268 uint32_t write_index = this->num_digits + new_digits;
282 --write_index;
283 if (write_index < MAX_NUM_DIGITS) {
284 this->digits[write_index] = static_cast<uint8_t>(write_digit);
297 --write_index;
298 if (write_index < MAX_NUM_DIGITS) {
299 this->digits[write_index] = static_cast<uint8_t>(write_digit);