Lines Matching refs:bytes
13 my ($addr, $bytes, $instr) = ($1, $2, $4);
15 $bytes =~ s/\s*(.*\S)\s*/$1/; # trim any remaining whitespace
17 push (@result, {'addr' => $addr, 'bytes' => $bytes, 'instr' => $instr});
18 print "addr=$addr bytes='$bytes' instr='$instr'\n" if $DEBUG;
33 my ($addr, $bytes, $instr) = ($1, $3, $2);
34 $bytes =~ s/0x//g;
35 $bytes =~ s/\s+/ /g; # regularize whitespace
36 $bytes =~ s/\s*(.*\S)\s*/$1/; # trim any remaining whitespace
38 push (@result, {'addr' => $addr, 'bytes' => $bytes, 'instr' => $instr});
39 print "addr=$addr bytes='$bytes' instr='$instr'\n" if $DEBUG;
43 my ($addr, $bytes, $instr) = ($got_addr, $2, $1);
44 $bytes =~ s/0x//g;
45 $bytes =~ s/\s+/ /g; # regularize whitespace
46 $bytes =~ s/\s*(.*\S)\s*/$1/; # trim any remaining whitespace
48 push (@result, {'addr' => $addr, 'bytes' => $bytes, 'instr' => $instr});
49 print "addr=$addr bytes='$bytes' instr='$instr'\n" if $DEBUG;