Searched refs:rex (Results 1 – 8 of 8) sorted by relevance
/openssl/crypto/perlasm/ |
H A D | x86_64-xlate.pl | 1188 sub rex { subroutine 1190 my ($dst,$src,$rex)=@_; 1192 $rex|=0x04 if($dst>=8); 1194 push @$opcode,($rex|0x40) if ($rex); 1227 rex(\@opcode,$src,$dst); 1245 rex(\@opcode,$dst,$src); 1258 rex(\@opcode,$2,$1); 1270 rex(\@opcode,$3,$2); 1283 rex(\@opcode,$3,$2); 1299 rex(\@opcode,0,$dst,8); [all …]
|
/openssl/crypto/aes/asm/ |
H A D | aesni-mb-x86_64.pl | 1450 sub rex { subroutine 1453 my $rex=0; 1455 $rex|=0x04 if($dst>=8); 1456 $rex|=0x01 if($src>=8); 1457 push @opcode,$rex|0x40 if($rex); 1465 rex(\@opcode,$4,$3); 1479 rex(\@opcode,$3,$2);
|
H A D | aesni-sha1-x86_64.pl | 2082 sub rex { subroutine 2085 my $rex=0; 2087 $rex|=0x04 if($dst>=8); 2088 $rex|=0x01 if($src>=8); 2089 unshift @opcode,$rex|0x40 if($rex); 2095 rex(\@opcode,$3,$2); 2114 rex(\@opcode,$2,$1); 2133 rex(\@opcode,$3,$2);
|
H A D | aesni-sha256-x86_64.pl | 1772 sub rex { subroutine 1775 my $rex=0; 1777 $rex|=0x04 if($dst>=8); 1778 $rex|=0x01 if($src>=8); 1779 unshift @opcode,$rex|0x40 if($rex); 1793 rex(\@opcode,$2,$1);
|
H A D | aesni-x86_64.pl | 5111 sub rex { subroutine 5114 my $rex=0; 5116 $rex|=0x04 if($dst>=8); 5117 $rex|=0x01 if($src>=8); 5118 push @opcode,$rex|0x40 if($rex); 5126 rex(\@opcode,$4,$3); 5140 rex(\@opcode,$3,$2);
|
/openssl/crypto/sha/asm/ |
H A D | sha1-mb-x86_64.pl | 1592 sub rex { subroutine 1595 my $rex=0; 1597 $rex|=0x04 if ($dst>=8); 1598 $rex|=0x01 if ($src>=8); 1599 unshift @opcode,$rex|0x40 if ($rex); 1605 rex(\@opcode,$3,$2); 1624 rex(\@opcode,$2,$1);
|
H A D | sha256-mb-x86_64.pl | 1593 sub rex { subroutine 1596 my $rex=0; 1598 $rex|=0x04 if ($dst>=8); 1599 $rex|=0x01 if ($src>=8); 1600 unshift @opcode,$rex|0x40 if ($rex); 1612 rex(\@opcode,$2,$1);
|
H A D | sha1-x86_64.pl | 2116 my $rex=0; 2117 $rex|=0x04 if ($2>=8); 2118 $rex|=0x01 if ($1>=8); 2119 unshift @opcode,0x40|$rex if ($rex);
|
Completed in 61 milliseconds