Searched refs:hi_nibble (Results 1 – 5 of 5) sorted by relevance
78 int hi_nibble = xdigit_to_int(p[0]); in DecodeUUIDBytesFromString() local81 uuid_bytes.push_back((hi_nibble << 4) + lo_nibble); in DecodeUUIDBytesFromString()
65 const int hi_nibble = xdigit_to_sint(m_packet[m_index]); in DecodeHexU8() local67 if (hi_nibble == -1 || lo_nibble == -1) { in DecodeHexU8()71 return static_cast<uint8_t>((hi_nibble << 4) + lo_nibble); in DecodeHexU8()
57 const int hi_nibble = xdigit_to_sint(m_packet[m_index]); in DecodeHexU8() local59 if (hi_nibble == -1 || lo_nibble == -1) { in DecodeHexU8()63 return (uint8_t)((hi_nibble << 4) + lo_nibble); in DecodeHexU8()
115 const int hi_nibble = xdigit_to_sint(p[0]); in decoded_hex_ascii_char() local116 if (hi_nibble == -1) in decoded_hex_ascii_char()121 return (uint8_t)((hi_nibble << 4) + lo_nibble); in decoded_hex_ascii_char()
1757 my $hi_nibble = hex(shift(@$arrayref));1759 my $byte = ($hi_nibble << 4) | $lo_nibble;