Searched refs:outByte (Results 1 – 2 of 2) sorted by relevance
215 bool consume_hex_byte(uint8_t &outByte);445 bool consume_hex_byte(uint8_t &outByte) in consume_hex_byte() argument451 return input_stack.top()->consume_hex_byte(outByte); in consume_hex_byte()
983 input_buffer::consume_hex_byte(uint8_t &outByte) in consume_hex_byte() argument989 outByte = (digittoint((*this)[0]) << 4) | digittoint((*this)[1]); in consume_hex_byte()