Searched refs:rex (Results 1 – 8 of 8) sorted by relevance
/openssl-master/crypto/perlasm/ |
A D | x86_64-xlate.pl | 1001 sub rex { subroutine 1003 my ($dst,$src,$rex)=@_; 1005 $rex|=0x04 if($dst>=8); 1007 push @$opcode,($rex|0x40) if ($rex); 1040 rex(\@opcode,$src,$dst); 1058 rex(\@opcode,$dst,$src); 1071 rex(\@opcode,$2,$1); 1083 rex(\@opcode,$3,$2); 1096 rex(\@opcode,$3,$2); 1112 rex(\@opcode,0,$dst,8); [all …]
|
/openssl-master/crypto/aes/asm/ |
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);
|
A D | aesni-sha1-x86_64.pl | 2080 sub rex { subroutine 2083 my $rex=0; 2085 $rex|=0x04 if($dst>=8); 2086 $rex|=0x01 if($src>=8); 2087 unshift @opcode,$rex|0x40 if($rex); 2093 rex(\@opcode,$3,$2); 2112 rex(\@opcode,$2,$1); 2131 rex(\@opcode,$3,$2);
|
A D | aesni-sha256-x86_64.pl | 1770 sub rex { subroutine 1773 my $rex=0; 1775 $rex|=0x04 if($dst>=8); 1776 $rex|=0x01 if($src>=8); 1777 unshift @opcode,$rex|0x40 if($rex); 1791 rex(\@opcode,$2,$1);
|
A D | aesni-x86_64.pl | 5109 sub rex { subroutine 5112 my $rex=0; 5114 $rex|=0x04 if($dst>=8); 5115 $rex|=0x01 if($src>=8); 5116 push @opcode,$rex|0x40 if($rex); 5124 rex(\@opcode,$4,$3); 5138 rex(\@opcode,$3,$2);
|
/openssl-master/crypto/sha/asm/ |
A D | sha1-mb-x86_64.pl | 1591 sub rex { subroutine 1594 my $rex=0; 1596 $rex|=0x04 if ($dst>=8); 1597 $rex|=0x01 if ($src>=8); 1598 unshift @opcode,$rex|0x40 if ($rex); 1604 rex(\@opcode,$3,$2); 1623 rex(\@opcode,$2,$1);
|
A D | sha256-mb-x86_64.pl | 1591 sub rex { subroutine 1594 my $rex=0; 1596 $rex|=0x04 if ($dst>=8); 1597 $rex|=0x01 if ($src>=8); 1598 unshift @opcode,$rex|0x40 if ($rex); 1610 rex(\@opcode,$2,$1);
|
A D | sha1-x86_64.pl | 2114 my $rex=0; 2115 $rex|=0x04 if ($2>=8); 2116 $rex|=0x01 if ($1>=8); 2117 unshift @opcode,0x40|$rex if ($rex);
|
Completed in 28 milliseconds