Home
last modified time | relevance | path

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

/external/libgdx/gdx/jni/etc1/
Detc1_utils.cpp527 etc1_uint32 yEnd = height - y; in etc1_encode_image() local
528 if (yEnd > 4) { in etc1_encode_image()
529 yEnd = 4; in etc1_encode_image()
531 int ymask = kYMask[yEnd]; in etc1_encode_image()
538 for (etc1_uint32 cy = 0; cy < yEnd; cy++) { in etc1_encode_image()
580 etc1_uint32 yEnd = height - y; in etc1_decode_image() local
581 if (yEnd > 4) { in etc1_decode_image()
582 yEnd = 4; in etc1_decode_image()
591 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/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/opencv3/3rdparty/openexr/IlmImf/
DImfInputFile.cpp203 int yStart, yEnd, yStep; in bufferedReadPixels() local
208 yEnd = minDy - 1; in bufferedReadPixels()
214 yEnd = maxDy + 1; in bufferedReadPixels()
229 for (int j = yStart; j != yEnd; j += yStep) in bufferedReadPixels()
/external/replicaisland/src/com/replica/replicaisland/
DBackgroundCollisionComponent.java223 float yEnd = bottom; in update() local
229 mRayEnd.set(centerOffsetX, yEnd); in update()
/external/chromium-trace/catapult/third_party/flot/
Dexcanvas.js691 var yEnd = aY + ms(aEndAngle) * aRadius - Z2;
701 var pEnd = getCoords(this, xEnd, yEnd);
710 yEnd: pEnd.y}); property
939 mr(p.xEnd), ',', mr(p.yEnd));
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/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/opencv3/modules/cudalegacy/src/cuda/
DNPP_staging.cu2424 float yEnd = fmin (y + scaleY, rh - 1.0f); in resizeSuperSample_32f() local
2432 float ceilYEnd = ceilf (yEnd); in resizeSuperSample_32f()
2453 ceilXEnd) * (ceilYEnd - yEnd); in resizeSuperSample_32f()
2454 wsum += ceilYEnd - yEnd; in resizeSuperSample_32f()
/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()