HomeSort by: relevance | last modified time | path
    Searched defs:rotr8 (Results 1 - 2 of 2) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/modes/
siv128.c 27 __owur static ossl_inline uint32_t rotr8(uint32_t x) function
37 high = (rotl8(high) & 0x00ff00ff) | (rotr8(high) & 0xff00ff00);
38 low = (rotl8(low) & 0x00ff00ff) | (rotr8(low) & 0xff00ff00);
  /src/crypto/external/bsd/openssl/dist/crypto/modes/
siv128.c 27 __owur static ossl_inline uint32_t rotr8(uint32_t x) function
37 high = (rotl8(high) & 0x00ff00ff) | (rotr8(high) & 0xff00ff00);
38 low = (rotl8(low) & 0x00ff00ff) | (rotr8(low) & 0xff00ff00);

Completed in 21 milliseconds