Searched refs:slope (Results 1 - 25 of 55) sorted by relevance

123

/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A DplotReceiveTrace.m106 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
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DLineUtilities.cpp10 bool implicitLine(const _Line& line, double& slope, double& axisIntercept) { argument
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;
H A DLineUtilities.h9 bool implicitLine(const _Line& line, double& slope, double& axisIntercept);
/external/skia/experimental/Intersection/
H A DLineUtilities.cpp10 bool implicitLine(const _Line& line, double& slope, double& axisIntercept) { argument
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;
H A DLineUtilities.h9 bool implicitLine(const _Line& line, double& slope, double& axisIntercept);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGComponentTransferFunctionElement.idl39 readonly attribute SVGAnimatedNumber slope;
H A DSVGComponentTransferFunctionElement.h40 SVGAnimatedNumber* slope() { return m_slope.get(); } function in class:blink::SVGComponentTransferFunctionElement
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEComponentTransfer.h44 , slope(0)
54 float slope; member in struct:blink::ComponentTransferFunction
/external/chromium_org/third_party/skia/bench/
H A Dbench_util.py305 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_star
[all...]
/external/skia/bench/
H A Dbench_util.py305 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_star
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatPoint.cpp104 float slope = (p2.y() - p1.y()) / (p2.x() - p1.x()); local
105 c = p1.y() - slope * p1.x();
106 return slope;
/external/skia/src/core/
H A DSkEdge.h115 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
118 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
119 fDX = slope;
H A DSkScan_Antihair.cpp100 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 * (3
[all...]
H A DSkEdge.cpp66 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;
H A DSkScan_Hairline.cpp121 SkFixed slope = SkFixedDiv(dy, dx);
122 SkFixed startY = SkFDot6ToFixed(y0) + (slope * ((32 - x0) & 63) >> 6);
124 horiline(ix0, ix1, startY, slope, blitter);
136 SkFixed slope = SkFixedDiv(dx, dy);
137 SkFixed startX = SkFDot6ToFixed(x0) + (slope * ((32 - y0) & 63) >> 6);
139 vertline(iy0, iy1, startX, slope, blitter);
/external/chromium_org/third_party/skia/src/core/
H A DSkScan_Antihair.cpp100 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 * (3
[all...]
H A DSkEdge.h122 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
125 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
126 fDX = slope;
H A DSkEdge.cpp73 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
76 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
77 fDX = slope;
114 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0); local
117 fX = SkFDot6ToFixed(x0 + SkFixedMul(slope, dy)); // + SK_Fixed1/2
118 fDX = slope;
H A DSkScan_Hairline.cpp121 SkFixed slope = SkFixedDiv(dy, dx);
122 SkFixed startY = SkFDot6ToFixed(y0) + (slope * ((32 - x0) & 63) >> 6);
124 horiline(ix0, ix1, startY, slope, blitter);
136 SkFixed slope = SkFixedDiv(dx, dy);
137 SkFixed startX = SkFDot6ToFixed(x0) + (slope * ((32 - y0) & 63) >> 6);
139 vertline(iy0, iy1, startX, slope, blitter);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DPathTraversalState.cpp221 float slope = FloatPoint(m_current - m_previous).slopeAngleRadians(); local
224 m_current.move(offset * cosf(slope), offset * sinf(slope));
226 m_normalAngle = rad2deg(slope);
/external/chromium_org/chrome/browser/history/
H A Dscored_history_match.cc568 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/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsgmt.c535 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/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/BWEStandAlone/
H A DMatlabPlot.h48 void UpdateTrendLine(MatlabLine * sourceData, double slope, double offset);
118 int MakeTrend(const char *sourceName, const char *trendName, double slope, double offset, const char *plotAttrib = NULL);
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/
H A Dgraph-view.js150 // Calculate slope of the linear equation.
151 var slope = (rightPoint.y - leftPoint.y) / (rightPoint.x - leftPoint.x);
152 var interpolateY = slope * (pos.x - rightPoint.x) + rightPoint.y;
/external/esd/include/
H A Daudiofile.h519 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 545 milliseconds

123