/third_party/node/deps/openssl/config/archs/linux64-mips64/asm/crypto/sha/ |
H A D | sha1-mips.S | 49 rotr $8,$8,16 64 rotr $6,$1,27 75 rotr $2,$2,2 96 rotr $9,$9,16 111 rotr $6,$24,27 122 rotr $1,$1,2 143 rotr $10,$10,16 158 rotr $6,$7,27 169 rotr $24,$24,2 190 rotr [all...] |
H A D | sha256-mips.S | 62 rotr $8,$8,16 76 rotr $13,$24,6 78 rotr $14,$24,11 80 rotr $31,$24,25 82 rotr $14,$1,2 86 rotr $31,$1,13 90 rotr $14,$1,22 144 rotr $9,$9,16 158 rotr $14,$7,6 160 rotr [all...] |
/third_party/node/deps/openssl/config/archs/linux64-mips64/asm_avx2/crypto/sha/ |
H A D | sha1-mips.S | 49 rotr $8,$8,16 64 rotr $6,$1,27 75 rotr $2,$2,2 96 rotr $9,$9,16 111 rotr $6,$24,27 122 rotr $1,$1,2 143 rotr $10,$10,16 158 rotr $6,$7,27 169 rotr $24,$24,2 190 rotr [all...] |
H A D | sha256-mips.S | 62 rotr $8,$8,16 76 rotr $13,$24,6 78 rotr $14,$24,11 80 rotr $31,$24,25 82 rotr $14,$1,2 86 rotr $31,$1,13 90 rotr $14,$1,22 144 rotr $9,$9,16 158 rotr $14,$7,6 160 rotr [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/ |
H A D | bits_test.cc | 67 static_assert(rotr(uint8_t{0x12}, 0) == uint8_t{0x12}, ""); in TEST() 68 static_assert(rotr(uint16_t{0x1234}, 0) == uint16_t{0x1234}, ""); in TEST() 69 static_assert(rotr(uint32_t{0x12345678UL}, 0) == uint32_t{0x12345678UL}, ""); in TEST() 70 static_assert(rotr(uint64_t{0x12345678ABCDEF01ULL}, 0) == in TEST() 74 EXPECT_EQ(rotr(uint8_t{0x12}, 0), uint8_t{0x12}); in TEST() 75 EXPECT_EQ(rotr(uint16_t{0x1234}, 0), uint16_t{0x1234}); in TEST() 76 EXPECT_EQ(rotr(uint32_t{0x12345678UL}, 0), uint32_t{0x12345678UL}); in TEST() 77 EXPECT_EQ(rotr(uint64_t{0x12345678ABCDEF01ULL}, 0), in TEST() 80 EXPECT_EQ(rotr(uint8_t{0x12}, 8), uint8_t{0x12}); in TEST() 81 EXPECT_EQ(rotr(uint16_ in TEST() [all...] |
H A D | bits.h | 65 rotr(T x, int s) noexcept { 118 using std::rotr;
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | aes_i.h | 70 static inline u32 rotr(u32 val, int bits) in rotr() function 76 #define TE1(i) rotr(Te0[((i) >> 16) & 0xff], 8) 77 #define TE2(i) rotr(Te0[((i) >> 8) & 0xff], 16) 78 #define TE3(i) rotr(Te0[(i) & 0xff], 24) 94 #define TD1(i) rotr(Td0[((i) >> 16) & 0xff], 8) 95 #define TD2(i) rotr(Td0[((i) >> 8) & 0xff], 16) 96 #define TD3(i) rotr(Td0[(i) & 0xff], 24) 102 #define TD1_(i) rotr(Td0[(i) & 0xff], 8) 103 #define TD2_(i) rotr(Td0[(i) & 0xff], 16) 104 #define TD3_(i) rotr(Td [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | aes_i.h | 70 static inline u32 rotr(u32 val, int bits) in rotr() function 76 #define TE1(i) rotr(Te0[((i) >> 16) & 0xff], 8) 77 #define TE2(i) rotr(Te0[((i) >> 8) & 0xff], 16) 78 #define TE3(i) rotr(Te0[(i) & 0xff], 24) 94 #define TD1(i) rotr(Td0[((i) >> 16) & 0xff], 8) 95 #define TD2(i) rotr(Td0[((i) >> 8) & 0xff], 16) 96 #define TD3(i) rotr(Td0[(i) & 0xff], 24) 102 #define TD1_(i) rotr(Td0[(i) & 0xff], 8) 103 #define TD2_(i) rotr(Td0[(i) & 0xff], 16) 104 #define TD3_(i) rotr(Td [all...] |
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha1-mips.pl | 114 rotr @X[$i],@X[$i],16 131 rotr $t1,$a,27 142 rotr $b,$b,2 171 rotr @X[$i],@X[$i],16 189 rotr $t1,$a,27 196 rotr @X[$j%16],@X[$j%16],31 197 rotr $b,$b,2 230 rotr $t1,$a,27 237 rotr @X[$j%16],@X[$j%16],31 238 rotr [all...] |
H A D | sha1-586.pl | 184 &rotr($b,2); # b=ROTATE(b,30) 211 &rotr($b,$n==16?2:7); # b=ROTATE(b,30) 228 &rotr($b,2); # b=ROTATE(b,30) 253 &rotr($b,7); # b=ROTATE(b,30) 261 &rotr($a,5) if ($n==79); 271 &rotr($b,2); # b=ROTATE(b,30) 296 &rotr($b,7); # b=ROTATE(b,30) 315 &rotr($b,2); # b=ROTATE(b,30)
|
/third_party/openssl/crypto/sha/asm/ |
H A D | sha1-mips.pl | 114 rotr @X[$i],@X[$i],16 131 rotr $t1,$a,27 142 rotr $b,$b,2 171 rotr @X[$i],@X[$i],16 189 rotr $t1,$a,27 196 rotr @X[$j%16],@X[$j%16],31 197 rotr $b,$b,2 230 rotr $t1,$a,27 237 rotr @X[$j%16],@X[$j%16],31 238 rotr [all...] |
H A D | sha1-586.pl | 184 &rotr($b,2); # b=ROTATE(b,30) 211 &rotr($b,$n==16?2:7); # b=ROTATE(b,30) 228 &rotr($b,2); # b=ROTATE(b,30) 253 &rotr($b,7); # b=ROTATE(b,30) 261 &rotr($a,5) if ($n==79); 271 &rotr($b,2); # b=ROTATE(b,30) 296 &rotr($b,7); # b=ROTATE(b,30) 315 &rotr($b,2); # b=ROTATE(b,30)
|
/third_party/node/deps/openssl/config/archs/linux64-mips64/asm/crypto/aes/ |
H A D | aes-mips.S | 59 rotr $12,$12,24 60 rotr $13,$13,24 61 rotr $14,$14,24 62 rotr $15,$15,24 64 rotr $16,$16,16 65 rotr $17,$17,16 66 rotr $18,$18,16 67 rotr $19,$19,16 78 rotr $20,$20,8 80 rotr [all...] |
/third_party/node/deps/openssl/config/archs/linux64-mips64/asm_avx2/crypto/aes/ |
H A D | aes-mips.S | 59 rotr $12,$12,24 60 rotr $13,$13,24 61 rotr $14,$14,24 62 rotr $15,$15,24 64 rotr $16,$16,16 65 rotr $17,$17,16 66 rotr $18,$18,16 67 rotr $19,$19,16 78 rotr $20,$20,8 80 rotr [all...] |
/third_party/node/deps/openssl/openssl/crypto/des/asm/ |
H A D | crypt586.pl | 116 &rotr( $t, 4 ); 181 { &rotr($tt, 3-$lr); } 187 { &rotr($r, 2-$lr); } 200 else { &rotr($r, $lr-2); } 206 else { &rotr($l, $lr-3); } 214 &rotr($tt , 4);
|
H A D | des-586.pl | 197 &rotr($L,3); # r 199 &rotr($R,3); # l 227 &rotr( $t, 4 ); 289 { &rotr($tt, 3-$lr); } 295 { &rotr($r, 2-$lr); } 308 else { &rotr($r, $lr-2); } 314 else { &rotr($l, $lr-3); } 322 &rotr($tt , 4);
|
/third_party/openssl/crypto/des/asm/ |
H A D | crypt586.pl | 116 &rotr( $t, 4 ); 181 { &rotr($tt, 3-$lr); } 187 { &rotr($r, 2-$lr); } 200 else { &rotr($r, $lr-2); } 206 else { &rotr($l, $lr-3); } 214 &rotr($tt , 4);
|
H A D | des-586.pl | 197 &rotr($L,3); # r 199 &rotr($R,3); # l 227 &rotr( $t, 4 ); 289 { &rotr($tt, 3-$lr); } 295 { &rotr($r, 2-$lr); } 308 else { &rotr($r, $lr-2); } 314 else { &rotr($l, $lr-3); } 322 &rotr($tt , 4);
|
/third_party/node/deps/openssl/openssl/crypto/aes/asm/ |
H A D | aes-mips.pl | 183 rotr $t0,$t0,8 184 rotr $t1,$t1,8 185 rotr $t2,$t2,8 186 rotr $t3,$t3,8 188 rotr $t4,$t4,16 189 rotr $t5,$t5,16 190 rotr $t6,$t6,16 191 rotr $t7,$t7,16 202 rotr $t8,$t8,24 204 rotr [all...] |
/third_party/openssl/crypto/aes/asm/ |
H A D | aes-mips.pl | 183 rotr $t0,$t0,8 184 rotr $t1,$t1,8 185 rotr $t2,$t2,8 186 rotr $t3,$t3,8 188 rotr $t4,$t4,16 189 rotr $t5,$t5,16 190 rotr $t6,$t6,16 191 rotr $t7,$t7,16 202 rotr $t8,$t8,24 204 rotr [all...] |
/third_party/node/deps/openssl/openssl/crypto/rc5/asm/ |
H A D | rc5-586.pl | 96 &rotr($B, &LB("ecx")); 102 &rotr($A, &LB("ecx"));
|
/third_party/openssl/crypto/rc5/asm/ |
H A D | rc5-586.pl | 96 &rotr($B, &LB("ecx")); 102 &rotr($A, &LB("ecx"));
|
/third_party/skia/bench/ |
H A D | FontCacheBench.cpp | 58 static uint32_t rotr(uint32_t value, unsigned bits) { in rotr() function 105 if (false) rotr(0, 0); in FontCacheEfficiency()
|
/third_party/node/deps/openssl/openssl/crypto/perlasm/ |
H A D | cbc.pl | 297 &rotr("edx", 16); 308 &rotr("ecx", 16);
|
/third_party/openssl/crypto/perlasm/ |
H A D | cbc.pl | 297 &rotr("edx", 16); 308 &rotr("ecx", 16);
|