Home
last modified time | relevance | path

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

/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
Dforeach_bounds.rs8 int yEnd = 0;
33 if (i < xStart || i >= xEnd || j < yStart || j >= yEnd) {
59 rssc.yEnd = yEnd;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
Dstats_scorer.cpp51 int yEnd = static_cast<int>(height * bottom); in Java_androidx_media_filterpacks_numeric_StatsFilter_regionscore() local
52 int numPixels = (xEnd - xStart) * (yEnd - yStart); in Java_androidx_media_filterpacks_numeric_StatsFilter_regionscore()
56 for (int y = yStart; y < yEnd; y++) { in Java_androidx_media_filterpacks_numeric_StatsFilter_regionscore()
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
DUT_foreach_bounds.java39 final int yEnd = 6; in initializeGlobals() local
51 s.set_yEnd(yEnd); in initializeGlobals()
55 sc.setX(xStart, xEnd).setY(yStart, yEnd); in initializeGlobals()
Dforeach_bounds.rs8 int yEnd = 0;
32 if (i < xStart || i >= xEnd || j < yStart || j >= yEnd) {
/frameworks/native/opengl/libs/ETC1/
Detc1.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()
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
Dforeach_bounds.rs8 int yEnd = 0;
/frameworks/rs/cpu_ref/
DrsCpuCore.cpp415 uint32_t yEnd = yStart + mtls->mSliceSize; in walk_2d() local
417 yEnd = rsMin(yEnd, mtls->end.y); in walk_2d()
419 if (yEnd <= yStart) { in walk_2d()
423 for (fep.current.y = yStart; fep.current.y < yEnd; fep.current.y++) { in walk_2d()
DrsCpuScript.cpp572 mtls->fep.dim.y = sc->yEnd; in forEachMtlsSetup()
601 if (!sc || (sc->yEnd == 0)) { in forEachMtlsSetup()
605 mtls->end.y = rsMin(mtls->fep.dim.y, sc->yEnd); in forEachMtlsSetup()
/frameworks/native/opengl/tests/angeles/
Ddemo.c348 const int yBegin = -15, yEnd = 15; // ends are non-inclusive in createGroundPlane() local
350 const long triangleCount = (yEnd - yBegin) * (xEnd - xBegin) * 2; in createGroundPlane()
363 for (y = yBegin; y < yEnd; ++y) in createGroundPlane()
/frameworks/rs/
DrsDefines.h238 uint32_t yEnd; member
/frameworks/rs/api/
Drs_for_each.spec67 field: uint32_t yEnd, "Ending index (exclusive) in the Y dimension."
/frameworks/rs/scriptc/
Drs_for_each.rsh83 uint32_t yEnd; // Ending index (exclusive) in the Y dimension.
/frameworks/support/v8/renderscript/jni/
Dandroid_renderscript_RenderScript.cpp1580 sc.yEnd = yend; in nScriptForEachClipped()
1611 sc.yEnd = yend; in nScriptForEachClippedV()
/frameworks/base/docs/html/guide/topics/renderscript/reference/
Drs_for_each.jd234 <tr><th>uint32_t yEnd</th><td>Ending index (exclusive) in the Y dimension.</td></tr>
/frameworks/base/rs/jni/
Dandroid_renderscript_RenderScript.cpp1918 sc.yEnd = limit_ptr[3]; in nScriptForEach()