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

  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/common/src/
lsp_lsf_tbl.cpp 95 /* slope used to compute y = acos(x) */
97 extern 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*/
  /frameworks/base/media/libstagefright/codecs/amrnb/common/src/
lsp_lsf_tbl.cpp 95 /* slope used to compute y = acos(x) */
97 extern 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/src/core/
SkScan_Antihair.cpp 100 static SkFixed hline(int x, int stopx, SkFixed fy, SkFixed /*slope*/, SkBlitter* blitter, int mod64)
165 static SkFixed vline(int y, int stopy, SkFixed fx, SkFixed /*slope*/, SkBlitter* blitter, int mod64)
214 typedef SkFixed (*LineProc)(int istart, int istop, SkFixed fstart, SkFixed slope, SkBlitter*, int);
246 SkFixed fstart, slope;
260 slope = 0;
263 slope = fastfixdiv(y1 - y0, x1 - x0);
264 SkASSERT(slope >= -SK_Fixed1 && slope <= SK_Fixed1);
265 fstart += (slope * (32 - (x0 & 63)) + 32) >> 6;
285 fstart += slope * (clip->fLeft - istart)
    [all...]
SkEdge.cpp 75 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
77 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, (32 - y0) & 63)); // + SK_Fixed1/2
78 fDX = slope;
115 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
117 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, (32 - y0) & 63)); // + SK_Fixed1/2
118 fDX = slope;
SkScan_Hairline.cpp 107 SkFixed slope = SkFixedDiv(dy, dx);
108 SkFixed startY = SkFDot6ToFixed(y0) + (slope * ((32 - x0) & 63) >> 6);
110 horiline(ix0, ix1, startY, slope, blitter);
124 SkFixed slope = SkFixedDiv(dx, dy);
125 SkFixed startX = SkFDot6ToFixed(x0) + (slope * ((32 - y0) & 63) >> 6);
127 vertline(iy0, iy1, startX, slope, blitter);
SkGeometry.cpp 44 SkScalar slope = SkScalarDiv(delta_y, delta_x); local
45 SkScalar b = pts[0].fY - SkScalarMul(slope, pts[0].fX);
47 SkScalar x = SkScalarDiv(pt.fY - b, slope);
    [all...]
  /external/webkit/WebCore/platform/graphics/filters/
FEComponentTransfer.h 45 , slope(0.0f)
55 float slope; member in struct:WebCore::ComponentTransferFunction
FEComponentTransfer.cpp 135 double val = transferFunction.slope * i + 255 * transferFunction.intercept;
  /external/webkit/WebCore/svg/
SVGComponentTransferFunctionElement.idl 39 readonly attribute SVGAnimatedNumber slope;
SVGComponentTransferFunctionElement.h 45 DECLARE_ANIMATED_PROPERTY(SVGComponentTransferFunctionElement, SVGNames::slopeAttr, float, Slope, slope)
SVGComponentTransferFunctionElement.cpp 113 func.slope = slope();
  /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/webkit/WebCore/platform/graphics/
Path.cpp 72 float slope = atan2f(change.height(), change.width()); local
76 traversalState.m_current.move(offset * cosf(slope), offset * sinf(slope));
79 traversalState.m_normalAngle = slope * rad2deg;
  /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);
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 164 float slope = (segmentEndY - segmentStartY) / local
167 ypos = slope * (xpos - segmentStartX) + segmentStartY;
173 float slope = (segmentEndY - segmentStartY) / local
176 ypos = slope * (xpos - segmentStartX) + segmentStartY;
  /frameworks/base/packages/TtsService/src/android/tts/
SynthProxy.java 187 float attenuationInDb, float freqInHz, float slope);
  /frameworks/base/packages/TtsService/jni/
android_tts_SynthProxy.cpp 361 jfloat filterGain, jfloat attenuationInDb, jfloat freqInHz, jfloat slope)
369 fFilterShelfSlope = slope;
375 LOGE("Invalid slope, can't be null");

Completed in 374 milliseconds