Searched defs:sigma0 (Results 1 – 6 of 6) sorted by relevance
/third_party/mindspore/mindspore/ccsrc/utils/system/ |
D | sha256.h | 27 inline uint32_t sigma0(uint32_t x) { return (x >> 2 | x << 30) ^ (x >> 13 | x << 19) ^ (x >> 22 | x… in sigma0() function
|
/third_party/boost/libs/numeric/odeint/examples/mtl/ |
D | gauss_packet.cpp | 101 static const double sigma0 = 20; variable
|
/third_party/openssl/crypto/sha/ |
D | sha256.c | 160 # define sigma0(x) (ROTATE((x),25) ^ ROTATE((x),14) ^ ((x)>>3)) macro
|
D | sha512.c | 490 # define sigma0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7)) macro
|
/third_party/glib/glib/ |
D | gchecksum.c | 1105 #define sigma0(x) (ROTR ( 1, x) ^ ROTR ( 8, x) ^ SHR ( 7, x)) macro
|
/third_party/node/deps/npm/node_modules/tweetnacl/ |
D | nacl.js | 524 function sigma0(x) { return xor64(R(x, 1), R(x, 8), shr64(x,7)); } function
|