/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha1-ia64.pl | 62 my $Xn=@X[$j%16]; 73 { .mmi; ld1 $Xn=[inp],2 // forward Xload 92 dep $Xn=$Xn,tmp2,8,8 // forward Xload 108 { .mmi; xor $Xn=$Xn,$X[($j+2)%16] // forward Xupdate 112 xor $Xn=$Xn,tmp3 // forward Xupdate 117 shrp $Xn=$Xn, [all...] |
H A D | sha256-mb-x86_64.pl | 104 ($t1,$t2,$t3,$axb,$bxc,$Xi,$Xn,$sigma)=map("%xmm$_",(0..7)); 142 `"pshufb $Xn,$Xi" if ($i<=15 && ($i&1)==0)` 144 `"pshufb $Xn,$Xi" if ($i<=15 && ($i&1)==1)` 210 movdqa `&Xi_off($i+1)`,$Xn 213 movdqa $Xn,$sigma 214 movdqa $Xn,$t2 216 movdqa $Xn,$t3 243 ($Xi,$Xn)=($Xn,$Xi); 326 movdqu .Lpbswap(%rip),$Xn [all...] |
H A D | sha256-c64xplus.pl | 42 ($Xn,$X0,$K)=("B7","B8","B9"); 102 LDNW *$INP++,$Xn ; pre-fetch input 117 || SWAP4 $Xn,$X0 123 LDNW *$INP++,$Xn 151 || SWAP4 $Xn,$X0 167 || LDW *${Xib}[1],$Xn ; modulo-scheduled 193 || MV $Xn,$X0 ; modulo-scheduled 211 || MV $X1,$Xn 245 || MV $Xn,$X0 ; modulo-scheduled 262 || [A0] LDNW *$INP++,$Xn ; pr [all...] |
/third_party/openssl/crypto/sha/asm/ |
H A D | sha1-ia64.pl | 62 my $Xn=@X[$j%16]; 73 { .mmi; ld1 $Xn=[inp],2 // forward Xload 92 dep $Xn=$Xn,tmp2,8,8 // forward Xload 108 { .mmi; xor $Xn=$Xn,$X[($j+2)%16] // forward Xupdate 112 xor $Xn=$Xn,tmp3 // forward Xupdate 117 shrp $Xn=$Xn, [all...] |
H A D | sha256-mb-x86_64.pl | 104 ($t1,$t2,$t3,$axb,$bxc,$Xi,$Xn,$sigma)=map("%xmm$_",(0..7)); 142 `"pshufb $Xn,$Xi" if ($i<=15 && ($i&1)==0)` 144 `"pshufb $Xn,$Xi" if ($i<=15 && ($i&1)==1)` 210 movdqa `&Xi_off($i+1)`,$Xn 213 movdqa $Xn,$sigma 214 movdqa $Xn,$t2 216 movdqa $Xn,$t3 243 ($Xi,$Xn)=($Xn,$Xi); 326 movdqu .Lpbswap(%rip),$Xn [all...] |
H A D | sha256-c64xplus.pl | 42 ($Xn,$X0,$K)=("B7","B8","B9"); 102 LDNW *$INP++,$Xn ; pre-fetch input 117 || SWAP4 $Xn,$X0 123 LDNW *$INP++,$Xn 151 || SWAP4 $Xn,$X0 167 || LDW *${Xib}[1],$Xn ; modulo-scheduled 193 || MV $Xn,$X0 ; modulo-scheduled 211 || MV $X1,$Xn 245 || MV $Xn,$X0 ; modulo-scheduled 262 || [A0] LDNW *$INP++,$Xn ; pr [all...] |
/third_party/node/deps/openssl/openssl/crypto/modes/ |
H A D | gcm128.c | 999 memcpy(ctx->Xn, ctx->Xi.c, sizeof(ctx->Xi)); 1025 ctx->Xn[mres++] = *(out++) = *(in++) ^ ctx->EKi.c[n]; 1030 GHASH(ctx, ctx->Xn, mres); 1057 GHASH(ctx, ctx->Xn, mres); 1149 ctx->Xn[mres++] = out[n] = in[n] ^ ctx->EKi.c[n]; 1180 ctx->Xn[mres++] = out[i] = in[i] ^ ctx->EKi.c[n]; 1182 if (mres == sizeof(ctx->Xn)) { 1183 GHASH(ctx,ctx->Xn,sizeof(ctx->Xn)); 1231 memcpy(ctx->Xn, ct [all...] |
/third_party/openssl/crypto/modes/ |
H A D | gcm128.c | 999 memcpy(ctx->Xn, ctx->Xi.c, sizeof(ctx->Xi)); 1025 ctx->Xn[mres++] = *(out++) = *(in++) ^ ctx->EKi.c[n]; 1030 GHASH(ctx, ctx->Xn, mres); 1057 GHASH(ctx, ctx->Xn, mres); 1149 ctx->Xn[mres++] = out[n] = in[n] ^ ctx->EKi.c[n]; 1180 ctx->Xn[mres++] = out[i] = in[i] ^ ctx->EKi.c[n]; 1182 if (mres == sizeof(ctx->Xn)) { 1183 GHASH(ctx,ctx->Xn,sizeof(ctx->Xn)); 1231 memcpy(ctx->Xn, ct [all...] |
/third_party/node/deps/openssl/openssl/crypto/modes/asm/ |
H A D | ghash-x86.pl | 847 ($Xn,$Xhn)=("xmm6","xmm7"); 1031 &movdqu ($Xn,&QWP(16,$inp)); # Ii+1 1033 &pshufb ($Xn,$T3); 1037 &pshufd ($T1,$Xn,0b01001110); # H*Ii+1 1038 &movdqa ($Xhn,$Xn); 1039 &pxor ($T1,$Xn); # 1042 &pclmulqdq ($Xn,$Hkey,0x00); ####### 1063 &xorps ($Xi,$Xn); # (H*Ii+1) + H^2*(Ii+Xi) 1068 &movdqu ($Xn,&QWP(16,$inp)); # Ii+1 1079 &pshufb ($Xn, [all...] |
/third_party/openssl/crypto/modes/asm/ |
H A D | ghash-x86.pl | 847 ($Xn,$Xhn)=("xmm6","xmm7"); 1031 &movdqu ($Xn,&QWP(16,$inp)); # Ii+1 1033 &pshufb ($Xn,$T3); 1037 &pshufd ($T1,$Xn,0b01001110); # H*Ii+1 1038 &movdqa ($Xhn,$Xn); 1039 &pxor ($T1,$Xn); # 1042 &pclmulqdq ($Xn,$Hkey,0x00); ####### 1063 &xorps ($Xi,$Xn); # (H*Ii+1) + H^2*(Ii+Xi) 1068 &movdqu ($Xn,&QWP(16,$inp)); # Ii+1 1079 &pshufb ($Xn, [all...] |
/third_party/node/deps/openssl/openssl/include/crypto/ |
H A D | modes.h | 136 unsigned char Xn[48]; member
|
/third_party/openssl/include/crypto/ |
H A D | modes.h | 136 unsigned char Xn[48]; member
|