HomeSort by relevance Sort by last modified time
    Searched full:mean (Results 1 - 25 of 3571) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/tools/
Stats.h 17 mean = sum / n;
21 err += (samples[i] - mean) * (samples[i] - mean);
28 double mean; // Estimate of population mean. member in struct:Stats
  /external/skia/tools/
Stats.h 17 mean = sum / n;
21 err += (samples[i] - mean) * (samples[i] - mean);
28 double mean; // Estimate of population mean. member in struct:Stats
  /external/clang/test/FixIt/
typo.cpp 24 other_std::strng str1; // expected-error{{use of undeclared identifier 'other_std'; did you mean 'otherstd'?}} \
25 // expected-error{{no type named 'strng' in namespace 'otherstd'; did you mean 'string'?}}
26 tring str2; // expected-error{{unknown type name 'tring'; did you mean 'string'?}}
28 ::other_std::string str3; // expected-error{{no member named 'other_std' in the global namespace; did you mean 'otherstd'?}}
32 return radious * pi; // expected-error{{did you mean 'radius'?}}
35 using namespace othestd; // expected-error{{no namespace named 'othestd'; did you mean 'otherstd'?}}
37 using namespace ::blarg; // expected-error{{no namespace named 'blarg' in the global namespace; did you mean 'blargh'?}}
39 namespace wibble = blarg; // expected-error{{no namespace named 'blarg'; did you mean 'blargh'?}}
40 namespace wobble = ::blarg; // expected-error{{no namespace named 'blarg' in the global namespace; did you mean 'blargh'?}}
43 basc_string<char> b1; // expected-error{{no template named 'basc_string'; did you mean 'basic_string'?}
    [all...]
fixit.cpp 54 getNumComponenets(); // expected-error{{use of undeclared identifier 'getNumComponenets'; did you mean 'getNumComponents'?}}
75 int x1 &= 0; // expected-error {{invalid '&=' at end of declaration; did you mean '='?}}
76 int x2 *= 0; // expected-error {{invalid '*=' at end of declaration; did you mean '='?}}
77 int x3 += 0; // expected-error {{invalid '+=' at end of declaration; did you mean '='?}}
78 int x4 -= 0; // expected-error {{invalid '-=' at end of declaration; did you mean '='?}}
79 int x5 != 0; // expected-error {{invalid '!=' at end of declaration; did you mean '='?}}
80 int x6 /= 0; // expected-error {{invalid '/=' at end of declaration; did you mean '='?}}
81 int x7 %= 0; // expected-error {{invalid '%=' at end of declaration; did you mean '='?}}
82 int x8 <= 0; // expected-error {{invalid '<=' at end of declaration; did you mean '='?}}
83 int x9 <<= 0; // expected-error {{invalid '<<=' at end of declaration; did you mean '='?}
    [all...]
fixit-unicode-with-utf8-output.c 11 // CHECK: error: use of undeclared identifier '?sss'; did you mean '?ssss'?
15 // CHECK: error: use of undeclared identifier 'ss?s'; did you mean 'ss?ss'?
19 // CHECK: error: use of undeclared identifier 'ss???'; did you mean 's???'?
23 // CHECK: error: use of undeclared identifier 'sssssssss'; did you mean 'sssssssss?'?
  /external/chromium_org/third_party/webrtc/common_audio/vad/
vad_gmm.h 19 // normal distribution with mean and standard deviation (|mean|, |std|).
23 // - mean : mean input in the statistical model, Q7.
29 // |delta| = (|input| - |mean|) / |std|^2.
33 // 1 / |std| * exp(-(|input| - |mean|)^2 / (2 * |std|^2));
35 int16_t mean,
  /external/clang/test/SemaCXX/
