Searched defs:gauss (Results 1 - 15 of 15) sorted by relevance

/external/skia/tests/
H A DSkGaussFilterTest.cpp18 static double careful_add(int n, double* gauss) { argument
22 sum += 2.0 * gauss[i];
24 sum += gauss[0];
/external/skqp/tests/
H A DSkGaussFilterTest.cpp18 static double careful_add(int n, double* gauss) { argument
22 sum += 2.0 * gauss[i];
24 sum += gauss[0];
/external/skia/src/core/
H A DSkGaussFilter.cpp20 // Normalize the values of gauss to 1.0, and make sure they add to one.
21 // NB if n == 1, then this will force gauss[0] == 1.
22 static void normalize(int n, double* gauss) { argument
26 sum += 2 * gauss[i];
28 sum += gauss[0];
30 // Normalize gauss.
32 gauss[i] /= sum;
35 // The factors should sum to 1. Take any remaining slop, and add it to gauss[0]. Add the
39 sum += 2 * gauss[i];
42 gauss[
45 calculate_bessel_factors(double sigma, double *gauss) argument
107 calculate_gauss_factors(double sigma, double* gauss) argument
[all...]
/external/skqp/src/core/
H A DSkGaussFilter.cpp20 // Normalize the values of gauss to 1.0, and make sure they add to one.
21 // NB if n == 1, then this will force gauss[0] == 1.
22 static void normalize(int n, double* gauss) { argument
26 sum += 2 * gauss[i];
28 sum += gauss[0];
30 // Normalize gauss.
32 gauss[i] /= sum;
35 // The factors should sum to 1. Take any remaining slop, and add it to gauss[0]. Add the
39 sum += 2 * gauss[i];
42 gauss[
45 calculate_bessel_factors(double sigma, double *gauss) argument
107 calculate_gauss_factors(double sigma, double* gauss) argument
[all...]
/external/flac/libFLAC/include/protected/
H A Dstream_encoder.h72 } gauss; member in union:__anon7272::__anon7273
/external/python/cpython2/Lib/
H A Drandom.py54 "gauss","betavariate","paretovariate","weibullvariate",
562 def gauss(self, mu, sigma): member in class:Random
875 _test_generator(N, gauss, (0.0, 1.0))
900 gauss = _inst.gauss variable
/external/python/cpython3/Lib/
H A Drandom.py53 "gauss","betavariate","paretovariate","weibullvariate",
570 def gauss(self, mu, sigma): member in class:Random
732 _test_generator(N, gauss, (0.0, 1.0))
758 gauss = _inst.gauss variable
/external/fio/
H A Dfile.h11 #include "lib/gauss.h"
144 struct gauss_state gauss; member in union:fio_file::__anon7147
/external/ltp/testcases/misc/math/fptests/
H A Dfptest01.c80 static double gauss(void);
94 int gcount; /* # calls to gauss */
274 return (gauss());
351 static double gauss(void) function
H A Dfptest02.c30 * math in routine "gauss". The value "avgspd" computed in routine
80 static double gauss(void);
255 return (gauss());
333 static double gauss(void) function
/external/python/cpython2/Lib/test/
H A Dtest_math.py535 from random import random, gauss, shuffle namespace
540 v = gauss(0, random()) ** 7 - s
/external/libxcam/modules/soft/
H A Dsoft_blender.cpp58 /* Level0: G[0] = gauss(in), Lap[0] = in - upsample(G[0])
59 Level1: G[1] = gauss(G[0]), Lap[1] = G[0] - upsample(G[1])
61 LevelN: G[N] = gauss(G[N-1]),
113 const SmartPtr<VideoBuffer> &gauss,
388 SmartPtr<VideoBuffer> gauss = scale_args->out_buf;
407 args->gauss_luma = new UcharImage (gauss, 0);
408 args->gauss_uv = new Uchar2Image (gauss, 1);
554 const SmartPtr<VideoBuffer> &gauss,
569 args->gauss_luma = new UcharImage (gauss, 0);
570 args->gauss_uv = new Uchar2Image (gauss,
552 start_reconstruct_task_by_gauss( const SmartPtr<ImageHandler::Parameters> &param, const SmartPtr<VideoBuffer> &gauss, const uint32_t level) argument
[all...]
H A Dsoft_blender_tasks_priv.cpp253 minus_array_8 (float *orig, float *gauss, Uchar *ret) argument
255 #define ORG_MINUS_GAUSS(i) ret[i] = convert_to_uchar<float> ((orig[i] - gauss[i]) * 0.5f + 128.0f)
321 minus_array_uv_4 (Float2 *orig, Float2 *gauss, Uchar2 *ret) argument
323 #define ORG_MINUS_GAUSS_UV(i) orig[i] -= gauss[i]; orig[i] *= 0.5f; orig[i] += 128.0f
/external/libxcam/tests/
H A Dtest-cl-image.cpp134 " gamma, snr, bnr, macc, ee, bayerpipe, yuvpipe, retinex, gauss, wavelet-hat, wavelet-haar, dcp, fisheye]\n"
246 else if (!strcasecmp (optarg, "gauss"))
390 SmartPtr<CLGaussImageHandler> gauss = image_handler.dynamic_cast_ptr<CLGaussImageHandler> (); local
391 XCAM_ASSERT (gauss.ptr ());
/external/python/cpython3/Lib/test/
H A Dtest_math.py666 from random import random, gauss, shuffle namespace
671 v = gauss(0, random()) ** 7 - s

Completed in 1428 milliseconds