Home
last modified time | relevance | path

Searched full:rotate (Results 1 – 25 of 419) sorted by relevance

12345678910>>...17

/freebsd/sys/contrib/device-tree/Bindings/media/
H A Dallwinner,sun8i-a83t-de2-rotate.yaml4 $id: http://devicetree.org/schemas/media/allwinner,sun8i-a83t-de2-rotate.yaml#
7 title: Allwinner A83T DE2 Rotate
21 - const: allwinner,sun8i-a83t-de2-rotate
23 - const: allwinner,sun50i-a64-de2-rotate
24 - const: allwinner,sun8i-a83t-de2-rotate
34 - description: Rotate interface clock
35 - description: Rotate module clock
59 rotate: rotate@1020000 {
60 compatible = "allwinner,sun8i-a83t-de2-rotate";
/freebsd/crypto/openssl/crypto/ripemd/
H A Drmd_local.h66 a=ROTATE(a,s)+e; \
67 c=ROTATE(c,10); }
71 a=ROTATE(a,s)+e; \
72 c=ROTATE(c,10); }
76 a=ROTATE(a,s)+e; \
77 c=ROTATE(c,10); }
81 a=ROTATE(a,s)+e; \
82 c=ROTATE(c,10); }
86 a=ROTATE(a,s)+e; \
87 c=ROTATE(c,10); }
/freebsd/crypto/openssl/crypto/sm3/
H A Dsm3_local.h42 #define P0(X) (X ^ ROTATE(X, 9) ^ ROTATE(X, 17))
43 #define P1(X) (X ^ ROTATE(X, 15) ^ ROTATE(X, 23))
52 (P1(W0 ^ W7 ^ ROTATE(W13, 15)) ^ ROTATE(W3, 7) ^ W10)
56 const SM3_WORD A12 = ROTATE(A, 12); \
58 const SM3_WORD SS1 = ROTATE(A12_SM, 7); \
61 B = ROTATE(B, 9); \
63 F = ROTATE(F, 19); \
/freebsd/lib/libmd/
H A Dsha_locl.h166 #undef ROTATE
168 #define ROTATE(a,n) _lrotl(a,n) macro
170 #define ROTATE(a,n) (((a)<<(n))|(((a)&0xffffffff)>>(32-(n)))) macro
175 /* 5 instructions with rotate instruction, else 9 */
179 (a)=((ROTATE(l,8)&0x00FF00FF)|(ROTATE(l,24)&0xFF00FF00)); \
182 /* 6 instructions with rotate instruction, else 8 */
187 (a)=ROTATE(l,16L); \
212 X[(i)&0x0f]=(a)=ROTATE((a),1);
216 (f)=xa[i]+(e)+K_00_19+ROTATE((a),5)+F_00_19((b),(c),(d)); \
217 (b)=ROTATE((b),30);
[all …]
H A Drmd_locl.h153 #undef ROTATE
155 #define ROTATE(a,n) _lrotl(a,n) macro
157 #define ROTATE(a,n) (((a)<<(n))|(((a)&0xffffffff)>>(32-(n)))) macro
162 /* 5 instructions with rotate instruction, else 9 */
166 (a)=((ROTATE(l,8)&0x00FF00FF)|(ROTATE(l,24)&0xFF00FF00)); \
169 /* 6 instructions with rotate instruction, else 8 */
174 (a)=ROTATE(l,16L); \
194 a=ROTATE(a,s)+e; \
195 c=ROTATE(c,10); }
199 a=ROTATE(a,s)+e; \
[all …]
/freebsd/crypto/openssl/crypto/sha/asm/
H A Dsha1-ia64.pl87 shrp $b=tmp6,tmp6,2 } // b=ROTATE(b,30)
89 or tmp5=tmp1,tmp5 // ROTATE(a,5)
91 { .mii; add $e=$e,tmp5 // e+=ROTATE(a,5)
113 shrp $b=tmp6,tmp6,2 } // b=ROTATE(b,30)
114 { .mmi; or tmp1=tmp1,tmp5 // ROTATE(a,5)
116 { .mii; add $e=$e,tmp1 // e+=ROTATE(a,5)
117 shrp $Xn=$Xn,$Xn,31 // ROTATE(x[0]^x[2]^x[8]^x[13],1)
143 shrp $b=tmp6,tmp6,2 } // b=ROTATE(b,30)
144 { .mmi; or tmp1=tmp1,tmp5 // ROTATE(a,5)
146 { .mii; add $e=$e,tmp1 // e+=ROTATE(a,5)
[all …]
/freebsd/usr.sbin/newsyslog/tests/
H A Dlegacy_test.sh234 begin "rotate normal 1 ${name_postfix}"
241 begin "rotate normal 2 ${name_postfix}"
249 begin "rotate normal 3 ${name_postfix}"
258 begin "rotate normal 4 ${name_postfix}"
267 begin "rotate normal 5 ${name_postfix}"
312 begin "rotate normal 1 cnt=$cnt ${name_postfix}"
319 begin "rotate normal 2 cnt=$cnt ${name_postfix}"
327 begin "rotate normal 3 cnt=$cnt ${name_postfix}"
336 begin "rotate normal 3 cnt=$cnt ${name_postfix}"
380 begin "rotate time 1 ${name_postfix}"
[all …]
/freebsd/sys/netgraph/
H A Dng_vlan_rotate.c308 * Receive data, and do rotate the vlans as desired.
317 * 34012 +2 rotate
318 * 12340 +4 rotate
319 * 12340 -1 rotate
352 /* rotate left aka downwards */ in ng_vlanrotate_rotate()
377 int8_t rotate; in ng_vlanrotate_rcvdata() local
384 rotate = +vrp->conf.rot; in ng_vlanrotate_rcvdata()
387 rotate = -vrp->conf.rot; in ng_vlanrotate_rcvdata()
431 if ((vlans < vrp->conf.min) || (vlans <= abs(rotate))) { in ng_vlanrotate_rcvdata()
439 if (rotate == 0) { in ng_vlanrotate_rcvdata()
[all …]
/freebsd/crypto/openssl/crypto/des/
H A Ddes_enc.c30 * Things have been modified so that the initial rotate is done outside in DES_encrypt1()
37 r = ROTATE(r, 29) & 0xffffffffL; in DES_encrypt1()
38 l = ROTATE(l, 29) & 0xffffffffL; in DES_encrypt1()
81 /* rotate and clear the top bits on machines with 8byte longs */ in DES_encrypt1()
82 l = ROTATE(l, 3) & 0xffffffffL; in DES_encrypt1()
83 r = ROTATE(r, 3) & 0xffffffffL; in DES_encrypt1()
100 * Things have been modified so that the initial rotate is done outside in DES_encrypt2()
106 r = ROTATE(r, 29) & 0xffffffffL; in DES_encrypt2()
107 l = ROTATE(l, 29) & 0xffffffffL; in DES_encrypt2()
149 /* rotate and clear the top bits on machines with 8byte longs */ in DES_encrypt2()
[all …]
/freebsd/usr.sbin/periodic/etc/daily/
H A D223.backup-zfs18 rotate() { function
59 rotate "zpool_list" $show
62 rotate "zfs_list" $show
71 rotate "zfs_props" $show
74 rotate "zpool_props" $show
H A D221.backup-gpart19 rotate() { function
51 rotate "kern.geom.conftxt" $show
70 rotate "$safe_name" $show
82 rotate "$safe_name"
94 rotate "$safe_name"
116 rotate "$safe_name"
/freebsd/sys/crypto/des/
H A Ddes_enc.c82 /* Things have been modified so that the initial rotate is in des_encrypt1()
90 r=ROTATE(r,29)&0xffffffffL; in des_encrypt1()
91 l=ROTATE(l,29)&0xffffffffL; in des_encrypt1()
155 /* rotate and clear the top bits on machines with 8byte longs */ in des_encrypt1()
156 l=ROTATE(l,3)&0xffffffffL; in des_encrypt1()
157 r=ROTATE(r,3)&0xffffffffL; in des_encrypt1()
179 /* Things have been modified so that the initial rotate is in des_encrypt2()
186 r=ROTATE(r,29)&0xffffffffL; in des_encrypt2()
187 l=ROTATE(l,29)&0xffffffffL; in des_encrypt2()
250 /* rotate and clear the top bits on machines with 8byte longs */ in des_encrypt2()
[all …]
/freebsd/crypto/openssl/crypto/sha/
H A Dsha_local.h37 ix=(a)=ROTATE((a),1) \
86 (f)=xi+(e)+K_00_19+ROTATE((a),5)+F_00_19((b),(c),(d)); \
87 (b)=ROTATE((b),30);
91 (f)+=(e)+K_00_19+ROTATE((a),5)+F_00_19((b),(c),(d)); \
92 (b)=ROTATE((b),30);
96 (f)+=(e)+K_20_39+ROTATE((a),5)+F_20_39((b),(c),(d)); \
97 (b)=ROTATE((b),30);
101 (f)+=(e)+K_20_39+ROTATE((a),5)+F_20_39((b),(c),(d)); \
102 (b)=ROTATE((b),30);
106 (f)+=(e)+K_40_59+ROTATE((a),5)+F_40_59((b),(c),(d)); \
[all …]
H A Dsha256.c133 * FIPS specification refers to right rotations, while our ROTATE macro
137 # define Sigma0(x) (ROTATE((x),30) ^ ROTATE((x),19) ^ ROTATE((x),10))
138 # define Sigma1(x) (ROTATE((x),26) ^ ROTATE((x),21) ^ ROTATE((x),7))
139 # define sigma0(x) (ROTATE((x),25) ^ ROTATE((x),14) ^ ((x)>>3))
140 # define sigma1(x) (ROTATE((x),15) ^ ROTATE((x),13) ^ ((x)>>10))
/freebsd/sys/contrib/openzfs/module/zcommon/
H A Dcityhash.c31 * Bitwise right rotate. Normally this will compile to a single
35 rotate(uint64_t val, int shift) in rotate() function
60 return (cityhash_helper(rotate(a + b, 43) + rotate(c, 30) + d, in cityhash_impl()
61 a + rotate(b + HASH_K2, 18) + c, mul)); in cityhash_impl()
/freebsd/tests/sys/geom/class/multipath/
H A Dmisc.sh316 atf_test_case rotate cleanup
319 atf_set "descr" "Manually rotate the active path"
334 # Explicitly rotate the paths
335 atf_check -s exit:0 gmultipath rotate "$name"
338 atf_check -s exit:0 gmultipath rotate "$name"
341 atf_check -s exit:0 gmultipath rotate "$name"
361 atf_add_test_case rotate
/freebsd/crypto/openssl/crypto/chacha/
H A Dchacha_enc.c25 # define ROTATE(v, n) (((v) << (n)) | ((v) >> (32 - (n)))) macro
36 x[a] += x[b], x[d] = ROTATE((x[d] ^ x[a]),16), \
37 x[c] += x[d], x[b] = ROTATE((x[b] ^ x[c]),12), \
38 x[a] += x[b], x[d] = ROTATE((x[d] ^ x[a]), 8), \
39 x[c] += x[d], x[b] = ROTATE((x[b] ^ x[c]), 7) )
/freebsd/share/man/man4/
H A Dng_vlan_rotate.4156 The first example demonstrates how to rotate double or triple tagged
169 name ${BNG_IF}:lower rotate
170 msg rotate: setconf { min=2 max=3 rot=1 }
171 mkpeer rotate: vlan ordered downstream
172 name rotate:ordered services
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dia32intrin.h552 /// The number of bits to rotate the value.
570 /// The number of bits to rotate the value.
588 /// The number of bits to rotate the value.
607 /// The number of bits to rotate the value.
626 /// The number of bits to rotate the value.
645 /// The number of bits to rotate the value.
665 /// The number of bits to rotate the value.
683 /// The number of bits to rotate the value.
710 /// The number of bits to rotate the value.
730 /// The number of bits to rotate the value.
[all …]
/freebsd/crypto/openssl/crypto/md5/
H A Dmd5_local.h64 a=ROTATE(a,s); \
69 a=ROTATE(a,s); \
74 a=ROTATE(a,s); \
79 a=ROTATE(a,s); \
/freebsd/crypto/openssh/regress/
H A Dhostkey-rotate.sh1 # $OpenBSD: hostkey-rotate.sh,v 1.10 2022/01/05 08:25:05 djm Exp $
4 tid="hostkey rotate"
8 # fail to find ssh host keys in the hostkey-rotate test. If we have those
137 verbose "rotate primary hostkey"
149 verbose "check rotate primary hostkey"
/freebsd/usr.sbin/newsyslog/
H A Dnewsyslog.conf.5246 rotate every night at midnight
250 rotate every day at 23:00
254 rotate every week on Sunday at 23:00
256 rotate every week on Friday at 16:00
258 rotate at the first day of every month at midnight
262 rotate on every fifth day of month at 6:00
/freebsd/crypto/openssl/crypto/aes/
H A Daes_x86core.c93 #undef ROTATE
95 # define ROTATE(a,n) _lrotl(a,n) macro
97 # define ROTATE(a,n) _rotl(a,n) macro
100 # define ROTATE(a,n) ({ register unsigned int ret; \ macro
619 #if defined(ROTATE) in AES_set_decrypt_key()
620 rk[j] = tpe ^ ROTATE(tpd,16) ^ in AES_set_decrypt_key()
621 ROTATE(tp9,8) ^ ROTATE(tpb,24); in AES_set_decrypt_key()
707 #if defined(ROTATE) in AES_encrypt()
708 t[i] = r2 ^ ROTATE(r2,24) ^ ROTATE(r0,24) ^ in AES_encrypt()
709 ROTATE(r0,16) ^ ROTATE(r0,8); in AES_encrypt()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DInstructionUtils.h60 // Rotate a 32-bit unsigned value right by the specified amount.
62 assert(amt < 32 && "Invalid rotate amount"); in Rotr32()
66 // Rotate a 32-bit unsigned value left by the specified amount.
68 assert(amt < 32 && "Invalid rotate amount"); in Rotl32()
/freebsd/crypto/openssl/crypto/md4/
H A Dmd4_local.h52 a=ROTATE(a,s); };
56 a=ROTATE(a,s); };
60 a=ROTATE(a,s); };

12345678910>>...17