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

  /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
  /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/platform/graphics/filters/
FEComponentTransfer.h 45 , slope(0)
55 float slope; member in struct:WebCore::ComponentTransferFunction
  /gdk/samples/PhotoEditor/jni/
vignetting.cpp 47 const float slope = 20.0f; // how fast the light changes, the bigger the faster. local
48 range *= slope;
62 const uint32_t hypot = sqrt(center_x * center_x + center_y * center_y) / slope;
  /frameworks/base/tests/RenderScriptTests/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/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
Vignette.java 34 private float slope = 20.0f; field in class:Vignette
54 t.setText("Slope");
81 slope = (float)progress;
99 center_y, scale, shade, slope); local
104 center_y, scale, shade, slope); local
109 scale, shade, slope); local
114 scale, shade, slope); local
  /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/src/core/
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;
SkGeometry.cpp 60 SkScalar slope = SkScalarDiv(delta_y, delta_x); local
61 SkScalar b = pts[0].fY - SkScalarMul(slope, pts[0].fX);
63 SkScalar x = SkScalarDiv(pt.fY - b, slope);
    [all...]
  /external/webkit/Source/WebCore/css/
CSSGradientValue.cpp 499 float slope = tan(deg2rad(angleDeg)); local
501 // We find the endpoint by computing the intersection of the line formed by the slope,
503 float perpendicularSlope = -1 / slope;
520 float endX = c / (slope - perpendicularSlope);
    [all...]
  /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;
  /external/opencv/cxcore/src/
cxdrawing.cpp 281 /* 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 << 7
    [all...]
  /bionic/libc/kernel/common/linux/
msm_mdp.h 419 uint32_t slope; member in struct:mdp_ar_gc_lut_data
  /external/kernel-headers/original/linux/
msm_mdp.h 435 uint32_t slope; member in struct:mdp_ar_gc_lut_data
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java 702 float slope = deltaY / deltaX; local
703 float theta = (float) Math.atan(slope);
    [all...]
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 

Completed in 414 milliseconds