Home
last modified time | relevance | path

Searched refs:yOffset (Results 1 – 8 of 8) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DAllocationTest.java503 int xOffset, int yOffset, in helperFloatCopy2D() argument
518 A.copy2DRangeFrom(xOffset, yOffset, width, height, src); in helperFloatCopy2D()
522 for (int y = yOffset + height - 1; y >= yOffset ; y--) { in helperFloatCopy2D()
532 int xOffset, int yOffset, in helperByteCopy2D() argument
547 A.copy2DRangeFrom(xOffset, yOffset, width, height, src); in helperByteCopy2D()
551 for (int y = yOffset + height - 1; y >= yOffset ; y--) { in helperByteCopy2D()
562 int xOffset, int yOffset, in helperShortCopy2D() argument
577 A.copy2DRangeFrom(xOffset, yOffset, width, height, src); in helperShortCopy2D()
581 for (int y = yOffset + height - 1; y >= yOffset ; y--) { in helperShortCopy2D()
591 int xOffset, int yOffset, in helperIntCopy2D() argument
[all …]
/cts/tests/tests/rscpp/librscpptest/
Drs_jni_allocation.cpp238 int xOffset, int yOffset, int xCount, int yCount, in helperCopy2D() argument
262 alloc->copy2DRangeFrom(xOffset, yOffset, xCount, yCount, src); in helperCopy2D()
263 alloc->copy2DRangeTo(xOffset, yOffset, xCount, yCount, dst); in helperCopy2D()
279 int xOffset, int yOffset, int xCount, int yCount) { in helperFloatAllocationCopy2D() argument
294 srcA->copy2DRangeFrom(xOffset, yOffset, xCount, yCount, src); in helperFloatAllocationCopy2D()
296 dstA->copy2DRangeFrom(xOffset, yOffset, xCount, yCount, srcA, xOffset, yOffset); in helperFloatAllocationCopy2D()
297 dstA->copy2DRangeTo(xOffset, yOffset, xCount, yCount, dst); in helperFloatAllocationCopy2D()
329 int xOffset, int yOffset, int zOffset, in helperCopy3D() argument
365 alloc->copy3DRangeFrom(xOffset, yOffset, zOffset, xCount, yCount, zCount, src); in helperCopy3D()
366 alloc->copy3DRangeTo(xOffset, yOffset, zOffset, xCount, yCount, zCount, dst); in helperCopy3D()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/audiolib/
DWaveScopeView.java270 float yOffset = height / (2.0f * mNumChannels); in onDraw() local
273 … drawChannelFloat(canvas, mPCMFloatBuffer, mNumFrames, mNumChannels, channel, yOffset); in onDraw()
274 yOffset += yDelta; in onDraw()
/cts/tests/app/WallpaperTest/src/android/app/cts/wallpapers/
DTestWallpaperService.kt177 yOffset: Float, in onOffsetsChanged()
187 yOffset, in onOffsetsChanged()
/cts/tests/tests/widget29/src/android/widget/cts29/
DToastTest.java410 final int yOffset = 10;
412 mToast.setGravity(Gravity.BOTTOM, xOffset, yOffset);
420 assertEquals(yOffset, mToast.getYOffset());
427 assertEquals(bottomXY[1] - yOffset, bottomOffsetXY[1]);
/cts/tests/media/src/android/mediav2/cts/
DEncodeDecodeAccuracyTest.java125 private final int yOffset = 64; field in EncodeDecodeAccuracyTest
440 int y = yOffset; in checkSurfaceFrame()
/cts/tests/tests/widget/src/android/widget/cts/
DToastTest.java694 final int yOffset = 10;
696 mToast.setGravity(Gravity.BOTTOM, xOffset, yOffset);
704 assertEquals(yOffset, mToast.getYOffset());
711 assertEquals(bottomXY[1] - yOffset, bottomOffsetXY[1]);
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/
DCameraFormatsActivity.java199 ColorMatrix yOffset = new ColorMatrix(yuvOffset); in onCreate() local
202 yTotal.setConcat(y2r, yOffset); in onCreate()