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

1 2 3

  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
isp_isf.tab 43 /* slope in Q11 used to compute y = acos(x) */
45 static const Word16 slope[128] = {
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
lsp_lsf_tbl.cpp 96 /* slope used to compute y = acos(x) */
98 extern const Word16 slope[];
99 const Word16 slope[64] = variable
lsp_lsf.cpp 112 extern const Word16 slope[];
263 slope = table to used to calculate inverse cosine
313 slope[ind] )/4096
315 L_tmp = L_mult (sub (lsp[i], table[ind]), slope[ind]);
316 //(lsp[i]-table[ind])*slope[ind])>>12
373 slope[ind] )/4096 */
375 L_tmp = (Word32)(temp - table[ind]) * slope[ind];
377 /*(lsp[i]-table[ind])*slope[ind])>>12*/
  /external/webrtc/webrtc/modules/video_coding/test/
plotReceiveTrace.m 106 slope = 0;
113 slope = x;
116 plot(x, packetTime(:,3) - firstTime - slope, 'b.');
122 slope = x;
125 plot(x, firstPacketTime(:,2) - firstTime - slope, 'b.');
132 slope = x;
134 plot(x, completeTime(:,3) - firstTime - slope, 'ks');
141 slope = x;
143 plot(x, decodeTime(:,2) - firstTime - slope, 'r.');
150 slope = x
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Vignette.java 37 private float slope = 20.0f; field in class:Vignette
57 t.setText("Slope");
84 slope = (float)progress;
102 center_y, scale, shade, slope); local
107 center_y, scale, shade, slope); local
112 scale, shade, slope); local
117 scale, shade, slope); local
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Vignette.java 33 private float slope = 20.0f; field in class:Vignette
53 t.setText("Slope");
81 slope = (float)progress;
104 center_y, scale, shade, slope); local
109 center_y, scale, shade, slope); local
114 scale, shade, slope); local
119 scale, shade, slope); local
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Vignette.java 33 private float slope = 20.0f; field in class:Vignette
53 t.setText("Slope");
81 slope = (float)progress;
104 center_y, scale, shade, slope); local
109 center_y, scale, shade, slope); local
114 scale, shade, slope); local
119 scale, shade, slope); local
  /external/skia/bench/
bench_util.py 305 self.slope = B
315 str(self.slope),
323 """Finds the minimal slope given one standard deviation."""
324 slope = self.slope
331 if slope < 0:
332 lower_left_y = slope*regr_start + intercept - error
333 upper_right_y = slope*regr_end + intercept + error
336 elif slope > 0:
337 upper_left_y = slope*regr_start + intercept + erro
    [all...]
  /external/dng_sdk/source/
dng_1d_table.cpp 165 real64 slope = (y1 - y0) * 65535.0; local
173 table16 [j] = (uint16) (base + slope * fract);
187 slope = (y1 - y0) * 65535.0;
  /external/guava/guava/src/com/google/common/util/concurrent/
SmoothRateLimiter.java 217 * - the slope starts at the middle, and goes from stableInterval to 3*stableInterval so
224 * The slope of the line from the stable interval (when permits == 0), to the cold interval
227 private double slope; field in class:SmoothRateLimiter.SmoothWarmingUp
242 slope = (coldIntervalMicros - stableIntervalMicros) / halfPermits;
270 return stableIntervalMicros + permits * slope;
  /external/skia/src/core/
SkScan_Antihair.cpp 100 virtual SkFixed drawCap(int x, SkFixed fy, SkFixed slope, int mod64) = 0;
101 virtual SkFixed drawLine(int x, int stopx, SkFixed fy, SkFixed slope) = 0;
109 SkFixed drawCap(int x, SkFixed fy, SkFixed slope, int mod64) override {
131 SkFixed slope) override {
337 SkFixed fstart, slope;
355 slope = 0;
358 slope = fastfixdiv(y1 - y0, x1 - x0);
359 SkASSERT(slope >= -SK_Fixed1 && slope <= SK_Fixed1);
360 fstart += (slope * (32 - (x0 & 63)) + 32) >> 6
    [all...]
SkEdge.h 121 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
124 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
125 fDX = slope;
SkEdge.cpp 73 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;
  /device/google/dragon/audio/hal/dsp/
drc_kernel.h 47 float slope; /* Inverse ratio. */ member in struct:drc_kernel
  /external/autotest/client/site_tests/hardware_PerfCounterVerification/
perf_verification.py 86 (slope, intercept), r2 = stats_utils.LinearRegression(
88 print "slope:", slope
hardware_PerfCounterVerification.py 89 (slope, intercept), r2 = stats_utils.LinearRegression(
92 results[prefix+'slope'] = slope
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/regression/
SimpleRegression.java 32 * <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
    [all...]
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
rasterize.rs 29 static float2 slope[12];
57 slope[total].x = (-(f1.y * (f3.z - f2.z) - f2.y * f3.z + f3.y * f2.z + (f2.y - f3.y) * f1.z)
59 slope[total].y = ((f1.x * (f3.z - f2.z) - f2.x * f3.z + f3.x * f2.z + (f2.x - f3.x) * f1.z)
117 float2 delta = slope[i] * loc;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
isp_isf.c 51 /* acos(isp[i])= ind*128 + ( ( isp[i]-table[ind] ) * slope[ind] )/2048 */
52 L_tmp = vo_L_mult(vo_sub(isp[i], table[ind]), slope[ind]);
53 isf[i] = vo_round((L_tmp << 4)); /* (isp[i]-table[ind])*slope[ind])>>11 */
  /external/skia/src/pathops/
SkPathOpsWinding.cpp 137 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,
  /external/autotest/client/site_tests/video_VideoDecodeMemoryUsage/
video_VideoDecodeMemoryUsage.py 113 Gets slope and the confidence interval of the linear regression based on
116 This function returns a tuple (beta, delta), where the beta is the slope
137 slope, delta = _get_linear_regression_slope(index, mem_usage)
139 name, slope - delta, slope + delta)
140 if (slope - delta > threshold):
142 raise error.TestError('leak detected: %s - %s' % (name, slope - delta))
  /external/pdfium/third_party/lcms2-2.6/src/
cmsgmt.c 535 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/autotest/client/site_tests/kernel_Ktime/
kernel_Ktime.py 216 slope = ((sum_rtc_diff - sum_rtc * mean_diff) /
218 logging.info('drift %.9f', slope)
  /external/esd/include/
audiofile.h 519 double slope, double intercept, double minClip, double maxClip);
521 double *slope, double *intercept, double *minClip, double *maxClip);
525 double slope, double intercept, double minClip, double maxClip);
529 double slope, double intercept, double minClip, double maxClip);
531 double *slope, double *intercept, double *minClip, double *maxClip);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
audiofile.h 519 double slope, double intercept, double minClip, double maxClip);
521 double *slope, double *intercept, double *minClip, double *maxClip);
525 double slope, double intercept, double minClip, double maxClip);
529 double slope, double intercept, double minClip, double maxClip);
531 double *slope, double *intercept, double *minClip, double *maxClip);

Completed in 331 milliseconds

1 2 3