Searched refs:ROTR (Results 1 - 3 of 3) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/sha/asm/
H A Dsha512-ia64.pl198 _rotr r11=$t1,$Sigma1[0] } // ROTR(e,14)
211 _rotr r11=$t1,$Sigma1[0] } // ROTR(e,14)
217 _rotr r8=$t1,$Sigma1[1] } // ROTR(e,18)
221 _rotr r9=$t1,$Sigma1[2] } // ROTR(e,41)
225 _rotr r10=$t0,$Sigma0[0] } // ROTR(a,28)
229 _rotr r11=$t0,$Sigma0[1] } // ROTR(a,34)
233 _rotr r8=$t0,$Sigma0[2] } // ROTR(a,39)
250 _rotr r8=X[15-1],$sigma0[0] } // ROTR(s0,1)
254 _rotr r9=X[15-1],$sigma0[1] } // ROTR(s0,8)
259 _rotr r10=X[15-14],$sigma1[0] };;// ROTR(s
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libgcrypt-1.5.0/cipher/
H A Dsha512.c102 ROTR (u64 x, u64 n) function
122 return (ROTR (x, 28) ^ ROTR (x, 34) ^ ROTR (x, 39));
128 return (ROTR (x, 14) ^ ROTR (x, 18) ^ ROTR (x, 41));
215 #define S0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7))
216 #define S1(x) (ROTR((
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/sha/
H A Dsha512.c320 # define ROTR(a,n) _rotr64((a),n) macro
324 # define ROTR(a,n) ({ unsigned long ret; \ macro
330 # define ROTR(a,n) ({ unsigned long ret; \ macro
338 #ifndef ROTR
339 #define ROTR(x,s) (((x)>>s) | (x)<<(64-s)) macro
342 #define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39))
343 #define Sigma1(x) (ROTR((x),14) ^ ROTR((
[all...]

Completed in 109 milliseconds