Searched refs:Sigma1 (Results 1 - 13 of 13) sorted by relevance

/freebsd-10.1-release/crypto/openssl/crypto/sha/asm/
H A Dsha512-x86_64.pl65 @Sigma1=(14,18,41);
77 @Sigma1=( 6,11,25);
99 ror \$`$Sigma1[2]-$Sigma1[1]`,$a0
107 ror \$`$Sigma1[1]-$Sigma1[0]`,$a0
124 ror \$$Sigma1[0],$a0 # Sigma1(e)
129 add $a0,$T1 # T1+=Sigma1(e)
H A Dsha512-s390x.pl79 @Sigma1=(23,46,50);
93 @Sigma1=( 7,21,26);
111 $ROT $t0,$e,$Sigma1[0]
112 $ROT $t1,$e,$Sigma1[1]
115 $ROT $t1,$t1,`$Sigma1[2]-$Sigma1[1]`
118 xgr $t0,$t1 # Sigma1(e)
122 algr $T1,$t0 # T1+=Sigma1(e)
H A Dsha512-mips.pl87 @Sigma1=(14,18,41);
101 @Sigma1=( 6,11,25);
159 $SRL $h,$e,@Sigma1[0]
161 $SLL $tmp1,$e,`$SZ*8-@Sigma1[2]`
163 $SRL $tmp0,$e,@Sigma1[1]
165 $SLL $tmp1,$e,`$SZ*8-@Sigma1[1]`
167 $SRL $tmp0,$e,@Sigma1[2]
169 $SLL $tmp1,$e,`$SZ*8-@Sigma1[0]`
172 xor $tmp0,$tmp1,$h # Sigma1(e)
H A Dsha512-parisc.pl56 @Sigma1=(14,18,41);
68 @Sigma1=( 6,11,25);
102 _ror $e,$Sigma1[0],$a0
104 _ror $e,$Sigma1[1],$a1
108 _ror $a1,`$Sigma1[2]-$Sigma1[1]`,$a1
111 xor $a0,$a1,$a1 ; Sigma1(e)
389 shd $ehi,$elo,$Sigma1[0],$t0
391 shd $elo,$ehi,$Sigma1[0],$t1
393 shd $ehi,$elo,$Sigma1[
[all...]
H A Dsha512-ia64.pl77 @Sigma1=(14,18,41);
91 @Sigma1=( 6,11,25);
220 _rotr r11=$t1,$Sigma1[0] } // ROTR(e,14)
453 _rotr r11=$t1,$Sigma1[0] } // ROTR(e,14)
459 _rotr r8=$t1,$Sigma1[1] } // ROTR(e,18)
463 _rotr r9=$t1,$Sigma1[2] } // ROTR(e,41)
466 { .mib; xor r9=r9,r11 // r9=Sigma1(e)
470 { .mib; add T1=T1,r9 // T1+=Sigma1(e)
519 _rotr r9=$t1,$Sigma1[0] } // ROTR(e,14)
526 _rotr r9=$t1,$Sigma1[
[all...]
H A Dsha512-sparcv9.pl61 @Sigma1=(14,18,41);
87 @Sigma1=( 6,11,25);
222 $SRL $e,@Sigma1[0],$h !! $i
224 $SLL $e,`$SZ*8-@Sigma1[2]`,$tmp1
226 $SRL $e,@Sigma1[1],$tmp0
228 $SLL $e,`$SZ*8-@Sigma1[1]`,$tmp1
230 $SRL $e,@Sigma1[2],$tmp0
232 $SLL $e,`$SZ*8-@Sigma1[0]`,$tmp1
235 xor $tmp1,$h,$tmp0 ! Sigma1(e)
H A Dsha512-ppc.pl70 @Sigma1=(14,18,41);
82 @Sigma1=( 6,11,25);
127 $ROR $a0,$e,$Sigma1[0]
128 $ROR $a1,$e,$Sigma1[1]
133 $ROR $a1,$a1,`$Sigma1[2]-$Sigma1[1]`
136 xor $a0,$a0,$a1 ; Sigma1(e)
H A Dsha512-armv4.pl75 @ Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41))
93 eor $t1,$t1,$Ehi,lsl#23 @ Sigma1(e)
96 adc $Thi,$Thi,$t1 @ T += Sigma1(e)
439 my @Sigma1=(14,18,41);
455 vshr.u64 $t0,$e,#@Sigma1[0] @ $i
459 vshr.u64 $t1,$e,#@Sigma1[1]
460 vshr.u64 $t2,$e,#@Sigma1[2]
464 vsli.64 $t0,$e,#`64-@Sigma1[0]`
465 vsli.64 $t1,$e,#`64-@Sigma1[1]`
466 vsli.64 $t2,$e,#`64-@Sigma1[
[all...]
H A Dsha256-armv4.pl46 @Sigma1=( 6,11,25);
67 mov $t0,$e,ror#$Sigma1[0]
69 eor $t0,$t0,$e,ror#$Sigma1[1]
79 eor $t0,$t0,$e,ror#$Sigma1[2] @ Sigma1(e)
/freebsd-10.1-release/contrib/wpa/src/crypto/
H A Dsha256-internal.c73 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25)) macro
104 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
/freebsd-10.1-release/crypto/openssl/crypto/sha/
H A Dsha256.c158 # define Sigma1(x) (ROTATE((x),26) ^ ROTATE((x),21) ^ ROTATE((x),7)) macro
189 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i];
208 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i];
235 T1 += h + Sigma1(e) + Ch(e,f,g) + K256[i]; \
H A Dsha512.c393 # define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41)) macro
431 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i];
444 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i];
488 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i];
507 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i];
534 T1 += h + Sigma1(e) + Ch(e,f,g) + K512[i]; \
/freebsd-10.1-release/crypto/openssh/
H A Dblocks.c46 #define Sigma1(x) (ROTR(x,14) ^ ROTR(x,18) ^ ROTR(x,41)) macro
71 T1 = h + Sigma1(e) + Ch(e,f,g) + k + w; \

Completed in 97 milliseconds