Searched refs:byte_offset (Results 1 – 1 of 1) sorted by relevance
120 uint32_t byte_offset = bit_pos >> 3U; in Cy_Cryptolite_Vu_clr_bit() local123 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() local135 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() local146 return ((uint32_t)p_a[byte_offset] >> bit_offset) & 1U; in Cy_Cryptolite_Vu_get_bit()