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

1 2 3 4

  /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*/
  /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
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
plotReceiveTrace.m 106 slope = 0;
113 slope = x;
116 plot(x, packetTime(:,3) - firstTime - slope, 'b.');
122 slope = x;
125 plot(x, firstPacketTime(:,2) - firstTime - slope, 'b.');
132 slope = x;
134 plot(x, completeTime(:,3) - firstTime - slope, 'ks');
141 slope = x;
143 plot(x, decodeTime(:,2) - firstTime - slope, 'r.');
150 slope = x
    [all...]
  /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;
LineUtilities.h 9 bool implicitLine(const _Line& line, double& slope, double& axisIntercept);
  /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;
LineUtilities.h 9 bool implicitLine(const _Line& line, double& slope, double& axisIntercept);
  /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/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/third_party/WebKit/Source/core/svg/
SVGComponentTransferFunctionElement.idl 39 readonly attribute SVGAnimatedNumber slope;
SVGComponentTransferFunctionElement.h 39 SVGAnimatedNumber* slope() { return m_slope.get(); } function in class:WebCore::SVGComponentTransferFunctionElement
  /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/skia/bench/
bench_util.py 305 self.slope = B
315 str(self.slope),
323 """Finds the minimal slope given one standard deviation."""
324 slope = self.slope
331 if slope < 0:
332 lower_left_y = slope*regr_start + intercept - error
333 upper_right_y = slope*regr_end + intercept + error
336 elif slope > 0:
337 upper_left_y = slope*regr_start + intercept + erro
    [all...]
  /external/skia/bench/
bench_util.py 305 self.slope = B
315 str(self.slope),
323 """Finds the minimal slope given one standard deviation."""
324 slope = self.slope
331 if slope < 0:
332 lower_left_y = slope*regr_start + intercept - error
333 upper_right_y = slope*regr_end + intercept + error
336 elif slope > 0:
337 upper_left_y = slope*regr_start + intercept + erro
    [all...]
  /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/skia/src/core/
SkEdge.h 115 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
118 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
119 fDX = slope;
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.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;
  /external/skia/src/core/
SkEdge.h 115 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
118 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
119 fDX = slope;
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...]
  /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/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/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));

Completed in 928 milliseconds

1 2 3 4