Searched defs:sigma1 (Results 1 – 8 of 8) sorted by relevance
/third_party/mindspore/mindspore/ccsrc/utils/system/ |
D | sha256.h | 28 inline uint32_t sigma1(uint32_t x) { return (x >> 6 | x << 26) ^ (x >> 11 | x << 21) ^ (x >> 25 | x… in sigma1() function
|
/third_party/boost/boost/geometry/formulas/ |
D | vincenty_direct.hpp | 88 CT const sigma1 = atan2(tan_U1, cos_azimuth12); // (1) in apply() local
|
D | thomas_direct.hpp | 132 CT const sigma1 = acos(cos_sigma1); in apply() local
|
/third_party/cmsis/CMSIS/DSP/Source/BayesFunctions/ |
D | arm_gaussian_naive_bayes_predict_f32.c | 168 float32_t sigma,sigma1; in arm_gaussian_naive_bayes_predict_f32() local
|
/third_party/openssl/crypto/sha/ |
D | sha256.c | 161 # define sigma1(x) (ROTATE((x),15) ^ ROTATE((x),13) ^ ((x)>>10)) macro
|
D | sha512.c | 491 # define sigma1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6)) macro
|
/third_party/glib/glib/ |
D | gchecksum.c | 1106 #define sigma1(x) (ROTR (19, x) ^ ROTR (61, x) ^ SHR ( 6, x)) macro
|
/third_party/node/deps/npm/node_modules/tweetnacl/ |
D | nacl.js | 525 function sigma1(x) { return xor64(R(x,19), R(x,61), shr64(x,6)); } function
|