Home
last modified time | relevance | path

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

/freebsd/usr.bin/dtc/
H A Dinput_buffer.hh215 bool consume_hex_byte(uint8_t &outByte);
445 bool consume_hex_byte(uint8_t &outByte) in consume_hex_byte() argument
451 return input_stack.top()->consume_hex_byte(outByte); in consume_hex_byte()
H A Dinput_buffer.cc983 input_buffer::consume_hex_byte(uint8_t &outByte) in consume_hex_byte() argument
989 outByte = (digittoint((*this)[0]) << 4) | digittoint((*this)[1]); in consume_hex_byte()