Searched defs:slope (Results 1 - 15 of 15) sorted by relevance

/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_rss.c234 float slope = 0.0; local
244 slope = curr->slopescaledepthbias;
248 EMIT_RS_FLOAT( svga, slope, SLOPESCALEDEPTHBIAS, fail );
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/regression/
H A DSimpleRegression.java32 * <code> y = intercept + slope * x </code></p>
34 * Standard errors for <code>intercept</code> and <code>slope</code> are
260 * <code> predict(x) = intercept + slope * x </code></p>
298 * Returns the slope of the estimated regression line.
300 * The least squares estimate of the slope is computed using the
302 * The slope is sometimes denoted b1.</p>
311 * @return the slope of the regression line
493 * error of the slope estimate</a>,
500 * @return standard error associated with slope estimate
507 * Returns the half-width of a 95% confidence interval for the slope
610 getIntercept(double slope) argument
620 getRegressionSumSquares(double slope) argument
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DRateLimiter.java623 * - the slope starts at the middle, and goes from stableInterval to 3*stableInterval so
631 * The slope of the line from the stable interval (when permits == 0), to the cold interval
634 private double slope; field in class:RateLimiter.WarmingUp
649 slope = (coldIntervalMicros - stableIntervalMicros) / halfPermits;
677 return stableIntervalMicros + permits * slope;
/external/skia/src/core/
H A DSkEdge.cpp73 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
76 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
77 fDX = slope;
114 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
117 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
118 fDX = slope;
/external/svox/pico/compat/src/com/android/tts/compat/
H A DSynthProxy.java160 float attenuationInDb, float freqInHz, float slope);
159 native_setLowShelf(boolean applyFilter, float filterGain, float attenuationInDb, float freqInHz, float slope) argument
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsgmt.c535 double h, slope; local
550 slope = Lab -> b / Lab -> a;
560 Lab -> b = amax * slope;
567 Lab -> a = bmax / slope;
573 Lab -> b = amin * slope;
580 Lab -> a = bmin / slope;
/external/libopus/src/
H A Danalysis.c213 float slope=0; local
376 slope += band_tonality[b]*(b-8);
405 /* Use a simple follower with 13 dB/Bark slope for spreading function */
410 both the ATH and the loudness-dependent slope of the spreading function)
446 slope /= 8*8;
447 info->tonality_slope = slope;
/external/skia/src/pathops/
H A DSkPathOpsWinding.cpp137 SkDVector slope; local
139 SkDEBUGCODE(sk_bzero(&slope, sizeof(slope)));
157 slope = this->dSlopeAtT(t);
166 if (fabs(pt_dydx(slope, dir) * 10000) > fabs(pt_dxdy(slope, dir))) {
180 newHit->fSlope = slope;
277 SkDebugf(" t=%1.9g pt=(%1.9g,%1.9g) slope=(%1.9g,%1.9g)\n", hit->fT,
H A DSkOpSegment.cpp518 SkDVector slope = this->dSlopeAtT(t); local
519 testPerp[1].fX += slope.fY;
520 testPerp[1].fY -= slope.fX;
/external/deqp/modules/gles2/performance/
H A Des2pShaderOperatorTests.cpp156 * slope of the workload size vs frame time data is estimated. This slope
181 * tests is to look at the slope of the increasing right part. Additionally
411 const float slope = slopeNumerator / slopeDenominator; local
412 const float offset = mid.y() - slope*mid.x();
414 return gls::LineParameters(offset, slope);
530 * left.slope = 0, meaning essentially that the initial "flat" part of the
/external/deqp/modules/gles3/performance/
H A Des3pShaderOperatorTests.cpp156 * slope of the workload size vs frame time data is estimated. This slope
181 * tests is to look at the slope of the increasing right part. Additionally
411 const float slope = slopeNumerator / slopeDenominator; local
412 const float offset = mid.y() - slope*mid.x();
414 return gls::LineParameters(offset, slope);
530 * left.slope = 0, meaning essentially that the initial "flat" part of the
/external/svox/pico/compat/jni/
H A Dcom_android_tts_compat_SynthProxy.cpp313 jfloat filterGain, jfloat attenuationInDb, jfloat freqInHz, jfloat slope)
319 fFilterShelfSlope = slope;
325 ALOGE("Invalid slope, can't be null");
312 com_android_tts_compat_SynthProxy_setLowShelf(JNIEnv *env, jobject thiz, jboolean applyFilter, jfloat filterGain, jfloat attenuationInDb, jfloat freqInHz, jfloat slope) argument
/external/webp/src/enc/
H A Dframe.c68 const double slope = (s->target - s->value) / (s->last_value - s->value); local
69 dq = (float)(slope * (s->last_q - s->q));
H A Dquant.c310 const double slope = (exp_min - exp_max) / (amax - amin); local
315 : exp_max + slope * (alpha - amin);
/external/opencv/cxcore/src/
H A Dcxdrawing.cpp281 /* Correction table depent on the slope */
301 int slope; local
352 slope = (y_step >> (XY_SHIFT - 5)) & 0x3f;
353 slope ^= (y_step < 0 ? 0x3f : 0);
376 slope = (x_step >> (XY_SHIFT - 5)) & 0x3f;
377 slope ^= (x_step < 0 ? 0x3f : 0);
384 slope = (slope & 0x20) ? 0x100 : icvSlopeCorrTable[slope];
388 int t0 = slope <<
[all...]

Completed in 846 milliseconds