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

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_hash/sha256/cp/
hash_sha256_cp.c 77 #define ROTR(x, n) ROTR32(x, n)
78 #define S0(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22))
79 #define S1(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25))
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)
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_hash/sha512/cp/
hash_sha512_cp.c 93 #define ROTR(x, n) ROTR64(x, n)
94 #define S0(x) (ROTR(x, 28) ^ ROTR(x, 34) ^ ROTR(x, 39))
95 #define S1(x) (ROTR(x, 14) ^ ROTR(x, 18) ^ ROTR(x, 41))
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)
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/sha/
sha512.c 388 #define ROTR(a, n) ({ SHA_LONG64 ret; \
418 #define ROTR(a, n) ({ SHA_LONG64 ret; \
423 #define ROTR(a, n) ({ SHA_LONG64 ret; \
534 #define ROTR(a, n) _rotr64((a), n)
555 #ifndef ROTR
556 #define ROTR(x, s) (((x) >> s) | (x) << (64 - s))
559 #define Sigma0(x) (ROTR((x), 28) ^ ROTR((x), 34) ^ ROTR((x), 39))
562 #define Sigma1(x) (ROTR((x), 14) ^ ROTR((x), 18) ^ ROTR((x), 41)
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
sha256.c 45 #define ROTR(x,n) (((x)>>(n)) | ((x) << (32 - (n))))
47 #define Sigma0(x) (ROTR(x,2) ^ ROTR(x,13) ^ ROTR(x,22))
48 #define Sigma1(x) (ROTR(x,6) ^ ROTR(x,11) ^ ROTR(x,25))
49 #define sigma0(x) (ROTR(x,7) ^ ROTR(x,18) ^ ((x)>>3))
50 #define sigma1(x) (ROTR(x,17) ^ ROTR(x,19) ^ ((x)>>10)
    [all...]
sha512.c 45 #define ROTR(x,n) (((x)>>(n)) | ((x) << (64 - (n))))
47 #define Sigma0(x) (ROTR(x,28) ^ ROTR(x,34) ^ ROTR(x,39))
48 #define Sigma1(x) (ROTR(x,14) ^ ROTR(x,18) ^ ROTR(x,41))
49 #define sigma0(x) (ROTR(x,1) ^ ROTR(x,8) ^ ((x)>>7))
50 #define sigma1(x) (ROTR(x,19) ^ ROTR(x,61) ^ ((x)>>6)
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/sha/
sha512.c 389 # define ROTR(a,n) ({ SHA_LONG64 ret; \
419 # define ROTR(a,n) ({ SHA_LONG64 ret; \
424 # define ROTR(a,n) ({ SHA_LONG64 ret; \
439 # define ROTR(a,n) _rotr64((a),n)
472 # ifndef ROTR
473 # define ROTR(x,s) (((x)>>s) | (x)<<(64-s))
475 # define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39))
476 # define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/sha/
sha512.c 402 # define ROTR(a,n) ({ SHA_LONG64 ret; \
432 # define ROTR(a,n) ({ SHA_LONG64 ret; \
437 # define ROTR(a,n) ({ SHA_LONG64 ret; \
452 # define ROTR(a,n) _rotr64((a),n)
485 # ifndef ROTR
486 # define ROTR(x,s) (((x)>>s) | (x)<<(64-s))
488 # define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39))
489 # define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SHA256.cpp 36 #define ROTR(x, n) (((x) >> n) | ((x) << (32 - (n))))
41 #define SIGMA_0(x) (ROTR(x, 2) ^ ROTR(x, 13) ^ ROTR(x, 22))
42 #define SIGMA_1(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25))
44 #define SIGMA_2(x) (ROTR(x, 17) ^ ROTR(x, 19) ^ SHR(x, 10))
45 #define SIGMA_3(x) (ROTR(x, 7) ^ ROTR(x, 18) ^ SHR(x, 3)
    [all...]
  /src/external/gpl3/binutils/dist/gas/config/
rx-parse.h 185 ROTR = 386, /* ROTR */
354 #define ROTR 386
rx-parse.c 367 ROTR = 386, /* ROTR */
536 #define ROTR 386
730 YYSYMBOL_ROTR = 131, /* ROTR */
1334 "ROTL", "ROTR", "ROUND", "RSTR", "RTE", "RTFI", "RTS", "RTSD", "SAT",
3543 case 201: /* statement: ROTR '#' EXPR ',' REG */
4800 OPC(ROTR),
  /src/external/gpl3/binutils.old/dist/gas/config/
rx-parse.h 185 ROTR = 386, /* ROTR */
354 #define ROTR 386
rx-parse.c 367 ROTR = 386, /* ROTR */
536 #define ROTR 386
730 YYSYMBOL_ROTR = 131, /* ROTR */
1334 "ROTL", "ROTR", "ROUND", "RSTR", "RTE", "RTFI", "RTS", "RTSD", "SAT",
3543 case 201: /* statement: ROTR '#' EXPR ',' REG */
4800 OPC(ROTR),
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
ISDOpcodes.h 651 ROTR,

Completed in 38 milliseconds