Home
last modified time | relevance | path

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

/optee_os/core/lib/libtomcrypt/src/ciphers/
H A Drc5.c77 L[j++] = BSWAP(A); in s_rc5_setup()
84 L[j++] = BSWAP(A); in s_rc5_setup()
H A Drc6.c67 L[j++] = BSWAP(A); in s_rc6_setup()
75 L[j++] = BSWAP(A); in s_rc6_setup()
/optee_os/core/lib/libtomcrypt/src/headers/
H A Dtomcrypt_macros.h237 #define BSWAP(x) ( ((x>>24)&0x000000FFUL) | ((x<<24)&0xFF000000UL) | \ macro