Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
DUUID.cpp79 int lo_nibble = xdigit_to_int(p[1]); in DecodeUUIDBytesFromString() local
81 uuid_bytes.push_back((hi_nibble << 4) + lo_nibble); in DecodeUUIDBytesFromString()
DStringExtractor.cpp66 const int lo_nibble = xdigit_to_sint(m_packet[m_index + 1]); in DecodeHexU8() local
67 if (hi_nibble == -1 || lo_nibble == -1) { in DecodeHexU8()
71 return static_cast<uint8_t>((hi_nibble << 4) + lo_nibble); in DecodeHexU8()