Home
last modified time | relevance | path

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

/external/fio/crc/
Dsha3.c24 #define ROTL64(x, y) (((x) << (y)) | ((x) >> (64 - (y)))) macro
62 t = bc[(i + 4) % 5] ^ ROTL64(bc[(i + 1) % 5], 1); in keccakf()
72 st[j] = ROTL64(t, keccakf_rotc[i]); in keccakf()
/external/libchrome/crypto/third_party/nss/
Dsha512.cc532 #define ROTL64(x,n) ((x << n) | (x >> (64 - n)))