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

1 2

  /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/skia/bench/
bench_util.py 206 self.slope = B
216 str(self.slope),
224 """Finds the minimal slope given one standard deviation."""
225 slope = self.slope
232 if slope < 0:
233 lower_left_y = slope*regr_start + intercept - error
234 upper_right_y = slope*regr_end + intercept + error
237 elif slope > 0:
238 upper_left_y = slope*regr_start + intercept + erro
    [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");
80 slope = (float)progress;
98 center_y, scale, shade, slope); local
103 center_y, scale, shade, slope); local
108 scale, shade, slope); local
113 scale, shade, slope); local
  /frameworks/rs/java/tests/ImageProcessing_jb/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
  /external/webkit/Source/WebCore/platform/graphics/
FloatPoint.cpp 83 float slope = (p2.y() - p1.y()) / (p2.x() - p1.x()); local
84 c = p1.y() - slope * p1.x();
85 return slope;
Path.cpp 74 float slope = atan2f(change.height(), change.width()); local
78 traversalState.m_current.move(offset * cosf(slope), offset * sinf(slope));
80 traversalState.m_normalAngle = rad2deg(slope);
  /external/webkit/Source/WebCore/svg/
SVGComponentTransferFunctionElement.h 49 DECLARE_ANIMATED_NUMBER(Slope, slope)
SVGComponentTransferFunctionElement.idl 42 readonly attribute SVGAnimatedNumber slope;
SVGComponentTransferFunctionElement.cpp 36 DEFINE_ANIMATED_NUMBER(SVGComponentTransferFunctionElement, SVGNames::slopeAttr, Slope, slope)
148 func.slope = slope();
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEComponentTransfer.h 45 , slope(0)
55 float slope; member in struct:WebCore::ComponentTransferFunction
  /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 virtual SkFixed drawCap(int x, SkFixed fy, SkFixed slope, int mod64) SK_OVERRIDE {
131 SkFixed slope) SK_OVERRIDE {
405 SkFixed fstart, slope;
423 slope = 0;
426 slope = fastfixdiv(y1 - y0, x1 - x0);
427 SkASSERT(slope >= -SK_Fixed1 && slope <= SK_Fixed1);
428 fstart += (slope * (32 - (x0 & 63)) + 32) >> 6
    [all...]
SkEdge.h 128 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
131 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
132 fDX = slope;
SkEdge.cpp 74 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
77 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
78 fDX = slope;
115 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
118 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
119 fDX = slope;
SkScan_Hairline.cpp 123 SkFixed slope = SkFixedDiv(dy, dx);
124 SkFixed startY = SkFDot6ToFixed(y0) + (slope * ((32 - x0) & 63) >> 6);
126 horiline(ix0, ix1, startY, slope, blitter);
138 SkFixed slope = SkFixedDiv(dx, dy);
139 SkFixed startX = SkFDot6ToFixed(x0) + (slope * ((32 - y0) & 63) >> 6);
141 vertline(iy0, iy1, startX, slope, blitter);
  /external/quake/quake/src/QW/client/
d_sprite.c 204 float du, dv, vtop, vbottom, slope; local
229 slope = du / dv;
230 u_step = (int)(slope * 0x10000);
232 u = (int)((pvert->u + (slope * (vtop - pvert->v))) * 0x10000) +
266 float du, dv, vtop, vbottom, slope, uvert, unext, vvert, vnext; local
309 slope = du / dv;
310 u_step = (int)(slope * 0x10000);
312 u = (int)((uvert + (slope * (vtop - vvert))) * 0x10000) +
  /external/quake/quake/src/WinQuake/
d_sprite.cpp 204 float du, dv, vtop, vbottom, slope; local
229 slope = du / dv;
230 u_step = (int)(slope * 0x10000);
232 u = (int)((pvert->u + (slope * (vtop - pvert->v))) * 0x10000) +
266 float du, dv, vtop, vbottom, slope, uvert, unext, vvert, vnext; local
309 slope = du / dv;
310 u_step = (int)(slope * 0x10000);
312 u = (int)((uvert + (slope * (vtop - vvert))) * 0x10000) +
  /external/skia/legacy/src/core/
SkScan_Antihair.cpp 89 static SkFixed hline(int x, int stopx, SkFixed fy, SkFixed /*slope*/,
152 static SkFixed vline(int y, int stopy, SkFixed fx, SkFixed /*slope*/,
204 SkFixed slope, SkBlitter*, int);
233 SkFixed fstart, slope;
246 slope = 0;
249 slope = fastfixdiv(y1 - y0, x1 - x0);
250 SkASSERT(slope >= -SK_Fixed1 && slope <= SK_Fixed1);
251 fstart += (slope * (32 - (x0 & 63)) + 32) >> 6;
270 fstart += slope * (clip->fLeft - istart)
    [all...]
SkEdge.cpp 68 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
70 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, (32 - y0) & 63)); // + SK_Fixed1/2
71 fDX = slope;
108 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
110 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, (32 - y0) & 63)); // + SK_Fixed1/2
111 fDX = slope;
SkScan_Hairline.cpp 98 SkFixed slope = SkFixedDiv(dy, dx);
99 SkFixed startY = SkFDot6ToFixed(y0) + (slope * ((32 - x0) & 63) >> 6);
101 horiline(ix0, ix1, startY, slope, blitter);
113 SkFixed slope = SkFixedDiv(dx, dy);
114 SkFixed startX = SkFDot6ToFixed(x0) + (slope * ((32 - y0) & 63) >> 6);
116 vertline(iy0, iy1, startX, slope, blitter);
  /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/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/i686-linux-glibc2.7-4.4.3/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 1187 milliseconds

1 2