Searched refs:lo_nibble (Results 1 – 3 of 3) sorted by relevance
152 const uint8_t lo_nibble = g_hex_ascii_to_hex_integer[static_cast<uint8_t>(m_packet[i+1])]; in GetHexU8() local153 if (hi_nibble < 16 && lo_nibble < 16) in GetHexU8()156 return (hi_nibble << 4) + lo_nibble; in GetHexU8()
189 int lo_nibble = xdigit_to_int(p[1]); in DecodeUUIDBytesFromCString() local191 uuid_bytes[uuid_byte_idx] = (hi_nibble << 4) + lo_nibble; in DecodeUUIDBytesFromCString()
1758 my $lo_nibble = hex(shift(@$arrayref));1759 my $byte = ($hi_nibble << 4) | $lo_nibble;