Home
last modified time | relevance | path

Searched refs:startX (Results 1 – 21 of 21) sorted by relevance

/external/mesa3d/src/pixelflinger2/
Dscanline.cpp199 const unsigned y = start->position.y, startX = start->position.x, in GGLScanLine() local
202 assert(bufferWidth > startX && bufferWidth > endX); in GGLScanLine()
207 frame += (y * bufferWidth + startX) * 4; in GGLScanLine()
209 frame += (y * bufferWidth + startX) * 2; in GGLScanLine()
212 const VectorComp_t div = VectorComp_t_CTR(1 / (float)(endX - startX)); in GGLScanLine()
231 int * depth = depthBuffer + y * bufferWidth + startX; in GGLScanLine()
232 unsigned char * stencil = stencilBuffer + y * bufferWidth + startX; in GGLScanLine()
238 if (endX >= startX) in GGLScanLine()
239 …neFunction(&vertex, &vertexDx, constants, frame, depth, stencil, activeStencil, endX - startX + 1); in GGLScanLine()
/external/webkit/Source/WebCore/platform/graphics/wx/
DFontWx.cpp125 float startX = point.x(); in drawComplexText() local
140 startX += controller.runWidthSoFar() - afterWidth; in drawComplexText()
142 startX += controller.totalWidth() - afterWidth; in drawComplexText()
147 startX += beforeWidth; in drawComplexText()
150 FloatPoint startPoint(startX, point.y()); in drawComplexText()
/external/junit/src/junit/awtui/
DProgressBar.java49 private void paintStep(int startX, int endX) { in paintStep() argument
50 repaint(startX, 1, endX-startX, getBounds().height-2); in paintStep()
/external/webkit/Source/WebCore/platform/image-decoders/
DImageDecoder.h98 void copyRowNTimes(int startX, int endX, int startY, int endY) in copyRowNTimes() argument
100 ASSERT(startX < width()); in copyRowNTimes()
104 const int rowBytes = (endX - startX) * sizeof(PixelData); in copyRowNTimes()
105 const PixelData* const startAddr = getAddr(startX, startY); in copyRowNTimes()
107 memcpy(getAddr(startX, destY), startAddr, rowBytes); in copyRowNTimes()
/external/webkit/Source/WebCore/platform/graphics/win/
DFontWin.cpp103 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer); in drawComplexText() local
110 FloatPoint startPoint(startX, point.y()); in drawComplexText()
/external/webkit/Source/WebCore/platform/graphics/mac/
DFontComplexTextMac.cpp88 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer); in drawComplexText() local
95 FloatPoint startPoint(startX, point.y()); in drawComplexText()
/external/skia/src/images/
DSkImageDecoder_libjpeg.cpp547 int startX = region.fLeft; in onDecodeRegion() local
590 int oriStartX = startX; in onDecodeRegion()
595 &startX, &startY, &width, &height); in onDecodeRegion()
637 oriWidth, oriHeight, startX, startY); in onDecodeRegion()
702 oriWidth, oriHeight, startX, startY); in onDecodeRegion()
/external/webkit/Source/WebCore/platform/graphics/qt/
DGraphicsContextQt.cpp606 int startX, startY; in drawRepeatPattern() local
613 startX = r.x() >=0 ? r.x() - (r.x() % w) : r.x() - (w - qAbs(r.x()) % w); in drawRepeatPattern()
621 startX = 0; in drawRepeatPattern()
630 startX = r.x() >=0 ? r.x() - (r.x() % w) : r.x() - (w - qAbs(r.x()) % w); in drawRepeatPattern()
639 startX = 0; in drawRepeatPattern()
646 int x = startX; in drawRepeatPattern()
660 x = startX; in drawRepeatPattern()
DFontQt.cpp357 int startX = QFontMetrics(font()).width(wholeText, from, Qt::TextBypassShaping); in selectionRectForSimpleText() local
360 return FloatRect(pt.x() + startX, pt.y(), width, h); in selectionRectForSimpleText()
/external/skia/src/core/
DSkScan_Hairline.cpp122 SkFixed startX = SkFDot6ToFixed(x0) + (slope * ((32 - y0) & 63) >> 6); in HairLine() local
124 vertline(iy0, iy1, startX, 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
809 startX = stableRound(fstartX); in strokeArc()
814 startX += centerX; in strokeArc()
819 if (startX < endX) { in strokeArc()
820 clipRect.left = startX; in strokeArc()
824 clipRect.right = startX; in strokeArc()
/external/opencv/
Dcvjni.cpp514 int startX = MAX(face->x - PAD_FACE_AREA, 0); in storePreviousFace() local
516 int w = m_smallImage->width - startX - face->width - PAD_FACE_AREA_2; in storePreviousFace()
519 m_faceCropArea = cvRect(startX, startY, in storePreviousFace()
/external/webkit/Source/WebCore/platform/graphics/openvg/
DPathOpenVG.cpp341 const VGfloat startX = radius * cos(startAngle) + center.x(); in addArc() local
368 startX, startY, in addArc()
/external/icu4c/common/
Drbbiscan.cpp900 int32_t startX = fNextIndex; in nextChar() local
902 if (fNextIndex == startX) { in nextChar()
905 fCharNum += fNextIndex-startX; in nextChar()
/external/webkit/Source/WebCore/platform/graphics/
DFontFastPath.cpp358 float startX = point.x() + getGlyphsAndAdvancesForSimpleText(run, from, to, glyphBuffer); in drawSimpleText() local
363 FloatPoint startPoint(startX, point.y()); in drawSimpleText()
/external/webkit/Source/WebCore/inspector/front-end/
DTimelineOverviewPane.js270 _windowDragging: function(startX, windowLeft, windowRight, event) argument
272 var delta = event.pageX - startX;
/external/webkit/Source/WebCore/platform/qt/
DRenderThemeQt.cpp1410 float startX = (buffered->start(i, ex) / player->duration()) * 100; in paintMediaSliderTrack() local
1411 float width = ((buffered->end(i, ex) / player->duration()) * 100) - startX; in paintMediaSliderTrack()
1412 p.painter->drawRect(startX, 37, width, 26); in paintMediaSliderTrack()
/external/webkit/Source/WebCore/css/
DCSSParser.cpp5402 RefPtr<CSSPrimitiveValue> startX, startY; in parseLinearGradient() local
5408 startX = location; in parseLinearGradient()
5416 if (startX) in parseLinearGradient()
5418 startX = location; in parseLinearGradient()
5432 if (!startX && !startY) in parseLinearGradient()
5435 result->setFirstX(startX.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