Home
last modified time | relevance | path

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

/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/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DGraggBulirschStoerIntegrator.java461 final double[] yMiddle, final double[] yEnd, in tryStep() argument
473 yEnd[i] = y0[i] + subStep * f[0][i]; in tryStep()
475 computeDerivatives(t, yEnd, f[1]); in tryStep()
482 System.arraycopy(yEnd, 0, yMiddle, 0, y0.length); in tryStep()
487 final double middle = yEnd[i]; in tryStep()
488 yEnd[i] = yTmp[i] + subStep2 * f[j][i]; in tryStep()
492 computeDerivatives(t, yEnd, f[j+1]); in tryStep()
515 yEnd[i] = 0.5 * (yTmp[i] + yEnd[i] + subStep * f[n][i]); in tryStep()
/external/replicaisland/src/com/replica/replicaisland/
DBackgroundCollisionComponent.java223 float yEnd = bottom; in update() local
229 mRayEnd.set(centerOffsetX, yEnd); in update()
/external/skia/src/codec/
DSkGifCodec.cpp439 const int yEnd = std::min(yBegin + rowNumber + repeatCount, this->getInfo().height()); in haveDecodedRow() local
442 if (!width || (xBegin < 0) || (yBegin < 0) || (xEnd <= xBegin) || (yEnd <= yBegin)) in haveDecodedRow()
/external/autotest/client/site_tests/graphics_SanAngeles/src/
Ddemo.c486 const int yBegin = -15, yEnd = 15; // ends are non-inclusive in createGroundPlane() local
488 const long triangleCount = (yEnd - yBegin) * (xEnd - xBegin) * 2; in createGroundPlane()
501 for (y = yBegin; y < yEnd; ++y) in createGroundPlane()
/external/deqp/external/vulkancts/modules/vulkan/clipping/
DvktClippingTests.cpp250 const int yEnd = regionOffset.y() + regionSize.y(); in countPixels() local
254 DE_ASSERT(yEnd <= pixels.getHeight()); in countPixels()
256 for (int y = regionOffset.y(); y < yEnd; ++y) in countPixels()
/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()
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderTextureGatherTests.cpp178 const int yEnd = (row+1)*dst.getHeight()/numRows; in fillWithRandomColorTiles() local
184 tcu::clear(tcu::getSubregion(dst, xBegin, yBegin, slice, xEnd-xBegin, yEnd-yBegin, 1), color); in fillWithRandomColorTiles()