Searched refs:hexToChar (Results 1 - 1 of 1) sorted by relevance

/haiku/src/kits/storage/sniffer/
H A DParser.cpp28 char hexToChar(char hi, char low);
29 char hexToChar(char hex);
432 charStr += hexToChar(lastChar, ch);
637 charStr += hexToChar(lastChar, ch);
810 hexToChar(char hi, char low) { function
811 return (hexToChar(hi) << 4) | hexToChar(low);
816 hexToChar(char hex) { function
824 throw new Err(std::string("Sniffer parser error: invalid hex digit '") + hex + "' passed to hexToChar()", -1);
846 throw new Err(std::string("Sniffer parser error: invalid octal digit passed to hexToChar()"),
[all...]

Completed in 31 milliseconds