Home
last modified time | relevance | path

Searched defs:ROTR (Results 1 – 6 of 6) sorted by relevance

/openbmc/linux/arch/mips/crypto/
H A Dchacha-core.S59 #define ROTR(n) rotr n, 24 macro
68 #define ROTR(n) macro
/openbmc/u-boot/lib/libavb/
H A Davb_sha256.c14 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
H A Davb_sha512.c14 #define ROTR(x, n) ((x >> n) | (x << ((sizeof(x) << 3) - n))) macro
/openbmc/u-boot/lib/
H A Dsha256.c82 #define ROTR(x,n) (SHR(x,n) | (x << (32 - n))) in sha256_process() macro
/openbmc/qemu/target/rx/
H A Dtranslate.c1448 enum {ROTR = 0, ROTL = 1}; enumerator
/openbmc/qemu/disas/
H A Dnanomips.c12196 static char *ROTR(uint64 instruction, Dis_info *info) in ROTR() function