Home
last modified time | relevance | path

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

/hal_espressif-latest/components/efuse/src/
Desp_efuse_utility.c41 static uint32_t get_mask(unsigned int bit_count, unsigned int shift);
98 uint64_t reg_of_aligned_bits = (reg >> bit_start) & get_mask(bit_count, 0); in esp_efuse_utility_fill_buff()
123 …*((size_t *)out_cnt) += __builtin_popcount(reg & get_mask(bit_count, bit_start)); // Returns the n… in esp_efuse_utility_count_once()
141 uint32_t mask = get_mask(bit_count, bit_start); in esp_efuse_utility_write_cnt()
309 static uint32_t get_mask(unsigned int bit_count, unsigned int shift) function
365 reg_to_write = temp_blob_32 & get_mask(shift_bit, 0);
374 reg_to_write |= (temp_blob_32 & get_mask(shift_bit, 0)) << shift_reg;