/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 int 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 new SkDiscretePathEffect(segLength, deviation);
|
SkDrawDiscrete.h | 20 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 new SkDiscretePathEffect(segLength, deviation);
|
SkDrawDiscrete.h | 20 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. 23 SkDiscretePathEffect(SkScalar segLength, SkScalar deviation);
|
/external/skia/include/effects/ |
SkDiscretePathEffect.h | 20 away from the original path by a maximum of deviation. 23 SkDiscretePathEffect(SkScalar segLength, SkScalar deviation);
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
DiscretePathEffect_Delegate.java | 65 /*package*/ static int nativeCreate(float length, float deviation) {
|
/external/chromium_org/third_party/skia/src/effects/ |
SkDiscretePathEffect.cpp | 23 SkDiscretePathEffect::SkDiscretePathEffect(SkScalar segLength, SkScalar deviation) 24 : fSegLength(segLength), fPerterb(deviation)
|
/external/skia/src/effects/ |
SkDiscretePathEffect.cpp | 23 SkDiscretePathEffect::SkDiscretePathEffect(SkScalar segLength, SkScalar deviation) 24 : fSegLength(segLength), fPerterb(deviation)
|
/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");
|
/frameworks/base/core/jni/android/graphics/ |
PathEffect.cpp | 54 float length, float deviation) { 56 SkFloatToScalar(deviation));
|
/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;
|
/external/chromium/chrome/browser/policy/ |
cloud_policy_controller.cc | 51 // Maximum deviation we are willing to accept. 378 int64 deviation = (policy_refresh_deviation_factor_percent_ * local 380 deviation = std::min(deviation, policy_refresh_deviation_max_ms_); 381 return policy_refresh_rate_ms_ - base::RandGenerator(deviation + 1);
|
/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/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/ |
webrunner.js | 186 // Make Standard Deviation 187 results.deviation = Math.sqrt( results.variance ); 190 results.sem = (results.deviation / Math.sqrt(results.runs)) * tDistribution; 490 results[curID].total[run] = {max:0, mean:0, median:0, min:0, deviation:0, error:0, num:0}; 494 result.error = ((((result.deviation / Math.sqrt(result.runs)) * tDistribution) / result.mean) * 100) || 0; 538 item.sem = (item.deviation / Math.sqrt(item.runs)) * tDistribution; [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/ |
options.js | 37 // Compute the sample standard deviation of an array 47 var deviation = mean - array[i]; 48 variance = variance + deviation * deviation;
|