/external/chromium_org/chrome/installer/setup/eula/ |
oem_el.html | 18 <span class="title">Πλο?γηση στον ιστ? με το Google Chrome</span><br /> <span class="desc">Η χρ?ση του διαδικτ?ου ε?ναι πιο γρ?γορη, ασφαλ?ς και ε?κολη με το Google Chrome, το πρ?γραμμα περι?γησης ιστο? που ε?ναι εγκατεστημ?νο στον υπολογιστ? σας</span [all...] |
/external/iproute2/netem/ |
stats.c | 24 double mu=0.0, sigma=0.0, sumsquare=0.0, sum=0.0, top=0.0, rho=0.0; local 44 sigma = sqrt((sumsquare - (double)n*mu*mu)/(double)(n-1)); 54 printf("sigma = %12.6f\n", sigma); 57 /*printf("correlation rho = %10.6f\n", top/((double)(n-1)*sigma*sigma));*/
|
maketable.c | 51 arraystats(double *x, int limit, double *mu, double *sigma, double *rho) 63 *sigma = sqrt((sumsquare - (double)n*(*mu)*(*mu))/(double)(n-1)); 93 makedist(double *x, int limit, double mu, double sigma) 107 input = (x[i]-mu)/sigma; 200 double mu, sigma, rho; local 219 arraystats(x, limit, &mu, &sigma, &rho); 221 fprintf(stderr, "%d values, mu %10.4f, sigma %10.4f, rho %10.4f\n", 222 limit, mu, sigma, rho); 225 table = makedist(x, limit, mu, sigma);
|
normal.c | 18 normal(double x, double mu, double sigma) 20 return .5 + .5*erf((x-mu)/(sqrt(2.0)*sigma));
|
paretonormal.c | 27 normal(double x, double mu, double sigma) 29 return .5 + .5*erf((x-mu)/(sqrt(2.0)*sigma));
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
threshold.fs | 39 // g(x) = ( 1 / sqrt( 2 * pi ) * sigma) * e ^ ( -x^2 / 2 * sigma^2 ) 41 // and sigma varies with radius. 42 // Based on some experimental radius values and sigma's 43 // we approximately fit sigma = f(radius) as 44 // sigma = radius * 0.4 + 0.6 46 // will resemble a box blur since with large sigma 48 float sigma = 0.4f * (float)radius + 0.6f; 54 float coeff1 = 1.0f / (sqrt( 2.0f * pi ) * sigma); 55 float coeff2 = - 1.0f / (2.0f * sigma * sigma) [all...] |
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
threshold.fs | 39 // g(x) = ( 1 / sqrt( 2 * pi ) * sigma) * e ^ ( -x^2 / 2 * sigma^2 ) 41 // and sigma varies with radius. 42 // Based on some experimental radius values and sigma's 43 // we approximately fit sigma = f(radius) as 44 // sigma = radius * 0.4 + 0.6 46 // will resemble a box blur since with large sigma 48 float sigma = 0.4f * (float)radius + 0.6f; 54 float coeff1 = 1.0f / (sqrt( 2.0f * pi ) * sigma); 55 float coeff2 = - 1.0f / (2.0f * sigma * sigma) [all...] |
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
threshold.fs | 39 // g(x) = ( 1 / sqrt( 2 * pi ) * sigma) * e ^ ( -x^2 / 2 * sigma^2 ) 41 // and sigma varies with radius. 42 // Based on some experimental radius values and sigma's 43 // we approximately fit sigma = f(radius) as 44 // sigma = radius * 0.4 + 0.6 46 // will resemble a box blur since with large sigma 48 float sigma = 0.4f * (float)radius + 0.6f; 54 float coeff1 = 1.0f / (sqrt( 2.0f * pi ) * sigma); 55 float coeff2 = - 1.0f / (2.0f * sigma * sigma) [all...] |
/external/chromium_org/v8/test/mjsunit/ |
cyrillic.js | 42 var SIGMA = "\u03a3"; 43 var sigma = "\u03c3"; variable 52 MIDDLE: SIGMA, // SIGMA 53 middle: sigma, // sigma 134 // Sigma is special because there are two lower case versions of the same upper 136 // convert everything to upper case, so the two sigma variants are equal to each 141 var regex = simple ? SIGMA : "[" + SIGMA + "]" [all...] |
string-indexof-1.js | 63 assertEquals(2, twoByteString.indexOf("\u03a3"), "First Sigma"); 64 assertEquals(3, twoByteString.indexOf("\u03a3",3), "Second Sigma"); 70 assertEquals(1, twoByteString.indexOf("\u0391\u03a3"), "Alpha Sigma"); 71 assertEquals(2, twoByteString.indexOf("\u03a3\u03a3"), "Sigma Sigma"); 72 assertEquals(3, twoByteString.indexOf("\u03a3\u0395"), "Sigma Epsilon"); 75 "Not Alpha Sigma Epsilon");
|
regexp-UC16.js | 30 // "\u03a3\u03c2\u03c3\u039b\u03bb" - Sigma, final sigma, sigma, Lambda, lamda
|
/external/v8/test/mjsunit/ |
cyrillic.js | 42 var SIGMA = "\u03a3"; 43 var sigma = "\u03c3"; variable 52 MIDDLE: SIGMA, // SIGMA 53 middle: sigma, // sigma 134 // Sigma is special because there are two lower case versions of the same upper 136 // convert everything to upper case, so the two sigma variants are equal to each 141 var regex = simple ? SIGMA : "[" + SIGMA + "]" [all...] |
string-indexof-1.js | 63 assertEquals(2, twoByteString.indexOf("\u03a3"), "First Sigma"); 64 assertEquals(3, twoByteString.indexOf("\u03a3",3), "Second Sigma"); 70 assertEquals(1, twoByteString.indexOf("\u0391\u03a3"), "Alpha Sigma"); 71 assertEquals(2, twoByteString.indexOf("\u03a3\u03a3"), "Sigma Sigma"); 72 assertEquals(3, twoByteString.indexOf("\u03a3\u0395"), "Sigma Epsilon"); 75 "Not Alpha Sigma Epsilon");
|
regexp-UC16.js | 30 // "\u03a3\u03c2\u03c3\u039b\u03bb" - Sigma, final sigma, sigma, Lambda, lamda
|
/frameworks/base/libs/hwui/utils/ |
Blur.cpp | 31 // g(x) = ( 1 / sqrt( 2 * pi ) * sigma) * e ^ ( -x^2 / 2 * sigma^2 ) 33 // and sigma varies with radius. 34 // Based on some experimental radius values and sigma's 35 // we approximately fit sigma = f(radius) as 36 // sigma = radius * 0.3 + 0.6 38 // will resemble a box blur since with large sigma 40 float sigma = 0.3f * (float) radius + 0.6f; local 46 float coeff1 = 1.0f / (sqrt(2.0f * pi) * sigma); 47 float coeff2 = - 1.0f / (2.0f * sigma * sigma) [all...] |
/external/chromium_org/third_party/skia/src/effects/ |
SkGpuBlurUtils.cpp | 31 static float adjust_sigma(float sigma, int *scaleFactor, int *radius) { 33 while (sigma > MAX_BLUR_SIGMA) { 35 sigma *= 0.5f; 37 *radius = static_cast<int>(ceilf(sigma * 3.0f)); 39 return sigma; 48 float sigma, 54 texture, direction, radius, sigma, useBounds, bounds)); 66 float sigma, 71 direction, radius, sigma, false, bounds); 103 direction, radius, sigma, true, bounds) [all...] |
SkDropShadowImageFilter.cpp | 17 SkDropShadowImageFilter::SkDropShadowImageFilter(SkScalar dx, SkScalar dy, SkScalar sigma, SkColor color, SkImageFilter* input) 21 , fSigma(sigma)
|
/external/skia/src/effects/ |
SkGpuBlurUtils.cpp | 31 static float adjust_sigma(float sigma, int *scaleFactor, int *radius) { 33 while (sigma > MAX_BLUR_SIGMA) { 35 sigma *= 0.5f; 37 *radius = static_cast<int>(ceilf(sigma * 3.0f)); 39 return sigma; 48 float sigma, 54 texture, direction, radius, sigma, useBounds, bounds)); 66 float sigma, 71 direction, radius, sigma, false, bounds); 103 direction, radius, sigma, true, bounds) [all...] |
SkDropShadowImageFilter.cpp | 17 SkDropShadowImageFilter::SkDropShadowImageFilter(SkScalar dx, SkScalar dy, SkScalar sigma, SkColor color, SkImageFilter* input) 21 , fSigma(sigma)
|
/external/skia/gm/ |
spritebitmap.cpp | 81 SkScalar sigma = 8; local 82 SkAutoTUnref<SkImageFilter> filter(new SkBlurImageFilter(sigma, sigma));
|
/external/chromium_org/third_party/skia/include/effects/ |
SkDropShadowImageFilter.h | 14 SkDropShadowImageFilter(SkScalar dx, SkScalar dy, SkScalar sigma, SkColor, SkImageFilter* input = NULL);
|
/external/skia/include/effects/ |
SkDropShadowImageFilter.h | 14 SkDropShadowImageFilter(SkScalar dx, SkScalar dy, SkScalar sigma, SkColor, SkImageFilter* input = NULL);
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
string-contains.js | 42 assertTrue(twoByteString.contains("\u03a3"), "First Sigma"); 43 assertTrue(twoByteString.contains("\u03a3",3), "Second Sigma"); 49 assertTrue(twoByteString.contains("\u0391\u03a3"), "Alpha Sigma"); 50 assertTrue(twoByteString.contains("\u03a3\u03a3"), "Sigma Sigma"); 51 assertTrue(twoByteString.contains("\u03a3\u0395"), "Sigma Epsilon"); 54 "Not Alpha Sigma Epsilon");
|
/external/eigen/Eigen/src/Cholesky/ |
LLT_MKL.h | 75 static typename MatrixType::Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \ 76 { return Eigen::internal::llt_rank_update_lower(mat, vec, sigma); } \ 86 static typename MatrixType::Index rankUpdate(MatrixType& mat, const VectorType& vec, const typename MatrixType::RealScalar& sigma) \ 89 return llt_inplace<EIGTYPE, Lower>::rankUpdate(matt, vec.conjugate(), sigma); \
|
/external/chromium_org/skia/ext/ |
recursive_gaussian_convolution.h | 27 static float qFromSigma(float sigma); 29 SK_API RecursiveFilter(float sigma, Order order);
|