Home
last modified time | relevance | path

Searched refs:yEnd (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFEConvolveMatrix.h94 …INE void fastSetInteriorPixels(PaintingData&, int clipRight, int clipBottom, int yStart, int yEnd);
102 …_INLINE void setInteriorPixels(PaintingData&, int clipRight, int clipBottom, int yStart, int yEnd);
117 int yEnd; member
DFEConvolveMatrix.cpp262 …tSetInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom, int yStart, int yEnd) in fastSetInteriorPixels() argument
275 pixel += (clipBottom - yEnd) * (xIncrease + (clipRight + 1) * 4); in fastSetInteriorPixels()
276 int startKernelPixel = (clipBottom - yEnd) * (xIncrease + (clipRight + 1) * 4); in fastSetInteriorPixels()
278 for (int y = yEnd + 1; y > yStart; --y) { in fastSetInteriorPixels()
402 …:setInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom, int yStart, int yEnd) in setInteriorPixels() argument
407 fastSetInteriorPixels<true>(paintingData, clipRight, clipBottom, yStart, yEnd); in setInteriorPixels()
409 fastSetInteriorPixels<false>(paintingData, clipRight, clipBottom, yStart, yEnd); in setInteriorPixels()
424 …eriorPixels(*param->paintingData, param->clipRight, param->clipBottom, param->yStart, param->yEnd); in setInteriorPixelsWorker()
480 param.yEnd = startY; in applySoftware()
DFilterEffect.cpp347 int yEnd = rect.maxY(); in copyImageBytes() local
348 if (yEnd > m_absolutePaintRect.height()) in copyImageBytes()
349 yEnd = m_absolutePaintRect.height(); in copyImageBytes()
357 while (yOrigin < yEnd) { in copyImageBytes()
DFELighting.h83 int yEnd; member
DFELighting.cpp257 …pplyGenericPaint(parameters->data, parameters->paintingData, parameters->yStart, parameters->yEnd); in platformApplyGenericWorker()
283 params.yEnd = yStart; in platformApplyGeneric()
/external/chromium_org/third_party/android_opengl/etc1/
Detc1.cpp551 etc1_uint32 yEnd = outHeight - y; in etc1_encode_image() local
552 if (yEnd > 4) { in etc1_encode_image()
553 yEnd = 4; in etc1_encode_image()
555 int ymask = kYMask[yEnd]; in etc1_encode_image()
565 for (etc1_uint32 cy = 0; cy < yEnd; cy++) { in etc1_encode_image()
609 for (etc1_uint32 cy = 0; cy < yEnd; cy++) { in etc1_encode_image()
633 for (etc1_uint32 cy = 0; cy < yEnd; cy++) { in etc1_encode_image()
683 etc1_uint32 yEnd = height - y; in etc1_decode_image() local
684 if (yEnd > 4) { in etc1_decode_image()
685 yEnd = 4; in etc1_decode_image()
[all …]
/external/chromium_org/third_party/skia/third_party/etc1/
Detc1.cpp535 etc1_uint32 yEnd = height - y; in etc1_encode_image() local
536 if (yEnd > 4) { in etc1_encode_image()
537 yEnd = 4; in etc1_encode_image()
539 int ymask = kYMask[yEnd]; in etc1_encode_image()
546 for (etc1_uint32 cy = 0; cy < yEnd; cy++) { in etc1_encode_image()
588 etc1_uint32 yEnd = height - y; in etc1_decode_image() local
589 if (yEnd > 4) { in etc1_decode_image()
590 yEnd = 4; in etc1_decode_image()
599 for (etc1_uint32 cy = 0; cy < yEnd; cy++) { in etc1_decode_image()
/external/skia/third_party/etc1/
Detc1.cpp535 etc1_uint32 yEnd = height - y; in etc1_encode_image() local
536 if (yEnd > 4) { in etc1_encode_image()
537 yEnd = 4; in etc1_encode_image()
539 int ymask = kYMask[yEnd]; in etc1_encode_image()
546 for (etc1_uint32 cy = 0; cy < yEnd; cy++) { in etc1_encode_image()
588 etc1_uint32 yEnd = height - y; in etc1_decode_image() local
589 if (yEnd > 4) { in etc1_decode_image()
590 yEnd = 4; in etc1_decode_image()
599 for (etc1_uint32 cy = 0; cy < yEnd; cy++) { in etc1_decode_image()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
DGIFImageDecoder.cpp154 …const int yEnd = std::min(static_cast<int>(frameContext->yOffset() + rowNumber + repeatCount), siz… in haveDecodedRow() local
155 if (!width || (xBegin < 0) || (yBegin < 0) || (xEnd <= xBegin) || (yEnd <= yBegin)) in haveDecodedRow()
208 buffer.copyRowNTimes(xBegin, xEnd, yBegin, yEnd); in haveDecodedRow()
/external/replicaisland/src/com/replica/replicaisland/
DBackgroundCollisionComponent.java223 float yEnd = bottom; in update() local
229 mRayEnd.set(centerOffsetX, yEnd); in update()
/external/chromium-trace/trace-viewer/src/tracing/
Dtimeline_track_view.js533 setDragBoxPosition_: function(xStart, yStart, xEnd, yEnd) { argument
534 var loY = Math.min(yStart, yEnd);
535 var hiY = Math.max(yStart, yEnd);
/external/chromium_org/third_party/flot/
Dexcanvas.min.js1yEnd:ah.y})};q.rect=function(m,j,i,p){this.moveTo(m,j);this.lineTo(m+i,j);this.lineTo(m+i,j+p);thi… property
/external/deqp/modules/gles31/functional/
Des31fTextureGatherTests.cpp97 const int yEnd = (row+1)*dst.getHeight()/numRows; in fillWithRandomColorTiles() local
103 tcu::clear(tcu::getSubregion(dst, xBegin, yBegin, slice, xEnd-xBegin, yEnd-yBegin, 1), color); in fillWithRandomColorTiles()