Home
last modified time | relevance | path

Searched refs:rol (Results 1 – 25 of 29) sorted by relevance

12

/freebsd/contrib/wpa/src/crypto/
H A Dsha1-internal.c130 #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 …]
/freebsd/crypto/openssh/openbsd-compat/
H A Dsha1.c24 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro
31 # define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \
32 |(rol(block->l[i],8)&0x00FF00FF))
36 #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \
42 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30);
43 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30);
44 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
45 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
46 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
/freebsd/contrib/ldns/
H A Dsha1.c24 #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] \
38 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30);
39 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30);
40 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
41 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
42 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
/freebsd/sys/contrib/openzfs/module/icp/asm-x86_64/aes/
H A Daes_amd64.S445 rol $8, %edi; \
451 rol $16, %esi; \
452 rol $24, %edi; \
462 rol $8, %edi; \
468 rol $16, %esi; \
469 rol $24, %edi; \
479 rol $8, %edi; \
485 rol $16, %esi; \
486 rol $24, %edi; \
496 rol $8, %edi; \
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSHA1.cpp26 static inline uint32_t rol(uint32_t Number, int Bits) { in rol() function
33 Buf[I & 15] = rol(Buf[(I + 13) & 15] ^ Buf[(I + 8) & 15] ^ Buf[(I + 2) & 15] ^ in blk()
41 E += ((B & (C ^ D)) ^ D) + blk0(Buf, I) + 0x5A827999 + rol(A, 5); in r0()
42 B = rol(B, 30); in r0()
47 E += ((B & (C ^ D)) ^ D) + blk(Buf, I) + 0x5A827999 + rol(A, 5); in r1()
48 B = rol(B, 30); in r1()
53 E += (B ^ C ^ D) + blk(Buf, I) + 0x6ED9EBA1 + rol(A, 5); in r2()
54 B = rol(B, 30); in r2()
59 E += (((B | C) & D) | (B & C)) + blk(Buf, I) + 0x8F1BBCDC + rol(A, 5); in r3()
60 B = rol( in r3()
[all...]
/freebsd/contrib/ntp/libntp/lib/isc/
H A Dsha1.c82 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro
91 (block->l[i] = (rol(block->l[i], 24) & 0xFF00FF00) \
92 | (rol(block->l[i], 8) & 0x00FF00FF))
97 (block->l[i & 15] = rol(block->l[(i + 13) & 15] \
108 z += ((w & (x ^ y)) ^ y) + blk0(i) + 0x5A827999 + rol(v, 5); \
109 w = rol(w, 30);
111 z += ((w & (x ^ y)) ^ y) + blk(i) + 0x5A827999 + rol(v, 5); \
112 w = rol(w, 30);
114 z += (w ^ x ^ y) + blk(i) + 0x6ED9EBA1 + rol(v, 5); \
115 w = rol(w, 30);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrShiftRotate.td230 defm ROL: ShiftRotate<"rol", MRM0r, MRM0m, rotl, WriteRotateCL, WriteRotate, WriteRotateCLLd, WriteRotateLd>;
239 defm ROL: ShiftRotate_NF<"rol", MRM0r, MRM0m, WriteRotateCL, WriteRotate, WriteRotateCLLd, WriteRotateLd>;
/freebsd/contrib/ntp/sntp/libevent/test/
H A Dregress_iocp.c238 struct event_overlapped rol, wol; in test_iocp_evbuffer() local
247 event_overlapped_init_(&rol, read_complete); in test_iocp_evbuffer()
272 tt_assert(!evbuffer_launch_read_(rbuf, 2048, &rol)); in test_iocp_evbuffer()
/freebsd/contrib/libevent/test/
H A Dregress_iocp.c238 struct event_overlapped rol, wol; in test_iocp_evbuffer() local
247 event_overlapped_init_(&rol, read_complete); in test_iocp_evbuffer()
272 tt_assert(!evbuffer_launch_read_(rbuf, 2048, &rol)); in test_iocp_evbuffer()
/freebsd/lib/libc/amd64/string/
H A Dtimingsafe_memcmp.S66 rol $8, %ax # ROLW is used here so the upper two
67 rol $8, %si # bytes stay clear, allowing us to
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/avr/
H A Dmulhi3.S62 rol r23 ; B <<= 1;
/freebsd/crypto/openssl/crypto/chacha/asm/
H A Dchacha-x86_64.pl189 "&rol (@x[$d0],16)",
192 "&rol (@x[$d1],16)",
196 "&rol (@x[$b0],12)",
199 "&rol (@x[$b1],12)",
203 "&rol (@x[$d0],8)",
206 "&rol (@x[$d1],8)",
210 "&rol (@x[$b0],7)",
213 "&rol (@x[$b1],7)",
222 "&rol (@x[$d2],16)",
225 "&rol (@x[$d3],16)",
[all …]
H A Dchacha-x86.pl105 &rol ($d,16);
111 &rol ($b,12);
117 &rol ($d,8);
124 &rol ($b,7);
/freebsd/lib/libc/nls/
H A Dhu_HU.ISO8859-2.msg160 77 Nincs el�rhet� z�rol�s
174 84 Az �rt�k t�l nagy az adott adatt�pusban val� t�rol�shoz
/freebsd/crypto/openssl/crypto/perlasm/
H A Dx86asm.pl71 sub ::rotl { &rol(@_); }
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kInstrShiftRotate.td97 defm ROL : MxSROp<"rol", rotl, MxRODI_L, MxROOP_RO>;
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DBitTracker.cpp253 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()
H A DBitTracker.h319 RegisterCell &rol(uint16_t Sh); // Rotate left.
/freebsd/crypto/openssl/crypto/modes/asm/
H A Dghash-x86.pl713 &rol ($dat,8);
719 &rol ($dat,8); # next byte
732 &rol ($dat,8); # next byte
H A Dghash-x86_64.pl359 &rol ($dat,8);
366 &rol ($dat,8);
/freebsd/crypto/openssl/crypto/sha/
H A Dsha512.c450 _asm rol edx, 16 in __pull64be()
451 _asm rol eax, 16 in __pull64be()
/freebsd/crypto/openssl/crypto/sha/asm/
H A Dsha1-586.pl572 my $_rol=sub { &rol(@_) };
H A Dsha1-x86_64.pl490 my $_rol=sub { &rol(@_) };
/freebsd/crypto/openssl/crypto/aes/asm/
H A Daesni-sha1-x86_64.pl191 my $_rol=sub { &rol(@_) };
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsInstrInfo.td2532 "rol\t$rs, $rt, $rd">;
2535 "rol\t$rs, $rt, $imm">;
2536 def : MipsInstAlias<"rol $rd, $rs",
2538 def : MipsInstAlias<"rol $rd, $imm",

12