Home
last modified time | relevance | path

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

/third_party/openssl/crypto/camellia/
Dcamellia.c48 #define LeftRotate(x, s) ( ((x) << (s)) + ((x) >> (32 - s)) ) macro
428 s1 ^= LeftRotate(s0 & k[0], 1); in Camellia_EncryptBlock_Rounds()
431 s3 ^= LeftRotate(s2 & k[2], 1); in Camellia_EncryptBlock_Rounds()
481 s1 ^= LeftRotate(s0 & k[2], 1); in Camellia_DecryptBlock_Rounds()
484 s3 ^= LeftRotate(s2 & k[0], 1); in Camellia_DecryptBlock_Rounds()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/util/
Dtreap.h322 TreapNode *LeftRotate(TreapNode *x) { in LeftRotate() function
361 n = LeftRotate(n); in Insert()
391 n = LeftRotate(n); in DeleteNode()