Home
last modified time | relevance | path

Searched defs:sigma1 (Results 1 – 8 of 8) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/utils/system/
Dsha256.h28 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/
Dvincenty_direct.hpp88 CT const sigma1 = atan2(tan_U1, cos_azimuth12); // (1) in apply() local
Dthomas_direct.hpp132 CT const sigma1 = acos(cos_sigma1); in apply() local
/third_party/cmsis/CMSIS/DSP/Source/BayesFunctions/
Darm_gaussian_naive_bayes_predict_f32.c168 float32_t sigma,sigma1; in arm_gaussian_naive_bayes_predict_f32() local
/third_party/openssl/crypto/sha/
Dsha256.c161 # define sigma1(x) (ROTATE((x),15) ^ ROTATE((x),13) ^ ((x)>>10)) macro
Dsha512.c491 # define sigma1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6)) macro
/third_party/glib/glib/
Dgchecksum.c1106 #define sigma1(x) (ROTR (19, x) ^ ROTR (61, x) ^ SHR ( 6, x)) macro
/third_party/node/deps/npm/node_modules/tweetnacl/
Dnacl.js525 function sigma1(x) { return xor64(R(x,19), R(x,61), shr64(x,6)); } function