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

1 2 3

  /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/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/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/WebKit/Source/core/svg/
SVGComponentTransferFunctionElement.idl 39 readonly attribute SVGAnimatedNumber slope;
SVGComponentTransferFunctionElement.h 89 DECLARE_ANIMATED_NUMBER(Slope, slope)
SVGComponentTransferFunctionElement.cpp 36 DEFINE_ANIMATED_NUMBER(SVGComponentTransferFunctionElement, SVGNames::slopeAttr, Slope, slope)
45 REGISTER_LOCAL_ANIMATED_PROPERTY(slope)
144 func.slope = slopeCurrentValue();
  /external/skia/bench/
bench_util.py 247 self.slope = B
257 str(self.slope),
265 """Finds the minimal slope given one standard deviation."""
266 slope = self.slope
273 if slope < 0:
274 lower_left_y = slope*regr_start + intercept - error
275 upper_right_y = slope*regr_end + intercept + error
278 elif slope > 0:
279 upper_left_y = slope*regr_start + intercept + erro
    [all...]
  /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/skia/src/core/
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.h 123 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
126 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
127 fDX = slope;
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;
SkScan_Hairline.cpp 123 SkFixed slope = SkFixedDiv(dy, dx);
124 SkFixed startY = SkFDot6ToFixed(y0) + (slope * ((32 - x0) & 63) >> 6);
126 horiline(ix0, ix1, startY, slope, blitter);
138 SkFixed slope = SkFixedDiv(dx, dy);
139 SkFixed startX = SkFDot6ToFixed(x0) + (slope * ((32 - y0) & 63) >> 6);
141 vertline(iy0, iy1, startX, slope, blitter);
  /external/skia/src/core/
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.h 123 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
126 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
127 fDX = slope;
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;
SkScan_Hairline.cpp 123 SkFixed slope = SkFixedDiv(dy, dx);
124 SkFixed startY = SkFDot6ToFixed(y0) + (slope * ((32 - x0) & 63) >> 6);
126 horiline(ix0, ix1, startY, slope, blitter);
138 SkFixed slope = SkFixedDiv(dx, dy);
139 SkFixed startX = SkFDot6ToFixed(x0) + (slope * ((32 - y0) & 63) >> 6);
141 vertline(iy0, iy1, startX, slope, blitter);
  /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));
  /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/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);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/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);

Completed in 529 milliseconds

1 2 3