Lines Matching refs:len

29     final int len = arrayLength;  in timeSystemCharArrayCopy()  local
30 char[] src = new char[len]; in timeSystemCharArrayCopy()
31 char[] dst = new char[len]; in timeSystemCharArrayCopy()
33 System.arraycopy(src, 0, dst, 0, len); in timeSystemCharArrayCopy()
38 final int len = arrayLength; in timeSystemByteArrayCopy() local
39 byte[] src = new byte[len]; in timeSystemByteArrayCopy()
40 byte[] dst = new byte[len]; in timeSystemByteArrayCopy()
42 System.arraycopy(src, 0, dst, 0, len); in timeSystemByteArrayCopy()
47 final int len = arrayLength; in timeSystemShortArrayCopy() local
48 short[] src = new short[len]; in timeSystemShortArrayCopy()
49 short[] dst = new short[len]; in timeSystemShortArrayCopy()
51 System.arraycopy(src, 0, dst, 0, len); in timeSystemShortArrayCopy()
56 final int len = arrayLength; in timeSystemIntArrayCopy() local
57 int[] src = new int[len]; in timeSystemIntArrayCopy()
58 int[] dst = new int[len]; in timeSystemIntArrayCopy()
60 System.arraycopy(src, 0, dst, 0, len); in timeSystemIntArrayCopy()
65 final int len = arrayLength; in timeSystemLongArrayCopy() local
66 long[] src = new long[len]; in timeSystemLongArrayCopy()
67 long[] dst = new long[len]; in timeSystemLongArrayCopy()
69 System.arraycopy(src, 0, dst, 0, len); in timeSystemLongArrayCopy()
74 final int len = arrayLength; in timeSystemFloatArrayCopy() local
75 float[] src = new float[len]; in timeSystemFloatArrayCopy()
76 float[] dst = new float[len]; in timeSystemFloatArrayCopy()
78 System.arraycopy(src, 0, dst, 0, len); in timeSystemFloatArrayCopy()
83 final int len = arrayLength; in timeSystemDoubleArrayCopy() local
84 double[] src = new double[len]; in timeSystemDoubleArrayCopy()
85 double[] dst = new double[len]; in timeSystemDoubleArrayCopy()
87 System.arraycopy(src, 0, dst, 0, len); in timeSystemDoubleArrayCopy()
92 final int len = arrayLength; in timeSystemBooleanArrayCopy() local
93 boolean[] src = new boolean[len]; in timeSystemBooleanArrayCopy()
94 boolean[] dst = new boolean[len]; in timeSystemBooleanArrayCopy()
96 System.arraycopy(src, 0, dst, 0, len); in timeSystemBooleanArrayCopy()