Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/elftosb/dist/common/
H A DHexValues.cpp31 uint8_t hexByteToInt(const char * encodedByte) in hexByteToInt() argument
33 return (hexCharToInt(encodedByte[0]) << 4) | hexCharToInt(encodedByte[1]); in hexByteToInt()
H A DHexValues.h19 uint8_t hexByteToInt(const char * encodedByte);