Searched refs:lo_nibble (Results 1 – 5 of 5) sorted by relevance
79 int lo_nibble = xdigit_to_int(p[1]); in DecodeUUIDBytesFromString() local81 uuid_bytes.push_back((hi_nibble << 4) + lo_nibble); in DecodeUUIDBytesFromString()
66 const int lo_nibble = xdigit_to_sint(m_packet[m_index + 1]); 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()
58 const int lo_nibble = xdigit_to_sint(m_packet[m_index + 1]); in DecodeHexU8() local59 if (hi_nibble == -1 || lo_nibble == -1) { in DecodeHexU8()63 return (uint8_t)((hi_nibble << 4) + lo_nibble); in DecodeHexU8()
118 const int lo_nibble = xdigit_to_sint(p[1]); in decoded_hex_ascii_char() local119 if (lo_nibble == -1) in decoded_hex_ascii_char()121 return (uint8_t)((hi_nibble << 4) + lo_nibble); in decoded_hex_ascii_char()
1758 my $lo_nibble = hex(shift(@$arrayref));1759 my $byte = ($hi_nibble << 4) | $lo_nibble;