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

1 2 3

  /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/svg/
SVGComponentTransferFunctionElement.h 39 SVGAnimatedNumber* slope() { return m_slope.get(); } function in class:WebCore::SVGComponentTransferFunctionElement
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPoint.cpp 104 float slope = (p2.y() - p1.y()) / (p2.x() - p1.x()); local
105 c = p1.y() - slope * p1.x();
106 return slope;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEComponentTransfer.h 44 , slope(0)
54 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/chromium_org/third_party/skia/experimental/Intersection/
LineUtilities.cpp 10 bool implicitLine(const _Line& line, double& slope, double& axisIntercept) {
15 slope = delta.y / delta.x;
16 axisIntercept = line[0].y - slope * line[0].x;
18 slope = delta.x / delta.y;
19 axisIntercept = line[0].x - slope * line[0].y;
96 // have a slope ... maybe
104 double slope = (p2.x - p1.x) / (p2.y - p1.y); local
108 double x = p1.x + (top - p1.y) * slope;
114 double x = p1.x + (bottom - p1.y) * slope;
  /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 );
  /external/skia/experimental/Intersection/
LineUtilities.cpp 10 bool implicitLine(const _Line& line, double& slope, double& axisIntercept) {
15 slope = delta.y / delta.x;
16 axisIntercept = line[0].y - slope * line[0].x;
18 slope = delta.x / delta.y;
19 axisIntercept = line[0].x - slope * line[0].y;
96 // have a slope ... maybe
104 double slope = (p2.x - p1.x) / (p2.y - p1.y); local
108 double x = p1.x + (top - p1.y) * slope;
114 double x = p1.x + (bottom - p1.y) * slope;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
PathTraversalState.cpp 221 float slope = FloatPoint(m_current - m_previous).slopeAngleRadians(); local
224 m_current.move(offset * cosf(slope), offset * sinf(slope));
226 m_normalAngle = rad2deg(slope);
  /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 568 const float slope = (600 - 400) / (1.5f - 0.0f); local
569 return 400 + slope * intermediate_score;
573 const float slope = (1300 - 600) / (12.0f - 1.5f); local
574 return 600 + slope * (intermediate_score - 1.5);
581 const float slope = (1399 - 1300) / (20.0f - 12.0f); local
582 return std::min(1399.0, 1300 + slope * (intermediate_score - 12.0));
  /external/chromium_org/third_party/skia/src/core/
SkEdge.cpp 66 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
69 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
70 fDX = slope;
107 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
110 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
111 fDX = slope;
SkGeometry.cpp 59 SkScalar slope = SkScalarDiv(delta_y, delta_x); local
60 SkScalar b = pts[0].fY - SkScalarMul(slope, pts[0].fX);
62 SkScalar x = SkScalarDiv(pt.fY - b, slope);
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/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/skia/src/core/
SkEdge.cpp 66 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
69 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
70 fDX = slope;
107 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
110 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
111 fDX = slope;
SkGeometry.cpp 59 SkScalar slope = SkScalarDiv(delta_y, delta_x); local
60 SkScalar b = pts[0].fY - SkScalarMul(slope, pts[0].fX);
62 SkScalar x = SkScalarDiv(pt.fY - b, slope);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/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 616 float slope = tan(deg2rad(90 - angleDeg)); local
618 // We find the endpoint by computing the intersection of the line formed by the slope,
620 float perpendicularSlope = -1 / slope;
637 float endX = c / (slope - perpendicularSlope);
    [all...]
  /external/chromium_org/third_party/opus/src/src/
analysis.c 213 float slope=0; local
376 slope += band_tonality[b]*(b-8);
405 /* Use a simple follower with 13 dB/Bark slope for spreading function */
410 both the ATH and the loudness-dependent slope of the spreading function)
446 slope /= 8*8;
447 info->tonality_slope = slope;
  /external/deqp/modules/gles2/performance/
es2pShaderOperatorTests.cpp 156 * slope of the workload size vs frame time data is estimated. This slope
181 * tests is to look at the slope of the increasing right part. Additionally
411 const float slope = slopeNumerator / slopeDenominator; local
412 const float offset = mid.y() - slope*mid.x();
414 return gls::LineParameters(offset, slope);
530 * left.slope = 0, meaning essentially that the initial "flat" part of the
    [all...]
  /external/deqp/modules/gles3/performance/
es3pShaderOperatorTests.cpp 156 * slope of the workload size vs frame time data is estimated. This slope
181 * tests is to look at the slope of the increasing right part. Additionally
411 const float slope = slopeNumerator / slopeDenominator; local
412 const float offset = mid.y() - slope*mid.x();
414 return gls::LineParameters(offset, slope);
530 * left.slope = 0, meaning essentially that the initial "flat" part of the
    [all...]
  /external/libopus/src/
analysis.c 213 float slope=0; local
376 slope += band_tonality[b]*(b-8);
405 /* Use a simple follower with 13 dB/Bark slope for spreading function */
410 both the ATH and the loudness-dependent slope of the spreading function)
446 slope /= 8*8;
447 info->tonality_slope = slope;
  /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;

Completed in 1270 milliseconds

1 2 3