Home
last modified time | relevance | path

Searched refs:startY (Results 1 – 16 of 16) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/filters/
DFEMorphology.cpp135 int startY = max(0, y - radiusY); in apply() local
141 … unsigned char columnExtrema = srcPixelArray->get(startY * effectWidth + 4 * j + channel); in apply()
142 for (int i = startY; i <= endY; ++i) { in apply()
154 … unsigned char columnExtrema = srcPixelArray->get(startY * effectWidth + endX * 4 + channel); in apply()
155 for (int i = startY; i <= endY; ++i) { in apply()
/external/webkit/Source/WebCore/platform/image-decoders/
DImageDecoder.h98 void copyRowNTimes(int startX, int endX, int startY, int endY) in copyRowNTimes() argument
102 ASSERT(startY < height()); in copyRowNTimes()
105 const PixelData* const startAddr = getAddr(startX, startY); in copyRowNTimes()
106 for (int destY = startY + 1; destY < endY; ++destY) in copyRowNTimes()
/external/mesa3d/src/pixelflinger2/
Draster.cpp110 for (unsigned y = args->startY; y <= args->endY; y += 2) { in RasterTrapezoidWorker()
214 const unsigned int startY = tlv.position.y; in RasterTrapezoid() local
217 if (endY < startY) in RasterTrapezoid()
220 const VectorComp_t yDistInv = VectorComp_t_CTR(1.0f / (endY - startY)); in RasterTrapezoid()
260 args.startY = startY + 1; in RasterTrapezoid()
262 if (args.startY <= args.endY) { in RasterTrapezoid()
297 for (unsigned y = startY; y <= endY; y += 1 + USE_DUAL_THREAD) { in RasterTrapezoid()
Dpixelflinger2.h108 unsigned startY, endY, varyingCount; member
/external/skia/src/images/
DSkImageDecoder_libjpeg.cpp548 int startY = region.fTop; in onDecodeRegion() local
591 int oriStartY = startY; in onDecodeRegion()
595 &startX, &startY, &width, &height); in onDecodeRegion()
637 oriWidth, oriHeight, startX, startY); in onDecodeRegion()
702 oriWidth, oriHeight, startX, startY); in onDecodeRegion()
/external/skia/src/core/
DSkScan_Hairline.cpp107 SkFixed startY = SkFDot6ToFixed(y0) + (slope * ((32 - x0) & 63) >> 6); in HairLine() local
109 horiline(ix0, ix1, startY, slope, blitter); in HairLine()
/external/webkit/Source/WebCore/platform/graphics/wince/
DPlatformPathWinCE.cpp719 float startX, startY, endX, endY; in addEllipse() local
724 getEllipsePointByAngle(sar, a, b, startX, startY); in addEllipse()
727 transformArcPoint(startX, startY, p); in addEllipse()
730 FloatPoint start(startX, startY); in addEllipse()
DGraphicsContextWinCE.cpp806 int startX, startY, endX, endY; in strokeArc() local
810 startY = stableRound(fstartY); in strokeArc()
815 startY = centerY - startY; in strokeArc()
826 if (startY < endY) { in strokeArc()
827 clipRect.top = startY; in strokeArc()
831 clipRect.bottom = startY; in strokeArc()
/external/opencv/
Dcvjni.cpp515 int startY = MAX(face->y - PAD_FACE_AREA, 0); in storePreviousFace() local
517 int h = m_smallImage->height - startY - face->height - PAD_FACE_AREA_2; in storePreviousFace()
519 m_faceCropArea = cvRect(startX, startY, in storePreviousFace()
/external/webkit/Source/WebCore/platform/graphics/qt/
DGraphicsContextQt.cpp606 int startX, startY; in drawRepeatPattern() local
614 startY = r.y() >=0 ? r.y() - (r.y() % h) : r.y() - (h - qAbs(r.y()) % h); in drawRepeatPattern()
622 startY = 0; in drawRepeatPattern()
631 startY = 0; in drawRepeatPattern()
640 startY = r.y() >=0 ? r.y() - (r.y() % h) : r.y() - (h - qAbs(r.y()) % h); in drawRepeatPattern()
647 int y = startY; in drawRepeatPattern()
/external/webkit/Source/WebCore/platform/graphics/openvg/
DPathOpenVG.cpp342 const VGfloat startY = -radius * sin(startAngle) + center.y(); in addArc() local
368 startX, startY, in addArc()
/external/webkit/Source/WebCore/editing/
DSelectionController.cpp893 int startY; in modify() local
894 if (!absoluteCaretY(pos, startY)) in modify()
897 startY = -startY; in modify()
898 int lastY = startY; in modify()
911 if (nextY - startY > verticalDistance) in modify()
/external/webkit/Source/WebCore/css/
DCSSParser.cpp5402 RefPtr<CSSPrimitiveValue> startX, startY; in parseLinearGradient() local
5410 startY = location; in parseLinearGradient()
5420 if (startY) in parseLinearGradient()
5422 startY = location; in parseLinearGradient()
5432 if (!startX && !startY) in parseLinearGradient()
5433 startY = primitiveValueCache()->createIdentifierValue(CSSValueTop); in parseLinearGradient()
5436 result->setFirstY(startY.release()); in parseLinearGradient()
/external/quake/quake/src/QW/scitech/include/
Dmgraph.h684 m_int startX,startY; /* Starting point on arc */ member
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
DMGRAPH.H684 m_int startX,startY; /* Starting point on arc */ member
/external/webkit/Source/WebCore/
DChangeLog-2008-08-1040039 startY -> m_top, endY -> m_bottom, left -> m_left, width -> m_width,