function-overload-typo-crash.cpp 10 fin(); //expected-error {{use of undeclared identifier 'fin'; did you mean 'min'}}
11 fax(0); //expected-error {{use of undeclared identifier 'fax'; did you mean 'max'}}
23 somefun(i, j); //expected-error {{use of undeclared identifier 'somefun'; did you mean 'somefunc'?}}
24 somefun(x); //expected-error {{use of undeclared identifier 'somefun'; did you mean 'somefunc'?}}
25 somefun(i, l); //expected-error {{use of undeclared identifier 'somefun'; did you mean 'somefunc'?}}
26 somefun(l, x); //expected-error {{use of undeclared identifier 'somefun'; did you mean 'somefunc'?}}
27 somefun(i, x); //expected-error {{use of undeclared identifier 'somefun'; did you mean 'somefunc'?}}
missing-namespace-qualifier-typo-corrections.cpp 5 Foobar *my_bar // expected-error{{unknown type name 'Foobar'; did you mean 'fizbin::Foobar'?}}
6 = new Foobar; // expected-error{{unknown type name 'Foobar'; did you mean 'fizbin::Foobar'?}}
7 fizbin::Foobar *my_foo = new fizbin::FooBar; // expected-error{{no type named 'FooBar' in namespace 'fizbin'; did you mean 'Foobar'?}}
12 Double(toFoobar()); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
26 if (toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
27 if (noFoobar()) Double(7); // expected-error{{use of undeclared identifier 'noFoobar'; did you mean 'barstool::toFoobar'?}}
28 if (moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'moreFoobar'; did you mean 'fizbin::nested::moreFoobar'}}
29 if (lessFoobar()) Double(7); // expected-error{{use of undeclared identifier 'lessFoobar'; did you mean 'fizbin::nested::lessFoobar'?}}
30 if (baztool::toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'baztool'; did you mean 'fizbin::baztool'?}}
31 if (nested::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'nested'; did you mean 'fizbin::nested'?}
    [all...]
overloaded-name.cpp 9 (void)((void)0, ovl); // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}}
11 (void)(b? ovl : &ovl); // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}}
12 (void)(b? ovl<float> : &ovl); // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}}
25 f(text); // expected-error {{reference to non-static member function must be called; did you mean to call it with no arguments?}}
27 f(text); // expected-error {{reference to non-static member function must be called; did you mean to call it with no arguments?}}
pr13394-crash-on-invalid.cpp 12 gatekeeper_v1::closure_t* create(); // expected-error {{no type named 'closure_t' in namespace 'gatekeeper_v1'; did you mean simply 'closure_t'?}}
16 gatekeeper_v1::closure_t *x; // expected-error {{no type named 'closure_t' in namespace 'gatekeeper_v1'; did you mean 'gatekeeper_factory_v1::closure_t'}}
27 Foo::Bar(); // expected-error{{no member named 'Bar' in namespace 'Foo'; did you mean simply 'Bar'?}}
PR7944.cpp 11 MACRO(a.b->f()); // expected-error{{reference to non-static member function must be called; did you mean to call it with no arguments?}}
  /external/webrtc/src/common_audio/vad/
vad_gmm.h 19 // normal distribution with mean and standard deviation (|mean|, |std|).
23 // - mean : mean input in the statistical model, Q7.
29 // |delta| = (|input| - |mean|) / |std|^2.
33 // 1 / |std| * exp(-(|input| - |mean|)^2 / (2 * |std|^2));
35 int16_t mean,
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
stat.h 8 double n, mean, M2; member in struct:stats
20 stats->mean = 0.0;
stat.c 10 delta = val - stats->mean;
11 stats->mean += delta / stats->n;
12 stats->M2 += delta*(val - stats->mean);
23 return stats->mean;
35 * The std dev of the mean is related to the std dev by:
  /external/chromium_org/third_party/WebKit/ManualTests/
