Home
last modified time | relevance | path

Searched refs:ROL64 (Results 1 – 2 of 2) sorted by relevance

/optee_os/core/lib/libtomcrypt/src/headers/
H A Dtomcrypt_macros.h369 #define ROL64(x,n) _rotl64(x,n) macro
371 #define ROL64c(x,n) ROL64(x,n)
376 #define ROL64(x,n) __builtin_rotateleft64(x,n) macro
378 #define ROL64c(x,n) ROL64(x,n)
382 static inline ulong64 ROL64(ulong64 word, int i) in ROL64() function
419 #define ROL64c ROL64
426 #define ROL64(x, y) \ macro
/optee_os/core/lib/libtomcrypt/src/hashes/
H A Dsha3.c168 t = bc[(i + 4) % 5] ^ ROL64(bc[(i + 1) % 5], 1); in s_keccakf()
178 s[j] = ROL64(t, s_keccakf_rotc[i]); in s_keccakf()