Lines Matching refs:copyFromUnchecked
691 private void copyFromUnchecked(Object array, Element.DataType dt, int arrayLen) { in copyFromUnchecked() method in Allocation
729 public void copyFromUnchecked(Object array) { in copyFromUnchecked() method in Allocation
732 copyFromUnchecked(array, validateObjectIsPrimitiveArray(array, false), in copyFromUnchecked()
760 public void copyFromUnchecked(int[] d) { in copyFromUnchecked() method in Allocation
761 copyFromUnchecked(d, Element.DataType.SIGNED_32, d.length); in copyFromUnchecked()
785 public void copyFromUnchecked(short[] d) { in copyFromUnchecked() method in Allocation
786 copyFromUnchecked(d, Element.DataType.SIGNED_16, d.length); in copyFromUnchecked()
810 public void copyFromUnchecked(byte[] d) { in copyFromUnchecked() method in Allocation
811 copyFromUnchecked(d, Element.DataType.SIGNED_8, d.length); in copyFromUnchecked()
835 public void copyFromUnchecked(float[] d) { in copyFromUnchecked() method in Allocation
836 copyFromUnchecked(d, Element.DataType.FLOAT_32, d.length); in copyFromUnchecked()
865 copyFromUnchecked(array, validateObjectIsPrimitiveArray(array, true), in copyFrom()
896 copyFromUnchecked(d, Element.DataType.SIGNED_32, d.length); in copyFrom()
923 copyFromUnchecked(d, Element.DataType.SIGNED_16, d.length); in copyFrom()
950 copyFromUnchecked(d, Element.DataType.SIGNED_8, d.length); in copyFrom()
977 copyFromUnchecked(d, Element.DataType.FLOAT_32, d.length); in copyFrom()