Home
last modified time | relevance | path

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

/trusted-firmware-m-3.7.0/platform/ext/common/template/
Dnv_counters.c58 size_t byte_idx; in read_nv_counter_otp() local
76 for (byte_idx = 0; byte_idx < counter_size; byte_idx++) { in read_nv_counter_otp()
78 count += (counter_value[byte_idx] >> bit_idx) & 1; in read_nv_counter_otp()
167 size_t byte_idx; in set_nv_counter_otp() local
182 for (byte_idx = 0; byte_idx < (value / 8); byte_idx++) { in set_nv_counter_otp()
183 counter_value[byte_idx] = UINT8_MAX; in set_nv_counter_otp()
185 counter_value[byte_idx] = (1 << (value % 8)) - 1; in set_nv_counter_otp()