/external/opencv3/modules/cudafilters/test/ |
test_filters.cpp | 452 double sigma1 = randomDouble(0.1, 1.0); local 455 cv::Ptr<cv::cuda::Filter> gauss = cv::cuda::createGaussianFilter(src.type(), -1, ksize, sigma1, sigma2, borderType); 461 cv::GaussianBlur(src, dst_gold, ksize, sigma1, sigma2, borderType);
|
/external/opencv3/modules/imgproc/test/ocl/ |
test_filters.cpp | 222 double sigma1 = rng.uniform(0.1, 1.0); local 223 double sigma2 = j % 2 == 0 ? sigma1 : rng.uniform(0.1, 1.0); 225 OCL_OFF(cv::GaussianBlur(src_roi, dst_roi, Size(ksize, ksize), sigma1, sigma2, borderType)); 226 OCL_ON(cv::GaussianBlur(usrc_roi, udst_roi, Size(ksize, ksize), sigma1, sigma2, borderType));
|
/external/boringssl/src/crypto/sha/ |
sha256.c | 213 #define Sigma1(x) (ROTATE((x), 26) ^ ROTATE((x), 21) ^ ROTATE((x), 7)) 215 #define sigma1(x) (ROTATE((x), 15) ^ ROTATE((x), 13) ^ ((x) >> 10)) macro 222 T1 += h + Sigma1(e) + Ch(e, f, g) + K256[i]; \ 233 s1 = sigma1(s1); \
|
sha512.c | 437 #define Sigma1(x) (ROTR((x), 14) ^ ROTR((x), 18) ^ ROTR((x), 41)) 439 #define sigma1(x) (ROTR((x), 19) ^ ROTR((x), 61) ^ ((x) >> 6)) macro 472 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i]; 479 T += sigma1(F[8 + 16 - 14]); 485 T += F[7] + Sigma1(E) + Ch(E, F[5], F[6]) + K512[i]; 507 T1 += h + Sigma1(e) + Ch(e, f, g) + K512[i]; \ 518 s1 = sigma1(s1); \
|