Home
last modified time | relevance | path

Searched refs:ROR64c (Results 1 – 3 of 3) sorted by relevance

/optee_os/core/lib/libtomcrypt/src/headers/
H A Dtomcrypt_macros.h370 #define ROR64c(x,n) ROR64(x,n) macro
377 #define ROR64c(x,n) ROR64(x,n) macro
408 #define ROR64c(word,i) ({ \ macro
409 ulong64 LTC_TMPVAR(ROR64c) = word; \
411 "=r" (LTC_TMPVAR(ROR64c)) : \
412 "0" (LTC_TMPVAR(ROR64c)), \
414 LTC_TMPVAR(ROR64c); \
420 #define ROR64c ROR64 macro
438 #define ROR64c(x, y) \ macro
/optee_os/core/lib/libtomcrypt/src/hashes/whirl/
H A Dwhirltab.c81 #define SB1(x) ROR64c(sbox0[x], 8)
82 #define SB2(x) ROR64c(sbox0[x], 16)
83 #define SB3(x) ROR64c(sbox0[x], 24)
84 #define SB4(x) ROR64c(sbox0[x], 32)
85 #define SB5(x) ROR64c(sbox0[x], 40)
86 #define SB6(x) ROR64c(sbox0[x], 48)
87 #define SB7(x) ROR64c(sbox0[x], 56)
/optee_os/core/lib/libtomcrypt/src/hashes/sha2/
H A Dsha512.c77 #define S(x, n) ROR64c(x, n)