HomeSort by relevance Sort by last modified time
    Searched refs:deviation (Results 1 - 25 of 44) sorted by null

1 2

  /frameworks/base/graphics/java/android/graphics/
DiscretePathEffect.java 23 * original path by deviation.
25 public DiscretePathEffect(float segmentLength, float deviation) {
26 native_instance = nativeCreate(segmentLength, deviation);
29 private static native long nativeCreate(float length, float deviation);
  /external/chromium_org/third_party/skia/src/animator/
SkDrawDiscrete.cpp 18 SK_MEMBER(deviation, Float),
26 SkDiscrete::SkDiscrete() : deviation(0), segLength(0) {
30 if (deviation <= 0 || segLength <= 0)
33 return SkDiscretePathEffect::Create(segLength, deviation);
SkDrawDiscrete.h 18 SkScalar deviation; member in class:SkDiscrete
  /external/skia/src/animator/
SkDrawDiscrete.cpp 18 SK_MEMBER(deviation, Float),
26 SkDiscrete::SkDiscrete() : deviation(0), segLength(0) {
30 if (deviation <= 0 || segLength <= 0)
33 return SkDiscretePathEffect::Create(segLength, deviation);
SkDrawDiscrete.h 18 SkScalar deviation; member in class:SkDiscrete
  /external/chromium_org/third_party/skia/include/effects/
SkDiscretePathEffect.h 20 away from the original path by a maximum of deviation.
33 SkScalar deviation,
36 (segLength, deviation, seedAssist));
46 SkScalar deviation,
  /external/skia/include/effects/
SkDiscretePathEffect.h 20 away from the original path by a maximum of deviation.
33 SkScalar deviation,
36 (segLength, deviation, seedAssist));
46 SkScalar deviation,
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DiscretePathEffect_Delegate.java 65 /*package*/ static long nativeCreate(float length, float deviation) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9shape.h 37 HRESULT WINAPI D3DXCreateTextA(struct IDirect3DDevice9 *device, HDC hdc, const char *text, float deviation,
39 HRESULT WINAPI D3DXCreateTextW(struct IDirect3DDevice9 *device, HDC hdc, const WCHAR *text, float deviation,
  /external/chromium_org/third_party/skia/src/effects/
SkDiscretePathEffect.cpp 24 SkScalar deviation,
26 : fSegLength(segLength), fPerterb(deviation), fSeedAssist(seedAssist)
  /external/skia/src/effects/
SkDiscretePathEffect.cpp 24 SkScalar deviation,
26 : fSegLength(segLength), fPerterb(deviation), fSeedAssist(seedAssist)
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
jitter_estimator.cc 157 // deviation is probably due to an incorrect line slope.
158 double deviation = DeviationFromExpectedDelay(frameDelayMS, deltaFS); local
160 if (fabs(deviation) < _numStdDevDelayOutlier * sqrt(_varNoise) ||
163 // Update the variance of the deviation from the
165 EstimateRandomJitter(deviation, incompleteFrame);
172 if ((!incompleteFrame || deviation >= 0.0) &&
181 int nStdDev = (deviation >= 0) ? _numStdDevDelayOutlier : -_numStdDevDelayOutlier;
  /external/chromium_org/remoting/codec/
audio_encoder_opus_unittest.cc 39 // Maximum standard deviation of the difference between original and decoded
104 // phase shift from the original signal, then calculates standard deviation of
121 double deviation = sqrt(diff_sqare_sum / received_data.size()) local
123 LOG(ERROR) << "Decoded signal deviation: " << deviation;
124 EXPECT_LE(deviation, kMaxSignalDeviation);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
Utils.java 308 double deviation = resultStats[0]; local
310 if (Double.isNaN(deviation) || Double.isInfinite(deviation)) {
314 deviation = Math.abs(deviation)<0.001 ? 0 : -deviation;
316 buffer.append(DEVIATION_FORMAT.format(deviation));
320 buffer.append(DEVIATION_FORMAT.format(deviation));
ScenarioStatusTable.java 147 double[] deviation = configResults.getCurrentBuildDeltaInfo(); local
148 int confidence = Utils.confidenceLevel(deviation);
154 // write deviation with error in table when test pass
164 // create message with tooltip text including deviation with error plus failure message
184 String result = Utils.failureMessage(deviation, false);
221 this.stream.print("\">): mark an <b>undefined result</b>, which means that deviation on this test is not a number (<code>NaN</code>) or is infinite (happens when the reference value is equals to 0!)</li>");
224 this.stream.print("<li>the value of the deviation from the baseline as a percentage (ie. formula is: <code>(build_test_time - baseline_test_time) / baseline_test_time</code>)</li>\n");
225 this.stream.print("<li>the value of the standard error of this deviation as a percentage (ie. formula is: <code>sqrt(build_test_stddev^2 / N + baseline_test_stddev^2 / N) / baseline_test_time</code>)<br>\n");
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_wgl.c 246 FLOAT deviation,
255 (void) deviation;
271 FLOAT deviation,
280 (void) deviation;
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_wgl.c 246 FLOAT deviation,
255 (void) deviation;
271 FLOAT deviation,
280 (void) deviation;
  /frameworks/base/core/jni/android/graphics/
PathEffect.cpp 63 jfloat length, jfloat deviation) {
64 SkPathEffect* effect = SkDiscretePathEffect::Create(length, deviation);
  /external/chromium_org/net/dns/
dns_session.cc 177 base::TimeDelta& deviation = server_stats_[server_index]->rtt_deviation; local
182 deviation += (abs_error - deviation) / 4; // * delta
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
wgl.c 606 FLOAT deviation,
612 (void) listBase; (void) deviation; (void) extrusion; (void) format;
622 FLOAT deviation,
628 (void) listBase; (void) deviation; (void) extrusion; (void) format;
  /external/mesa3d/src/mesa/drivers/windows/gdi/
wgl.c 606 FLOAT deviation,
612 (void) listBase; (void) deviation; (void) extrusion; (void) format;
622 FLOAT deviation,
628 (void) listBase; (void) deviation; (void) extrusion; (void) format;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ConfigTab.java 454 double deviation = configResultsElement == null ? 0 : configResultsElement.getStatistics()[3]; local
455 if (deviation > 0.2) {
456 // deviation is over 20% over the entire history
468 toolTipMessage += "The results history shows that the variation of its delta is over 20% ("+Util.PERCENTAGE_FORMAT.format(deviation)+"), hence its result is surely not reliable";
472 } else if (deviation > 0.1) { // moderate the status when the test
473 // deviation is between 10% and 20% over the entire history
485 toolTipMessage += "The results history shows that the variation of its delta is between 10% and 20% ("+Util.PERCENTAGE_FORMAT.format(deviation)+"), hence its result may not be really reliable";
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
BuildResults.java 79 double deviation= this.average[dim_id] - this.values[dim_id][i]; local
80 squaredDeviations += deviation * deviation;
187 * Returns the standard deviation of the default dimension computed
190 * @return The value of the standard deviation
200 * Returns the standard deviation of the given dimension computed
204 * @return The value of the standard deviation
  /external/opencv/cvaux/src/
cvlmeds.cpp 409 double *deviation; local
415 deviation = (double *) cvAlloc( (num) * sizeof( double ));
417 if( !deviation )
435 deviation[i] = (double) (d1 * d1 + d2 * d2);
438 if( icvSort( deviation, num ) != CV_NO_ERR )
441 cvFree( &deviation );
445 value = deviation[num / 2];
446 cvFree( &deviation );
    [all...]
  /external/deqp/modules/egl/
teglGLES2SharedRenderingPerfTests.cpp 957 double deviation; local
976 deviation = 0.0;
978 deviation += (resultsUs[resultNdx] - average) * (resultsUs[resultNdx] - average);
980 deviation = std::sqrt((double)(deviation/resultsUs.size()));
987 << "Standart deviation: " << (deviation/1000.0) << "ms\n"
988 << "Standart error of mean: " << ((deviation/std::sqrt((double)resultsUs.size()))/1000.0) << "ms\n"
    [all...]

Completed in 420 milliseconds

1 2