Home
last modified time | relevance | path

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

/hal_infineon-3.5.0/mtb-pdl-cat1/drivers/include/
Dcy_cryptolite_vu.h120 uint32_t byte_offset = bit_pos >> 3U; in Cy_Cryptolite_Vu_clr_bit() local
123 p_z[byte_offset] = p_z[byte_offset] & ~(1U << bit_offset); in Cy_Cryptolite_Vu_clr_bit()
132 uint32_t byte_offset = bit_pos >> 3U; in Cy_Cryptolite_Vu_set_bit() local
135 p_z[byte_offset] = p_z[byte_offset] | (1U << bit_offset); in Cy_Cryptolite_Vu_set_bit()
143 uint32_t byte_offset = bit_pos >> 3U; in Cy_Cryptolite_Vu_get_bit() local
146 return ((uint32_t)p_a[byte_offset] >> bit_offset) & 1U; in Cy_Cryptolite_Vu_get_bit()