Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/
H A Dsha256.c26 #define FILLP_ROTR32(_x, _n) (((_x) >> (_n)) | ((_x) << (32 - (_n)))) macro
28 #define FILLP_SWAP32(_x) ((FILLP_ROTR32((_x), 24) & 0x00ff00ff) | (FILLP_ROTR32((_x), 8) & 0xff00ff…
49 #define FILLP_S_0(x) (FILLP_ROTR32((x), 2) ^ FILLP_ROTR32((x), 13) ^ FILLP_ROTR32((x), 22))
50 #define FILLP_S_1(x) (FILLP_ROTR32((x), 6) ^ FILLP_ROTR32((x), 11) ^ FILLP_ROTR32((x), 25))
51 #define FILLP_G_0(x) (FILLP_ROTR32((x), 7) ^ FILLP_ROTR32((x), 18) ^ ((x) >> 3))
52 #define FILLP_G_1(x) (FILLP_ROTR32((x), 17) ^ FILLP_ROTR32((x), 19) ^ ((x) >> 10))