HomeSort by: relevance | last modified time | path
    Searched defs:SHR (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_hash/sha256/cp/
hash_sha256_cp.c 76 #define SHR(x, n) (x >> n)
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))
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_hash/sha512/cp/
hash_sha512_cp.c 92 #define SHR(x, n) (x >> n)
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))
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/donna/
poly1305_donna64.h 11 #define SHR(in, shift) (unsigned long long) (in >> (shift))
113 c = SHR(d0, 44);
116 c = SHR(d1, 44);
119 c = SHR(d2, 42);
  /src/usr.bin/xlint/lint1/
op.h 84 SHR,
  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativeX86_common.c 234 #define SHR (/* SHIFT */ 5 << 3)
1149 *inst |= SHR;
2164 return emit_shift_with_flags(compiler, SHR, HAS_FLAGS(op),

Completed in 14 milliseconds