Lines Matching refs:hex
834 # QSetMaxPayloadSize:XXXX where XXXX is a hex length of the max
932 # Arg1: Hex byte size as big endian hex string
937 # Returns: The address that was allocated as a big endian hex string
938 # on success, else an error "EXX" where XX are hex bytes
969 # Arg1: Hex address as big endian hex string
1102 # 'Css' continue (C) with signal (ss where 'ss' is two hex digits)
1103 # 'Sss' step (S) with signal (ss where 'ss' is two hex digits)
1156 get_exptected_char(\@_, ',') or die "error: missing comma after argument argument ASCII hex bytes...?\n";
1408 # characters are in hex.
1417 my $val = hex(shift(@$arrayref) . shift(@$arrayref));
1476 # Get a 64 bit hex value as a string
1507 # Get a 80 bit hex value as a string
1540 # Get a 96 bit hex value as a string
1575 # Get a 128 bit hex value as a string
1614 # Get a 256 bit hex value as a string
1709 # Get a hex value by grabbing items off the front of the array and
1710 # stopping when a non-hex char string is encountered.
1726 my $byte = hex(shift(@$arrayref)) << 4 | hex(shift(@$arrayref));
1733 $val |= hex(shift(@$arrayref));
1757 my $hi_nibble = hex(shift(@$arrayref));
1758 my $lo_nibble = hex(shift(@$arrayref));