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

1 2

  /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/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FloatPoint.cpp 114 float slope = (p2.y() - p1.y()) / (p2.x() - p1.x()); local
115 c = p1.y() - slope * p1.x();
116 return slope;
PathTraversalState.cpp 212 float slope = FloatPoint(m_current - m_previous).slopeAngleRadians(); local
215 m_current.move(offset * cosf(slope), offset * sinf(slope));
217 m_normalAngle = rad2deg(slope);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEComponentTransfer.h 45 , slope(0)
55 float slope; member in struct:WebCore::ComponentTransferFunction
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_state_rss.c 234 float slope = 0.0; local
244 slope = curr->slopescaledepthbias;
248 EMIT_RS_FLOAT( svga, slope, SLOPESCALEDEPTHBIAS, fail );
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_rss.c 234 float slope = 0.0; local
244 slope = curr->slopescaledepthbias;
248 EMIT_RS_FLOAT( svga, slope, SLOPESCALEDEPTHBIAS, fail );
  /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/chromium_org/chrome/browser/history/
scored_history_match.cc 499 const float slope = (600 - 400) / (1.5f - 0.0f); local
500 return 400 + slope * intermediate_score;
504 const float slope = (1300 - 600) / (12.0f - 1.5f); local
505 return 600 + slope * (intermediate_score - 1.5);
512 const float slope = (1399 - 1300) / (20.0f - 12.0f); local
513 return std::min(1399.0, 1300 + slope * (intermediate_score - 12.0));
  /external/chromium_org/third_party/skia/src/core/
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;
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/skia/src/core/
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;
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/chromium_org/third_party/WebKit/Source/core/platform/audio/
DynamicsCompressorKernel.cpp 131 // This slope is equal to the inverse of the compression "ratio".
132 // In other words, a compression ratio of 20 would be a slope of 1/20.
162 // A high value for k will more quickly asymptotically approach a slope of 0.
163 float slope = slopeAt(x, k); local
165 if (slope < desiredSlope) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGradientValue.cpp 610 float slope = tan(deg2rad(90 - angleDeg)); local
612 // We find the endpoint by computing the intersection of the line formed by the slope,
614 float perpendicularSlope = -1 / slope;
631 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/chromium_org/third_party/libwebp/enc/
quant.c 252 const double slope = (exp_min - exp_max) / (amax - amin); local
257 : exp_max + slope * (alpha - amin);
    [all...]
  /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...]
  /external/webp/src/enc/
quant.c 252 const double slope = (exp_min - exp_max) / (amax - amin); local
257 : exp_max + slope * (alpha - amin);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java 702 float slope = deltaY / deltaX; local
703 float theta = (float) Math.atan(slope);
    [all...]
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_mdp.h 461 uint32_t slope; member in struct:mdp_ar_gc_lut_data
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_mdp.h 476 uint32_t slope; member in struct:mdp_ar_gc_lut_data
  /hardware/qcom/msm8x74/kernel-headers/linux/
msm_mdp.h 557 uint32_t slope; member in struct:mdp_ar_gc_lut_data
  /hardware/qcom/msm8x74/original-kernel-headers/linux/
msm_mdp.h 581 uint32_t slope; member in struct:mdp_ar_gc_lut_data

Completed in 1479 milliseconds

1 2