Home
last modified time | relevance | path

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

/third_party/mbedtls/library/
Daes.c370 #define ROTL8(x) ( ( (x) << 8 ) & 0xFFFFFFFF ) | ( (x) >> 24 ) macro
462 #define ROTL8(x) ( (uint32_t)( ( x ) << 8 ) + (uint32_t)( ( x ) >> 24 ) ) macro