/third_party/ffmpeg/libavutil/ |
D | sha.c | 50 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro 54 #define blk(i) (block[i] = rol(block[(i)-3] ^ block[(i)-8] ^ block[(i)-14] ^ block[(i)-16], 1)) 56 …0(v,w,x,y,z,i) z += (((w)&((x)^(y)))^(y)) + blk0(i) + 0x5A827999 + rol(v, 5); w = rol(w, 30); 57 …1(v,w,x,y,z,i) z += (((w)&((x)^(y)))^(y)) + blk (i) + 0x5A827999 + rol(v, 5); w = rol(w, 30); 58 …2(v,w,x,y,z,i) z += ( (w)^(x) ^(y)) + blk (i) + 0x6ED9EBA1 + rol(v, 5); w = rol(w, 30); 59 …3(v,w,x,y,z,i) z += ((((w)|(x))&(y))|((w)&(x))) + blk (i) + 0x8F1BBCDC + rol(v, 5); w = rol(w, 30); 60 …4(v,w,x,y,z,i) z += ( (w)^(x) ^(y)) + blk (i) + 0xCA62C1D6 + rol(v, 5); w = rol(w, 30); 80 t = rol(block[i-3] ^ block[i-8] ^ block[i-14] ^ block[i-16], 1); in sha1_transform() 82 t += e + rol(a, 5); in sha1_transform() 96 c = rol(b, 30); in sha1_transform() [all …]
|
D | ripemd.c | 89 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro 92 a = rol(a + (( b ^ c ^ d) + block[WA[n]]), ROTA[n]); \ 93 e = rol(e + ((((f ^ g) & h) ^ g) + block[WB[n]] + KB[0]), ROTB[n]); \ 97 a = rol(a + ((((c ^ d) & b) ^ d) + block[WA[n]] + KA[0]), ROTA[n]); \ 98 e = rol(e + (((~g | f) ^ h) + block[WB[n]] + KB[1]), ROTB[n]); \ 102 a = rol(a + (((~c | b) ^ d) + block[WA[n]] + KA[1]), ROTA[n]); \ 103 e = rol(e + ((((g ^ h) & f) ^ h) + block[WB[n]] + KB[2]), ROTB[n]); \ 107 a = rol(a + ((((b ^ c) & d) ^ c) + block[WA[n]] + KA[2]), ROTA[n]); \ 108 e = rol(e + (( f ^ g ^ h) + block[WB[n]]), ROTB[n]); \ 253 x = rol(x, 10); \ [all …]
|
/third_party/mesa3d/src/util/sha1/ |
D | sha1.c | 22 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro 29 # define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \ 30 |(rol(block->l[i],8)&0x00FF00FF)) 34 #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \ 40 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30); 41 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30); 42 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); 43 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30); 44 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
|
/third_party/selinux/libselinux/src/ |
D | sha1.c | 43 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro 46 #define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \ 47 |(rol(block->l[i],8)&0x00FF00FF)) 49 #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \ 53 #define R0(v,w,x,y,z,i) do { z += ((w&(x^y))^y) + blk0(i)+ 0x5A827999 + rol(v,5); w=rol(w,30);… 54 #define R1(v,w,x,y,z,i) do { z += ((w&(x^y))^y) + blk(i) + 0x5A827999 + rol(v,5); w=rol(w,30);… 55 #define R2(v,w,x,y,z,i) do { z += (w^x^y) + blk(i) + 0x6ED9EBA1 + rol(v,5); w=rol(w,30);… 56 #define R3(v,w,x,y,z,i) do { z += (((w|x)&y)|(w&x)) + blk(i) + 0x8F1BBCDC + rol(v,5); w=rol(w,30);… 57 #define R4(v,w,x,y,z,i) do { z += (w^x^y) + blk(i) + 0xCA62C1D6 + rol(v,5); w=rol(w,30);…
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
D | sha1-internal.c | 130 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro 135 #define blk0(i) (block->l[i] = (rol(block->l[i], 24) & 0xFF00FF00) | \ 136 (rol(block->l[i], 8) & 0x00FF00FF)) 140 #define blk(i) (block->l[i & 15] = rol(block->l[(i + 13) & 15] ^ \ 145 z += ((w & (x ^ y)) ^ y) + blk0(i) + 0x5A827999 + rol(v, 5); \ 146 w = rol(w, 30); 148 z += ((w & (x ^ y)) ^ y) + blk(i) + 0x5A827999 + rol(v, 5); \ 149 w = rol(w, 30); 151 z += (w ^ x ^ y) + blk(i) + 0x6ED9EBA1 + rol(v, 5); w = rol(w, 30); 153 z += (((w | x) & y) | (w & x)) + blk(i) + 0x8F1BBCDC + rol(v, 5); \ [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
D | sha1-internal.c | 130 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro 135 #define blk0(i) (block->l[i] = (rol(block->l[i], 24) & 0xFF00FF00) | \ 136 (rol(block->l[i], 8) & 0x00FF00FF)) 140 #define blk(i) (block->l[i & 15] = rol(block->l[(i + 13) & 15] ^ \ 145 z += ((w & (x ^ y)) ^ y) + blk0(i) + 0x5A827999 + rol(v, 5); \ 146 w = rol(w, 30); 148 z += ((w & (x ^ y)) ^ y) + blk(i) + 0x5A827999 + rol(v, 5); \ 149 w = rol(w, 30); 151 z += (w ^ x ^ y) + blk(i) + 0x6ED9EBA1 + rol(v, 5); w = rol(w, 30); 153 z += (((w | x) & y) | (w & x)) + blk(i) + 0x8F1BBCDC + rol(v, 5); \ [all …]
|
/third_party/ffmpeg/libavformat/ |
D | redspark.c | 29 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro 45 key = rol(key, 11); in redspark_probe() 47 key += rol(key, 3); in redspark_probe() 78 key = rol(key, 11); in redspark_read_header() 81 key += rol(key, 3); in redspark_read_header()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | SHA1.cpp | 30 static inline uint32_t rol(uint32_t Number, int Bits) { in rol() function 37 Buf[I & 15] = rol(Buf[(I + 13) & 15] ^ Buf[(I + 8) & 15] ^ Buf[(I + 2) & 15] ^ in blk() 45 E += ((B & (C ^ D)) ^ D) + blk0(Buf, I) + 0x5A827999 + rol(A, 5); in r0() 46 B = rol(B, 30); in r0() 51 E += ((B & (C ^ D)) ^ D) + blk(Buf, I) + 0x5A827999 + rol(A, 5); in r1() 52 B = rol(B, 30); in r1() 57 E += (B ^ C ^ D) + blk(Buf, I) + 0x6ED9EBA1 + rol(A, 5); in r2() 58 B = rol(B, 30); in r2() 63 E += (((B | C) & D) | (B & C)) + blk(Buf, I) + 0x8F1BBCDC + rol(A, 5); in r3() 64 B = rol(B, 30); in r3() [all …]
|
/third_party/boost/libs/beast/include/boost/beast/core/detail/ |
D | sha1.ipp | 37 rol(std::uint32_t value, std::size_t bits) 46 return rol( 57 z += ((w&(x^y))^y) + block[i] + 0x5a827999 + rol(v, 5); 58 w = rol(w, 30); 69 z += ((w&(x^y))^y) + block[i] + 0x5a827999 + rol(v, 5); 70 w = rol(w, 30); 80 z += (w^x^y) + block[i] + 0x6ed9eba1 + rol(v, 5); 81 w = rol(w, 30); 91 z += (((w|x)&y)|(w&x)) + block[i] + 0x8f1bbcdc + rol(v, 5); 92 w = rol(w, 30); [all …]
|
/third_party/boost/boost/beast/core/detail/ |
D | sha1.ipp | 37 rol(std::uint32_t value, std::size_t bits) 46 return rol( 57 z += ((w&(x^y))^y) + block[i] + 0x5a827999 + rol(v, 5); 58 w = rol(w, 30); 69 z += ((w&(x^y))^y) + block[i] + 0x5a827999 + rol(v, 5); 70 w = rol(w, 30); 80 z += (w^x^y) + block[i] + 0x6ed9eba1 + rol(v, 5); 81 w = rol(w, 30); 91 z += (((w|x)&y)|(w&x)) + block[i] + 0x8f1bbcdc + rol(v, 5); 92 w = rol(w, 30); [all …]
|
/third_party/toybox/toys/lsb/ |
D | md5sum.c | 169 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro 195 work += block[count] = (rol(block[count],24)&0xFF00FF00) in sha1_transform() 196 | (rol(block[count],8)&0x00FF00FF); in sha1_transform() 198 work += block[count&15] = rol(block[(count+13)&15] in sha1_transform() 200 *rot[4] += work + rol(*rot[0],5) + rconsts[i]; in sha1_transform() 201 *rot[1] = rol(*rot[1],30); in sha1_transform()
|
/third_party/pcre2/pcre2/src/sljit/ |
D | sljitNativeARM_32.c | 1269 sljit_s32 rol; in get_imm() local 1276 rol = 8; in get_imm() 1280 rol = 0; in get_imm() 1285 rol += 4; in get_imm() 1290 rol += 2; in get_imm() 1295 rol += 1; in get_imm() 1299 return SRC2_IMM | (imm >> 24) | (rol << 8); in get_imm() 1310 sljit_s32 rol; in generate_int() local 1314 rol = 8; in generate_int() 1318 imm = (imm << rol) | (imm >> (32 - rol)); in generate_int() [all …]
|
/third_party/musl/src/crypt/ |
D | crypt_md5.c | 20 static uint32_t rol(uint32_t n, int k) { return (n << k) | (n >> (32-k)); } in rol() function 25 #define FF(a,b,c,d,w,s,t) a += F(b,c,d) + w + t; a = rol(a,s) + b 26 #define GG(a,b,c,d,w,s,t) a += G(b,c,d) + w + t; a = rol(a,s) + b 27 #define HH(a,b,c,d,w,s,t) a += H(b,c,d) + w + t; a = rol(a,s) + b 28 #define II(a,b,c,d,w,s,t) a += I(b,c,d) + w + t; a = rol(a,s) + b
|
/third_party/boost/libs/beast/include/boost/beast/websocket/detail/ |
D | mask.ipp | 31 rol(prepared_key& v, std::size_t n) 57 rol(key, n);
|
/third_party/boost/boost/beast/websocket/detail/ |
D | mask.ipp | 31 rol(prepared_key& v, std::size_t n) 57 rol(key, n);
|
/third_party/mesa3d/src/intel/compiler/ |
D | test_fs_scoreboard.cpp | 730 fs_inst *rol = instruction(else_body, 0); in TEST_F() local 731 EXPECT_EQ(rol->opcode, BRW_OPCODE_ROL); in TEST_F() 732 EXPECT_EQ(rol->sched, tgl_swsb_regdist(2)); in TEST_F() 775 fs_inst *rol = instruction(else_body, 4); in TEST_F() local 776 EXPECT_EQ(rol->opcode, BRW_OPCODE_ROL); in TEST_F() 777 EXPECT_EQ(rol->sched, tgl_swsb_regdist(6)); in TEST_F() 820 fs_inst *rol = instruction(else_body, 0); in TEST_F() local 821 EXPECT_EQ(rol->opcode, BRW_OPCODE_ROL); in TEST_F() 822 EXPECT_EQ(rol->sched, tgl_swsb_regdist(2)); in TEST_F() 866 fs_inst *rol = instruction(else_body, 0); in TEST_F() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86InstrShiftRotate.td | 460 "rol{b}\t{%cl, $dst|$dst, cl}", 463 "rol{w}\t{%cl, $dst|$dst, cl}", 466 "rol{l}\t{%cl, $dst|$dst, cl}", 469 "rol{q}\t{%cl, $dst|$dst, cl}", 474 "rol{b}\t{$src2, $dst|$dst, $src2}", 477 "rol{w}\t{$src2, $dst|$dst, $src2}", 481 "rol{l}\t{$src2, $dst|$dst, $src2}", 486 "rol{q}\t{$src2, $dst|$dst, $src2}", 491 "rol{b}\t$dst", 494 "rol{w}\t$dst", [all …]
|
/third_party/mesa3d/src/intel/tools/tests/gen11/ |
D | rol.asm | 1 rol(16) g3<1>UD g2<0,1,0>UD g2.1<0,1,0>UD { align1 1H };
|
/third_party/openssl/crypto/chacha/asm/ |
D | chacha-x86_64.pl | 187 "&rol (@x[$d0],16)", 190 "&rol (@x[$d1],16)", 194 "&rol (@x[$b0],12)", 197 "&rol (@x[$b1],12)", 201 "&rol (@x[$d0],8)", 204 "&rol (@x[$d1],8)", 208 "&rol (@x[$b0],7)", 211 "&rol (@x[$b1],7)", 220 "&rol (@x[$d2],16)", 223 "&rol (@x[$d3],16)", [all …]
|
D | chacha-x86.pl | 106 &rol ($d,16); 112 &rol ($b,12); 118 &rol ($d,8); 125 &rol ($b,7);
|
/third_party/openssl/crypto/perlasm/ |
D | x86asm.pl | 71 sub ::rotl { &rol(@_); }
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | BitTracker.cpp | 253 BT::RegisterCell &BT::RegisterCell::rol(uint16_t Sh) { in rol() function in BT::RegisterCell 522 Res.rol(Sh); in eASL() 532 Res.rol(W-Sh); in eLSR() 543 Res.rol(W-Sh); in eASR()
|
/third_party/gstreamer/gstreamer/po/ |
D | hu.po | 474 msgstr "az adatok tárolására használt kodek" 480 msgstr "a videoadatok tárolására használt kodek" 486 msgstr "a hangadatok tárolására használt kodek" 492 msgstr "a feliratadatok tárolására használt kodek" 495 msgstr "tárolóformátum" 498 msgstr "az adatok tárolására használt tárolóformátum" 939 msgstr "a megadott üres „%s” tároló nem engedélyezett" 943 msgstr "nincs „%s” tároló, elemek kicsomagolása"
|
/third_party/openssl/crypto/modes/asm/ |
D | ghash-x86.pl | 714 &rol ($dat,8); 720 &rol ($dat,8); # next byte 733 &rol ($dat,8); # next byte
|
/third_party/skia/third_party/externals/icu/source/data/misc/ |
D | keyTypeData.txt | 377 rol{""}
|