/external/mesa3d/src/pixelflinger2/ |
D | scanline.cpp | 199 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/ |
D | FontWx.cpp | 125 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/ |
D | ProgressBar.java | 49 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/ |
D | ImageDecoder.h | 98 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/ |
D | FontWin.cpp | 103 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/ |
D | FontComplexTextMac.cpp | 88 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer); in drawComplexText() local 95 FloatPoint startPoint(startX, point.y()); in drawComplexText()
|
/external/skia/src/images/ |
D | SkImageDecoder_libjpeg.cpp | 547 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/ |
D | GraphicsContextQt.cpp | 606 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()
|
D | FontQt.cpp | 357 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/ |
D | SkScan_Hairline.cpp | 122 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/ |
D | PlatformPathWinCE.cpp | 719 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()
|
D | GraphicsContextWinCE.cpp | 806 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/ |
D | cvjni.cpp | 514 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/ |
D | PathOpenVG.cpp | 341 const VGfloat startX = radius * cos(startAngle) + center.x(); in addArc() local 368 startX, startY, in addArc()
|
/external/icu4c/common/ |
D | rbbiscan.cpp | 900 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/ |
D | FontFastPath.cpp | 358 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/ |
D | TimelineOverviewPane.js | 270 _windowDragging: function(startX, windowLeft, windowRight, event) argument 272 var delta = event.pageX - startX;
|
/external/webkit/Source/WebCore/platform/qt/ |
D | RenderThemeQt.cpp | 1410 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/ |
D | CSSParser.cpp | 5402 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/ |
D | mgraph.h | 684 m_int startX,startY; /* Starting point on arc */ member
|
/external/quake/quake/src/WinQuake/scitech/INCLUDE/ |
D | MGRAPH.H | 684 m_int startX,startY; /* Starting point on arc */ member
|