Home | History | Annotate | Download | only in scripts

Lines Matching refs:get8

17 our $reg8_href = { extract => \&get8, format => "0x%2.2x" };
1045 printf(" 0x%2.2x", get8(\@_));
1151 $arg .= sprintf("%c", get8(\@_))
1278 printf("%c", get8(\@_))
1414 sub get8
1435 $val = get8($arrayref) |
1436 get8($arrayref) << 8;
1440 $val = get8($arrayref) << 8 |
1441 get8($arrayref) ;
1460 $val = get8($arrayref) |
1461 get8($arrayref) << 8 |
1462 get8($arrayref) << 16 |
1463 get8($arrayref) << 24 ;
1467 $val = get8($arrayref) << 24 |
1468 get8($arrayref) << 16 |
1469 get8($arrayref) << 8 |
1470 get8($arrayref) ;
1777 my $reg_num = get8(\@_);
1838 my $signo = get8(\@_);
1902 $console_output .= sprintf("%c", get8(\@_))