Searched refs:current_byte (Results 1 – 3 of 3) sorted by relevance
34 uint8_t current_byte = data[byte_pos]; in GetBits() local37 int bit = (current_byte & (1 << (7 - bit_pos))) ? 1 : 0; in GetBits()47 result = (current_byte & (0xff >> bit_pos)) >> (bits_readable - bit_left); in GetBits()52 result = (current_byte & ((1 << bits_readable) - 1)) << bit_left; in GetBits()
428 int current_byte = i / 8; in Read() local436 if ((bitmap.bitmap[current_byte] & bitmask) && in Read()
309 next_state_id = dfa.transitions[current_state_id * 256 + current_byte]315 next_state_id = dfa.transitions[current_state_id + current_byte]