Searched refs:xStart (Results 1 – 5 of 5) sorted by relevance
/cts/tests/tests/rsblas/src/android/renderscript/cts/ |
D | verify.rscript | 81 uint32_t xStart = 0; 84 xStart = y; 86 for (uint32_t x = xStart; x < w; x++) { 105 uint32_t xStart = 0; 108 xStart = y; 110 for (uint32_t x = xStart; x < w; x++) { 129 uint32_t xStart = 0; 132 xStart = y; 134 for (uint32_t x = xStart; x < w; x++) { 153 uint32_t xStart = 0; [all …]
|
/cts/tests/tests/transition/src/android/transition/cts/ |
D | FadeTest.java | 255 private static double[] getMeans(Bitmap bitmap1, Bitmap bitmap2, int xStart, int yStart) { in getMeans() argument 260 avg0 += getIntensity(bitmap1.getPixel(xStart + x, yStart + y)); in getMeans() 261 avg1 += getIntensity(bitmap2.getPixel(xStart + x, yStart + y)); in getMeans() 275 int xStart, int yStart) { in getVariances() argument 281 double v0 = getIntensity(bitmap1.getPixel(xStart + x, yStart + y)) - mean0; in getVariances() 282 double v1 = getIntensity(bitmap2.getPixel(xStart + x, yStart + y)) - mean1; in getVariances() 310 private static boolean isWindowWhite(Bitmap bitmap, int xStart, int yStart) { in isWindowWhite() argument 313 if (bitmap.getPixel(xStart + x, yStart + y) != Color.WHITE) { in isWindowWhite()
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
D | single_source_script.rscript | 45 opts.xStart = 0; 55 opts.xStart = 0;
|
D | ImageProcessingTest.java | 186 int xStart = 0; in testBlend() local 193 xStart = 10; in testBlend() 199 opt.setX(xStart, xEnd).setY(yStart, yEnd); in testBlend() 250 String name = javaBlend(i, srcData, dstData, xStart, xEnd, yStart, yEnd, w); in testBlend() 333 …public String javaBlend(int type, byte[] src, byte[] dst, int xStart, int xEnd, int yStart, int yE… in javaBlend() argument 335 for (int x = xStart; x < xEnd; x++) { in javaBlend()
|
/cts/tests/tests/widget/src/android/widget/cts/ |
D | TextViewTest.java | 9652 int xStart = (int) mParent.getLayout().getPrimaryHorizontal(mStartCharPos, true); in calculatePositions() local 9658 mXPosInside = (xStart + xEnd) / 2; in calculatePositions() 9801 int xStart = (int) textView.getLayout().getPrimaryHorizontal(startIndex, true); in getCenterPositionOfTextAt() local 9807 return new Point((xStart + xEnd) / 2 /* x */, (yTop + yBottom) / 2 /* y */); in getCenterPositionOfTextAt()
|