Home
last modified time | relevance | path

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

/external/lldb/source/Utility/
DStringExtractor.cpp152 const uint8_t lo_nibble = g_hex_ascii_to_hex_integer[static_cast<uint8_t>(m_packet[i+1])]; in GetHexU8() local
153 if (hi_nibble < 16 && lo_nibble < 16) in GetHexU8()
156 return (hi_nibble << 4) + lo_nibble; in GetHexU8()
/external/lldb/source/Core/
DUUID.cpp189 int lo_nibble = xdigit_to_int(p[1]); in DecodeUUIDBytesFromCString() local
191 uuid_bytes[uuid_byte_idx] = (hi_nibble << 4) + lo_nibble; in DecodeUUIDBytesFromCString()
/external/lldb/scripts/
Ddisasm-gdb-remote.pl1758 my $lo_nibble = hex(shift(@$arrayref));
1759 my $byte = ($hi_nibble << 4) | $lo_nibble;