/aosp12/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
H A D | foreach_bounds.rscript | 5 int xStart = 0; 33 if (i < xStart || i >= xEnd || j < yStart || j >= yEnd) { 56 rssc.xStart = xStart;
|
/aosp12/hardware/qcom/display/msm8226/libhwcomposer/ |
H A D | hwc_delta_panel.cpp | 64 int xStart, xEnd; in deltaPanelRendering() local 74 xStart = X_START_TABLE[y]; in deltaPanelRendering() 76 pPixelCenter = ((uint32_t*)pData) + xStart; in deltaPanelRendering()
|
/aosp12/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/ |
H A D | stats_scorer.cpp | 48 int xStart = static_cast<int>(width * left); in Java_androidx_media_filterpacks_numeric_StatsFilter_regionscore() local 52 int numPixels = (xEnd - xStart) * (yEnd - yStart); in Java_androidx_media_filterpacks_numeric_StatsFilter_regionscore() 58 for (int x = xStart; x < xEnd; ++x) { in Java_androidx_media_filterpacks_numeric_StatsFilter_regionscore()
|
/aosp12/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
H A D | UT_foreach_bounds.java | 37 final int xStart = 2; in initializeGlobals() local 49 s.set_xStart(xStart); in initializeGlobals() 56 sc.setX(xStart, xEnd).setY(yStart, yEnd); in initializeGlobals()
|
H A D | foreach_bounds.rscript | 21 int xStart = 0; 48 if (i < xStart || i >= xEnd || j < yStart || j >= yEnd) {
|
H A D | single_source_script.rscript | 96 opts.xStart = 0; 106 opts2.xStart = 0;
|
/aosp12/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
H A D | UT_foreach_bounds.java | 39 final int xStart = 2; in initializeGlobals() local 51 s.set_xStart(xStart); in initializeGlobals() 58 sc.setX(xStart, xEnd).setY(yStart, yEnd); in initializeGlobals()
|
H A D | foreach_bounds.rscript | 23 int xStart = 0; 50 if (i < xStart || i >= xEnd || j < yStart || j >= yEnd) {
|
H A D | single_source_script.rscript | 98 opts.xStart = 0; 108 opts2.xStart = 0;
|
/aosp12/frameworks/base/packages/EasterEgg/src/com/android/egg/quares/ |
H A D | Quare.kt | 88 val xStart = if (xSel < 0) 0 else xSel regex 93 for (x in xStart..xEnd) 113 val xStart = if (xSel < 0) 0 else xSel regex 118 for (x in xStart..xEnd)
|
/aosp12/frameworks/opt/setupwizard/library/gingerbread/src/com/android/setupwizardlib/util/ |
H A D | LinkAccessibilityHelper.java | 264 final float xStart = layout.getPrimaryHorizontal(spanStart); in getBoundsForSpan() local 272 outRect.left = (int) Math.min(xStart, xEnd); in getBoundsForSpan() 273 outRect.right = (int) Math.max(xStart, xEnd); in getBoundsForSpan() 280 outRect.right = (int) xStart; in getBoundsForSpan() 282 outRect.left = (int) xStart; in getBoundsForSpan()
|
/aosp12/frameworks/rs/cpu_ref/ |
H A D | rsCpuCore.cpp | 451 uint32_t xStart = mtls->start.x + slice * mtls->mSliceSize; in walk_1d_foreach() local 452 uint32_t xEnd = xStart + mtls->mSliceSize; in walk_1d_foreach() 456 if (xEnd <= xStart) { in walk_1d_foreach() 460 FepPtrSetup(mtls, &fep, xStart, 0); in walk_1d_foreach() 462 fn(&fep, xStart, xEnd, fep.outStride[0]); in walk_1d_foreach() 547 uint32_t xStart = mtls->start.x + slice * mtls->mSliceSize; in walk_1d_reduce() local 548 uint32_t xEnd = xStart + mtls->mSliceSize; in walk_1d_reduce() 552 if (xEnd <= xStart) { in walk_1d_reduce() 556 RedpPtrSetup(mtls, &redp, xStart, 0, 0); in walk_1d_reduce() 557 fn(&redp, xStart, xEnd, accumPtr); in walk_1d_reduce() [all …]
|
/aosp12/frameworks/compile/slang/tests/P_foreach_options/ |
H A D | foreach_options.rscript | 11 opts.xStart=0;
|
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
H A D | ProximityInfo.java | 340 final int xStart = Math.max(halfCellWidth, in computeNearestNeighbors() local 344 int baseIndexOfCurrentRow = (yStart / mCellHeight) * mGridWidth + (xStart / mCellWidth); in computeNearestNeighbors() 347 for (int centerX = xStart; centerX <= xEnd; centerX += mCellWidth) { in computeNearestNeighbors()
|
/aosp12/frameworks/layoutlib/bridge/src/android/view/ |
H A D | ShadowPainter.java | 95 int xStart = left; in createDropShadow() local 123 for (int x = xStart; x < xStop; x++, bufferOffset++) { in createDropShadow()
|
/aosp12/frameworks/rs/tests/lldb/java/SingleSource/src/rs/ |
H A D | rs_single_source.rscript | 66 .xStart=0,
|
/aosp12/frameworks/rs/script_api/ |
H A D | rs_for_each.spec | 61 field: uint32_t xStart, "Starting index in the X dimension." 83 over cells 4, 5, 6, and 7 in the X dimension, set xStart to 4 and xEnd to 8. 208 opts.xStart = 0;<br/>
|
/aosp12/frameworks/base/cmds/bootanimation/ |
H A D | BootAnimation.h | 189 void drawTexturedQuad(float xStart, float yStart, float width, float height);
|
H A D | BootAnimation.cpp | 1400 void BootAnimation::drawTexturedQuad(float xStart, float yStart, float width, float height) { in drawTexturedQuad() argument 1402 float x0 = mapLinear(xStart, 0, mWidth, -1, 1); in drawTexturedQuad() 1404 float x1 = mapLinear(xStart + width, 0, mWidth, -1, 1); in drawTexturedQuad()
|
/aosp12/frameworks/rs/ |
H A D | rsDefines.h | 241 uint32_t xStart; member
|
H A D | rsHidlAdaptation.cpp | 788 _sc.xStart = sc->xStart; in ScriptForEachMulti() 825 _sc.xStart = sc->xStart; in ScriptReduce()
|
/aosp12/frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/ |
H A D | healing.rscript | 139 opts.xStart = 1;
|
/aosp12/frameworks/rs/script_api/include/ |
H A D | rs_for_each.rsh | 73 * over cells 4, 5, 6, and 7 in the X dimension, set xStart to 4 and xEnd to 8. 77 uint32_t xStart; // Starting index in the X dimension. 189 * opts.xStart = 0;
|
/aosp12/hardware/interfaces/renderscript/1.0/ |
H A D | types.hal | 175 uint32_t xStart;
|
/aosp12/frameworks/rs/support/jni/ |
H A D | android_renderscript_RenderScript.cpp | 1585 sc.xStart = xstart; in nScriptForEachClipped() 1622 sc.xStart = xstart; in nScriptForEachClippedV() 1714 sc.xStart = limit_ptr[0]; in nScriptForEachMulti() 1819 sc.xStart = limit_ptr[0]; in nScriptReduce()
|