video-statistics.html 24 function Mean() {
33 this.mean = function() {
39 var decodedMean = new Mean();
40 var audioMean = new Mean();
41 var videoMean = new Mean();
42 var dropMean = new Mean();
70 "Audio bytes decoded: " + v.webkitAudioDecodedByteCount + " average p/s: " + audioMean.mean() + "<br>" +
71 "Video bytes decoded: " + v.webkitVideoDecodedByteCount + " average p/s: " + videoMean.mean() + "<br>" +
72 "Decoded frames: " + v.webkitDecodedFrameCount + " average p/s: " + decodedMean.mean() + "<br>" +
73 "Dropped frames: " + v.webkitDroppedFrameCount + " average p/s: " + dropMean.mean() + "<br>"
    [all...]
  /external/clang/test/Sema/
format-strings-darwin.c 25 // expected-warning@-8 {{'D' conversion specifier is not supported by ISO C}} expected-note@-8 {{did you mean to use 'd'?}}
26 // expected-warning@-8 {{'D' conversion specifier is not supported by ISO C}} expected-note@-8 {{did you mean to use 'd'?}} expected-warning@-8 {{format specifies type 'int' but the argument has type 'long'}}
27 // expected-warning@-8 {{'U' conversion specifier is not supported by ISO C}} expected-note@-8 {{did you mean to use 'u'?}}
28 // expected-warning@-8 {{'U' conversion specifier is not supported by ISO C}} expected-note@-8 {{did you mean to use 'u'?}} expected-warning@-8 {{format specifies type 'unsigned int' but the argument has type 'long'}}
29 // expected-warning@-8 {{'O' conversion specifier is not supported by ISO C}} expected-note@-8 {{did you mean to use 'o'?}}
30 // expected-warning@-8 {{'O' conversion specifier is not supported by ISO C}} expected-note@-8 {{did you mean to use 'o'?}} expected-warning@-8 {{format specifies type 'unsigned int' but the argument has type 'long'}}
43 printf("%hD", x); // expected-warning{{conversion specifier is not supported by ISO C}} expected-note {{did you mean to use 'd'?}}
44 printf("%lD", y); // expected-warning{{conversion specifier is not supported by ISO C}} expected-note {{did you mean to use 'd'?}}
45 printf("%hU", x); // expected-warning{{conversion specifier is not supported by ISO C}} expected-note {{did you mean to use 'u'?}}
46 printf("%lU", y); // expected-warning{{conversion specifier is not supported by ISO C}} expected-note {{did you mean to use 'u'?}
    [all...]
format-strings-non-iso.c 10 printf("%qd", (long long)42); // expected-warning{{'q' length modifier is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
11 scanf("%qd", (long long *)0); // expected-warning{{'q' length modifier is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
21 printf("%Li", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'i' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
22 printf("%Lo", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'o' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
23 printf("%Lu", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'u' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
24 printf("%Lx", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'x' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
25 printf("%LX", (long long)42); // expected-warning{{using length modifier 'L' with conversion specifier 'X' is not supported by ISO C}} expected-note{{did you mean to use 'll'?}}
  /external/icu/icu4c/source/test/perf/howExpensiveIs/
sieve.h 22 * Calculate the mean time, with margin of error
26 * @return the mean time, or negative if error/imprecision.
33 * @return the mean time, or negative if error/imprecision.
  /external/clang/test/CXX/class/class.nested.type/
p1.cpp 10 I b; // expected-error{{unknown type name 'I'; did you mean 'X::I'?}}
11 Y c; // expected-error{{unknown type name 'Y'; did you mean 'X::Y'?}}
  /external/eigen/doc/examples/
tut_arithmetic_redux_basic.cpp 12 cout << "Here is mat.mean(): " << mat.mean() << endl;
  /external/valgrind/main/VEX/test/
rounderr.c 43 /* Compute the arithmetic mean of a dataset using the recurrence relation
44 mean_(n) = mean(n-1) + (data[n] - mean(n-1))/(n+1) */
45 long double mean = 0; local
50 mean += (data[i * stride] - mean) / (i + 1);
52 return mean;
58 /* Compute the arithmetic mean of a dataset using the
  /external/clang/test/PCH/
typo2.cpp 11 ::Yest *T; // expected-error{{did you mean 'Test'}}
  /external/clang/test/Parser/
cxx-using-directive.cpp 23 using namespace B::A ; // expected-error{{no namespace named 'A' in namespace 'D::B'; did you mean '::B::A'?}}
26 using namespace ::D::C ; // expected-error{{no namespace named 'C' in namespace 'D'; did you mean simply 'C'?}}
30 using namespace A ; // expected-error{{no namespace named 'A'; did you mean 'B::A'?}}
31 using namespace ::A // expected-error{{no namespace named 'A' in the global namespace; did you mean 'B::A'?}} \
  /external/clang/test/SemaObjC/
protocol-id-test-2.m 11 - (void)IMeth { [(id<P>)self Meth]; } // expected-warning {{instance method '-Meth' not found (return type defaults to 'id'); did you mean '-IMeth'?}}
  /external/opencv/cxcore/src/
cxmean.cpp 46 * Mean value over the region *
165 mean[0] = scale*(double)tmp##0
171 mean[0] = t0; \
172 mean[1] = t1
179 mean[0] = t0; \
180 mean[1] = t1; \
181 mean[2] = t2
187 mean[0] = t0; \
188 mean[1] = t1; \
191 mean[2] = t0;
384 CvScalar mean = {{0,0,0,0}}; local
    [all...]

Completed in 2277 milliseconds

1 2 3 4 5 6 7 8 91011>>