Home
last modified time | relevance | path

Searched refs:yEnd (Results 1 – 4 of 4) 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/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()