Searched defs:copyFromUnchecked (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/rs/java/android/renderscript/
H A DAllocation.java47 * more complex Element types, the {@link #copyFromUnchecked} methods can be
327 * Element#I32_3} cells, using {@link #copyFromUnchecked(int[])}:
687 private void copyFromUnchecked(Object array, Element.DataType dt, int arrayLen) { method in class:Allocation
689 Trace.traceBegin(RenderScript.TRACE_TAG, "copyFromUnchecked");
725 public void copyFromUnchecked(Object array) { method in class:Allocation
727 Trace.traceBegin(RenderScript.TRACE_TAG, "copyFromUnchecked");
728 copyFromUnchecked(array, validateObjectIsPrimitiveArray(array, false),
756 public void copyFromUnchecked(int[] d) { method in class:Allocation
757 copyFromUnchecked(d, Element.DataType.SIGNED_32, d.length);
781 public void copyFromUnchecked(shor method in class:Allocation
806 public void copyFromUnchecked(byte[] d) { method in class:Allocation
831 public void copyFromUnchecked(float[] d) { method in class:Allocation
[all...]
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DAllocation.java47 * more complex Element types, the {@link #copyFromUnchecked} methods can be
295 * Element#I32_3} cells, using {@link #copyFromUnchecked(int[])}:
673 private void copyFromUnchecked(Object array, Element.DataType dt, int arrayLen) { method in class:Allocation
705 public void copyFromUnchecked(Object array) { method in class:Allocation
706 copyFromUnchecked(array, validateObjectIsPrimitiveArray(array, false),
731 public void copyFromUnchecked(int[] d) { method in class:Allocation
732 copyFromUnchecked(d, Element.DataType.SIGNED_32, d.length);
756 public void copyFromUnchecked(short[] d) { method in class:Allocation
757 copyFromUnchecked(d, Element.DataType.SIGNED_16, d.length);
781 public void copyFromUnchecked(byt method in class:Allocation
806 public void copyFromUnchecked(float[] d) { method in class:Allocation
[all...]

Completed in 2049 milliseconds