Lines Matching refs:copyFromUnchecked
687 private void copyFromUnchecked(Object array, Element.DataType dt, int arrayLen) { in copyFromUnchecked() method in Allocation
725 public void copyFromUnchecked(Object array) { in copyFromUnchecked() method in Allocation
728 copyFromUnchecked(array, validateObjectIsPrimitiveArray(array, false), in copyFromUnchecked()
756 public void copyFromUnchecked(int[] d) { in copyFromUnchecked() method in Allocation
757 copyFromUnchecked(d, Element.DataType.SIGNED_32, d.length); in copyFromUnchecked()
781 public void copyFromUnchecked(short[] d) { in copyFromUnchecked() method in Allocation
782 copyFromUnchecked(d, Element.DataType.SIGNED_16, d.length); in copyFromUnchecked()
806 public void copyFromUnchecked(byte[] d) { in copyFromUnchecked() method in Allocation
807 copyFromUnchecked(d, Element.DataType.SIGNED_8, d.length); in copyFromUnchecked()
831 public void copyFromUnchecked(float[] d) { in copyFromUnchecked() method in Allocation
832 copyFromUnchecked(d, Element.DataType.FLOAT_32, d.length); in copyFromUnchecked()
861 copyFromUnchecked(array, validateObjectIsPrimitiveArray(array, true), in copyFrom()
892 copyFromUnchecked(d, Element.DataType.SIGNED_32, d.length); in copyFrom()
919 copyFromUnchecked(d, Element.DataType.SIGNED_16, d.length); in copyFrom()
946 copyFromUnchecked(d, Element.DataType.SIGNED_8, d.length); in copyFrom()
973 copyFromUnchecked(d, Element.DataType.FLOAT_32, d.length); in copyFrom()