Home
last modified time | relevance | path

Searched refs:SHR (Results 1 – 10 of 10) sorted by relevance

/f-stack/dpdk/drivers/common/dpaax/caamflib/rta/
H A Dheader_cmd.h14 DNR | TD | MTD | SHR | REO,
15 DNR | TD | MTD | SHR | REO | RSMS,
16 DNR | TD | MTD | SHR | REO | RSMS,
17 DNR | TD | MTD | SHR | REO | RSMS,
18 DNR | TD | MTD | SHR | REO | RSMS | EXT,
19 DNR | TD | MTD | SHR | REO | RSMS | EXT,
20 DNR | TD | MTD | SHR | REO | RSMS | EXT,
21 DNR | TD | MTD | SHR | REO | EXT,
22 DNR | TD | MTD | SHR | REO | EXT,
23 DNR | TD | MTD | SHR | REO | EXT
[all …]
H A Dsec_run_time_asm.h317 #define SHR BIT(24) macro
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/
H A Dpoly1305_donna64.h11 #define SHR(in, shift) (unsigned long long) (in >> (shift)) macro
113 c = SHR(d0, 44); in poly1305_blocks()
116 c = SHR(d1, 44); in poly1305_blocks()
119 c = SHR(d2, 42); in poly1305_blocks()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_hash/sha512/cp/
H A Dhash_sha512_cp.c92 #define SHR(x, n) (x >> n) macro
96 #define s0(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x, 7))
97 #define s1(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHR(x, 6))
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_hash/sha256/cp/
H A Dhash_sha256_cp.c76 #define SHR(x, n) (x >> n) macro
80 #define s0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3))
81 #define s1(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10))
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/spl/
H A Dsha256c.c107 #define SHR(x, n) (x >> n) macro
111 #define s0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3))
112 #define s1(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10))
H A Dsha512c.c131 #define SHR(x, n) (x >> n) macro
135 #define s0(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x, 7))
136 #define s1(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHR(x, 6))
/f-stack/freebsd/crypto/sha2/
H A Dsha256c.c105 #define SHR(x, n) (x >> n) macro
109 #define s0(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3))
110 #define s1(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10))
H A Dsha512c.c131 #define SHR(x, n) (x >> n) macro
135 #define s0(x) (ROTR(x, 1) ^ ROTR(x, 8) ^ SHR(x, 7))
136 #define s1(x) (ROTR(x, 19) ^ ROTR(x, 61) ^ SHR(x, 6))
/f-stack/freebsd/contrib/openzfs/module/icp/algs/sha2/
H A Dsha2.c91 #define SHR(x, n) ((x) >> (n)) macro
96 #define SIGMA0_256(x) (ROTR((x), 7) ^ ROTR((x), 18) ^ SHR((x), 3))
97 #define SIGMA1_256(x) (ROTR((x), 17) ^ ROTR((x), 19) ^ SHR((x), 10))
108 #define SIGMA0(x) (ROTR((x), 1) ^ ROTR((x), 8) ^ SHR((x), 7))
109 #define SIGMA1(x) (ROTR((x), 19) ^ ROTR((x), 61) ^ SHR((x), 6))