Searched refs:outByte (Results 1 – 2 of 2) sorted by relevance
222 bool consume_hex_byte(uint8_t &outByte);467 bool consume_hex_byte(uint8_t &outByte) in consume_hex_byte() argument473 return input_stack.top()->consume_hex_byte(outByte); in consume_hex_byte()
1036 input_buffer::consume_hex_byte(uint8_t &outByte) in consume_hex_byte() argument1042 outByte = (digittoint((*this)[0]) << 4) | digittoint((*this)[1]); in consume_hex_byte()