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

1 2 3

  /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);
  /frameworks/layoutlib/bridge/src/android/graphics/
DiscretePathEffect_Delegate.java 65 /*package*/ static long nativeCreate(float length, float deviation) {
  /external/skia/include/effects/
SkDiscretePathEffect.h 20 away from the original path by a maximum of deviation.
46 SkScalar deviation,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9shape.h 39 HRESULT WINAPI D3DXCreateTextA(struct IDirect3DDevice9 *device, HDC hdc, const char *text, float deviation,
41 HRESULT WINAPI D3DXCreateTextW(struct IDirect3DDevice9 *device, HDC hdc, const WCHAR *text, float deviation,
  /external/skia/src/effects/
SkDiscretePathEffect.cpp 16 sk_sp<SkPathEffect> SkDiscretePathEffect::Make(SkScalar segLength, SkScalar deviation,
18 if (!SkScalarIsFinite(segLength) || !SkScalarIsFinite(deviation)) {
24 return sk_sp<SkPathEffect>(new SkDiscretePathEffect(segLength, deviation, seedAssist));
35 SkScalar deviation,
37 : fSegLength(segLength), fPerterb(deviation), fSeedAssist(seedAssist)
147 str->appendf("segLength: %.2f deviation: %.2f seed %d", fSegLength, fPerterb, fSeedAssist);
  /external/fio/
steadystate.h 29 double deviation; member in struct:steadystate_data
steadystate.c 163 ss->deviation = 0.0;
170 ss->deviation = max(ss->deviation, diff * (diff < 0.0 ? -1.0 : 1.0));
174 ss->criterion = 100.0 * ss->deviation / mean;
176 ss->criterion = ss->deviation;
181 ss->deviation, ss->criterion, ss->limit);
  /cts/tests/tests/media/libmediandkjni/
native_media_utils.cpp 161 float deviation = (avgBitrate - bitrate) * 100 / bitrate;
162 ALOGI("RESULT: Bitrate expected=%d Achieved=%d Deviation=%.2g%%",
163 bitrate, avgBitrate, deviation);
165 if (fabs(deviation) > kBitrateDeviationPercentMax) {
166 ALOGI("RESULT: ERROR: bitrate deviation(%.2g%%) exceeds threshold (+/-%.2g%%)",
167 deviation, kBitrateDeviationPercentMax);
172 // if bitrate mode was set to CBR, check for peak-bitrate deviation (+/-20%?)
305 float deviation = (lastAverage - lastBitrate) * 100 / lastBitrate;
307 if (fabs(deviation) > kBitrateDeviationPercentMax) {
308 ALOGI("RESULT: ERROR: dynamic bitrate deviation(%.2g%%) exceeds threshold (+/-%.2g%%)"
    [all...]
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_wgl.c 252 FLOAT deviation,
261 (void) deviation;
277 FLOAT deviation,
286 (void) deviation;
  /external/webrtc/webrtc/modules/video_coding/
jitter_estimator.cc 161 // deviation is probably due to an incorrect line slope.
162 double deviation = DeviationFromExpectedDelay(frameDelayMS, deltaFS); local
164 if (fabs(deviation) < _numStdDevDelayOutlier * sqrt(_varNoise) ||
167 // Update the variance of the deviation from the
169 EstimateRandomJitter(deviation, incompleteFrame);
176 if ((!incompleteFrame || deviation >= 0.0) &&
183 (deviation >= 0) ? _numStdDevDelayOutlier : -_numStdDevDelayOutlier;
  /external/ImageMagick/www/api/
effect.php 59 <p>AdaptiveBlurImage() adaptively blurs the image by blurring less intensely near image edges and more intensely far from edges. We blur the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, radius should be larger than sigma. Use a radius of 0 and AdaptiveBlurImage() selects a suitable radius for you.</p>
84 <dd>the standard deviation of the Laplacian, in pixels. </dd>
94 <p>AdaptiveSharpenImage() adaptively sharpens the image by sharpening more intensely near image edges and less intensely far from edges. We sharpen the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, radius should be larger than sigma. Use a radius of 0 and AdaptiveSharpenImage() selects a suitable radius for you.</p>
119 <dd>the standard deviation of the Laplacian, in pixels. </dd>
129 <p>BlurImage() blurs an image. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, the radius should be larger than sigma. Use a radius of 0 and BlurImage() selects a suitable radius for you.</p>
154 <dd>the standard deviation of the Gaussian, in pixels. </dd>
252 <p>EmbossImage() returns a grayscale image with a three-dimensional effect. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, radius should be larger than sigma. Use a radius of 0 and Emboss() selects a suitable radius for you.</p>
277 <dd>the standard deviation of the Gaussian, in pixels. </dd>
287 <p>GaussianBlurImage() blurs an image. We convolve the image with a Gaussian operator of the given radius and standard deviation (sigma). For reasonable results, the radius should be larger than sigma. Use a radius of 0 and GaussianBlurImage() selects a suitable radius for you</p>
312 <dd>the standard deviation of the Gaussian, in pixels. </dd
    [all...]
statistic.php 235 <p>GetImageMean() returns the mean and standard deviation of one or more image channels.</p>
260 <dd>the standard deviation of the channel. </dd>
359 <p>GetImageStatistics() returns statistics for each channel in the image. The statistics include the channel depth, its minima, maxima, mean, standard deviation, kurtosis and skewness. You can access the red channel mean, for example, like this:</p>
  /external/autotest/server/cros/network/
netperf_runner.py 102 deviation = None
105 deviation = math.sqrt(math.fsum(differences) / (N - 1))
106 return mean, deviation
114 and standard deviation from samples.
190 measurement X with standard deviation d(X), d(X)/X <= |fraction|.
207 # Deviation is non-zero, but the average is 0. Deviation
242 deviation = getattr(result, field + '_dev')
251 if bounds[0] is not None and bounds[0] > value + deviation:
254 if bounds[1] is not None and bounds[1] < value - deviation
    [all...]
  /frameworks/base/core/jni/android/graphics/
PathEffect.cpp 65 jfloat length, jfloat deviation) {
66 SkPathEffect* effect = SkDiscretePathEffect::Make(length, deviation).release();
  /frameworks/layoutlib/bridge/src/android/text/
OptimizingLineBreaker.java 175 float deviation = finalBreak ? 0 : maxWidth - width; local
176 return (deviation * deviation) + penalty;
  /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/walt/docs/
DragLatency.md 35 The WALT app finds a shift _S_ such that the standard deviation of _y_( _t<sub>i</sub>_ + _S_) is minimal - that is the 'x' marks are as close as possible to a horizontal straight line on the graph below. The reported number is the average of the two time shifts calculated separately for the upper and the lower lines (corresponding to two sides of the finger).
  /hardware/qcom/gps/msm8909/utils/
LocTimer.cpp 672 deviation();
674 double deviation() { function in class:LocTimerTest
  /hardware/qcom/gps/msm8996/utils/
LocTimer.cpp 670 deviation();
672 double deviation() { function in class:LocTimerTest
  /hardware/qcom/gps/msm8998/utils/
LocTimer.cpp 676 deviation();
678 double deviation() { function in class:LocTimerTest
  /hardware/qcom/gps/sdm845/utils/
LocTimer.cpp 682 deviation();
684 double deviation() { function in class:LocTimerTest
  /prebuilts/go/darwin-x86/src/math/rand/
example_test.go 67 // NormFloat64 values have an average of 0 and a standard deviation of 1.
  /prebuilts/go/linux-x86/src/math/rand/
example_test.go 67 // NormFloat64 values have an average of 0 and a standard deviation of 1.
  /external/deqp/modules/egl/
teglGLES2SharedRenderingPerfTests.cpp 941 double deviation; local
960 deviation = 0.0;
962 deviation += (double)((resultsUs[resultNdx] - average) * (resultsUs[resultNdx] - average));
964 deviation = std::sqrt(deviation/(double)resultsUs.size());
971 << "Standard deviation: " << ((double)deviation/1000.0) << "ms\n"
972 << "Standard error of mean: " << (((double)deviation/std::sqrt((double)resultsUs.size()))/1000.0) << "ms\n"
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioTrackSurroundTest.java 283 double deviation = Math.sqrt(sumDeltaSquared / populationSize); local
284 Log.d(TAG, "standard deviation from expected duration = " + deviation + " msec");

Completed in 1842 milliseconds

1 2 3