Searched refs:copy2DRangeFrom (Results 1 - 11 of 11) sorted by relevance

/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocationThunker.java178 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) { method in class:AllocationThunker
179 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
181 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) { method in class:AllocationThunker
182 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
184 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) { method in class:AllocationThunker
185 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
187 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) { method in class:AllocationThunker
188 mN.copy2DRangeFrom(xoff, yoff, w, h, data);
191 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, method in class:AllocationThunker
194 mN.copy2DRangeFrom(xof
196 public void copy2DRangeFrom(int xoff, int yoff, Bitmap data) { method in class:AllocationThunker
[all...]
H A DAllocation.java530 copy2DRangeFrom(0, 0, mCurrentDimX, mCurrentDimY, d);
548 copy2DRangeFrom(0, 0, mCurrentDimX, mCurrentDimY, d);
566 copy2DRangeFrom(0, 0, mCurrentDimX, mCurrentDimY, d);
584 copy2DRangeFrom(0, 0, mCurrentDimX, mCurrentDimY, d);
628 copy2DRangeFrom(0, 0, mCurrentDimX, mCurrentDimY, a, 0, 0);
894 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) { method in class:Allocation
909 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) { method in class:Allocation
924 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, int[] data) { method in class:Allocation
939 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) { method in class:Allocation
956 public void copy2DRangeFrom(in method in class:Allocation
975 public void copy2DRangeFrom(int xoff, int yoff, Bitmap data) { method in class:Allocation
[all...]
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DBlend.java120 image1.copy2DRangeFrom(0, 0, mInPixelsAllocation.getType().getX(), mInPixelsAllocation.getType().getY(), mInPixelsAllocation, 0, 0);
121 image2.copy2DRangeFrom(0, 0, mInPixelsAllocation2.getType().getX(), mInPixelsAllocation2.getType().getY(), mInPixelsAllocation2, 0, 0);
174 mOutPixelsAllocation.copy2DRangeFrom(0, 0, image2.getType().getX(), image2.getType().getY(), image2, 0, 0);
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DBlend.java113 image1.copy2DRangeFrom(0, 0, mInPixelsAllocation.getType().getX(), mInPixelsAllocation.getType().getY(), mInPixelsAllocation, 0, 0);
114 image2.copy2DRangeFrom(0, 0, mInPixelsAllocation2.getType().getX(), mInPixelsAllocation2.getType().getY(), mInPixelsAllocation2, 0, 0);
167 mOutPixelsAllocation.copy2DRangeFrom(0, 0, image2.getType().getX(), image2.getType().getY(), image2, 0, 0);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DBlend.java121 image1.copy2DRangeFrom(0, 0, mInPixelsAllocation.getType().getX(), mInPixelsAllocation.getType().getY(), mInPixelsAllocation, 0, 0);
122 image2.copy2DRangeFrom(0, 0, mInPixelsAllocation2.getType().getX(), mInPixelsAllocation2.getType().getY(), mInPixelsAllocation2, 0, 0);
175 mOutPixelsAllocation.copy2DRangeFrom(0, 0, image2.getType().getX(), image2.getType().getY(), image2, 0, 0);
/frameworks/rs/java/tests/HelloComputeNDK/libhellocomputendk/
H A DhelloComputeNDK.cpp50 inputAlloc->copy2DRangeFrom(0, 0, X, Y, inputPtr);
/frameworks/base/graphics/java/android/renderscript/
H A DAllocationAdapter.java79 super.copy2DRangeFrom(xoff, yoff, w, h, d);
85 super.copy2DRangeFrom(xoff, yoff, w, h, d);
H A DAllocation.java608 copy2DRangeFrom(0, 0, mCurrentDimX, mCurrentDimY, d);
628 copy2DRangeFrom(0, 0, mCurrentDimX, mCurrentDimY, d);
648 copy2DRangeFrom(0, 0, mCurrentDimX, mCurrentDimY, d);
668 copy2DRangeFrom(0, 0, mCurrentDimX, mCurrentDimY, d);
716 copy2DRangeFrom(0, 0, mCurrentDimX, mCurrentDimY, a, 0, 0);
1008 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, byte[] data) { method in class:Allocation
1009 Trace.traceBegin(RenderScript.TRACE_TAG, "copy2DRangeFrom");
1025 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, short[] data) { method in class:Allocation
1026 Trace.traceBegin(RenderScript.TRACE_TAG, "copy2DRangeFrom");
1042 public void copy2DRangeFrom(in method in class:Allocation
1059 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, float[] data) { method in class:Allocation
1078 public void copy2DRangeFrom(int xoff, int yoff, int w, int h, method in class:Allocation
1099 public void copy2DRangeFrom(int xoff, int yoff, Bitmap data) { method in class:Allocation
[all...]
/frameworks/rs/tests/cppbasic/
H A Dcompute.cpp81 kern1_in->copy2DRangeFrom(0, 0, xDim, yDim, buf);
/frameworks/rs/cpp/
H A DAllocation.cpp235 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, function in class:Allocation
244 void Allocation::copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, function in class:Allocation
H A DrsCppStructs.h400 void copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,
425 void copy2DRangeFrom(uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h,

Completed in 921 milliseconds