Home | History | Annotate | Download | only in util

Lines Matching refs:length

30         if (a.length != b.length)
35 for (int i = 0; i != a.length; i++)
60 if (a.length != b.length)
65 for (int i = 0; i != a.length; i++)
90 if (a.length != b.length)
95 for (int i = 0; i != a.length; i++)
120 if (a.length != b.length)
125 for (int i = 0; i != a.length; i++)
158 if (a.length != b.length)
165 for (int i = 0; i != a.length; i++)
187 if (a.length != b.length)
192 for (int i = 0; i != a.length; i++)
217 if (a.length != b.length)
222 for (int i = 0; i != a.length; i++)
243 if (a.length != b.length)
247 for (int i = 0; i != a.length; i++)
279 int minLen = Math.min(a.length, b.length);
292 if (a.length < b.length)
296 if (a.length > b.length)
305 for (int i = 0; i < a.length; ++i)
317 for (int i = 0; i < a.length; ++i)
331 for (int i = 0; i < array.length; i++)
341 for (int i = 0; i < array.length; i++)
351 for (int i = 0; i < array.length; i++)
361 for (int i = 0; i < array.length; i++)
371 for (int i = 0; i < array.length; i++)
384 int i = data.length;
422 int i = data.length;
438 for (int i = 0; i != ints.length; i++)
453 int i = data.length;
491 int i = data.length;
532 for (int i = 0; i != shorts.length; i++)
544 for (int i = 0; i != shorts.length; i++)
559 int i = data.length;
578 int i = data.length;
596 byte[] copy = new byte[data.length];
598 System.arraycopy(data, 0, copy, 0, data.length);
609 char[] copy = new char[data.length];
611 System.arraycopy(data, 0, copy, 0, data.length);
622 if ((existing == null) || (existing.length != data.length))
626 System.arraycopy(data, 0, existing, 0, existing.length);
637 byte[][] copy = new byte[data.length][];
639 for (int i = 0; i != copy.length; i++)
654 byte[][][] copy = new byte[data.length][][];
656 for (int i = 0; i != copy.length; i++)
670 int[] copy = new int[data.length];
672 System.arraycopy(data, 0, copy, 0, data.length);
683 long[] copy = new long[data.length];
685 System.arraycopy(data, 0, copy, 0, data.length);
696 if ((existing == null) || (existing.length != data.length))
700 System.arraycopy(data, 0, existing, 0, existing.length);
710 short[] copy = new short[data.length];
712 System.arraycopy(data, 0, copy, 0, data.length);
723 BigInteger[] copy = new BigInteger[data.length];
725 System.arraycopy(data, 0, copy, 0, data.length);
734 if (newLength < data.length)
740 System.arraycopy(data, 0, tmp, 0, data.length);
750 if (newLength < data.length)
756 System.arraycopy(data, 0, tmp, 0, data.length);
766 if (newLength < data.length)
772 System.arraycopy(data, 0, tmp, 0, data.length);
782 if (newLength < data.length)
788 System.arraycopy(data, 0, tmp, 0, data.length);
798 if (newLength < data.length)
804 System.arraycopy(data, 0, tmp, 0, data.length);
827 if (data.length - from < newLength)
829 System.arraycopy(data, from, tmp, 0, data.length - from);
845 if (data.length - from < newLength)
847 System.arraycopy(data, from, tmp, 0, data.length - from);
863 if (data.length - from < newLength)
865 System.arraycopy(data, from, tmp, 0, data.length - from);
881 if (data.length - from < newLength)
883 System.arraycopy(data, from, tmp, 0, data.length - from);
912 int length = a.length;
913 byte[] result = new byte[length + 1];
914 System.arraycopy(a, 0, result, 0, length);
915 result[length] = b;
926 int length = a.length;
927 short[] result = new short[length + 1];
928 System.arraycopy(a, 0, result, 0, length);
929 result[length] = b;
940 int length = a.length;
941 int[] result = new int[length + 1];
942 System.arraycopy(a, 0, result, 0, length);
943 result[length] = b;
954 int length = a.length;
955 String[] result = new String[length + 1];
956 System.arraycopy(a, 0, result, 0, length);
957 result[length] = b;
967 byte[] rv = new byte[a.length + b.length];
969 System.arraycopy(a, 0, rv, 0, a.length);
970 System.arraycopy(b, 0, rv, a.length, b.length);
988 byte[] rv = new byte[a.length + b.length + c.length];
990 System.arraycopy(a, 0, rv, 0, a.length);
991 System.arraycopy(b, 0, rv, a.length, b.length);
992 System.arraycopy(c, 0, rv, a.length + b.length, c.length);
1014 byte[] rv = new byte[a.length + b.length + c.length + d.length];
1016 System.arraycopy(a, 0, rv, 0, a.length);
1017 System.arraycopy(b, 0, rv, a.length, b.length);
1018 System.arraycopy(c, 0, rv, a.length + b.length, c.length);
1019 System.arraycopy(d, 0, rv, a.length + b.length + c.length, d.length);
1044 for (int i = 0; i != arrays.length; i++)
1046 size += arrays[i].length;
1052 for (int i = 0; i != arrays.length; i++)
1054 System.arraycopy(arrays[i], 0, rv, offSet, arrays[i].length);
1055 offSet += arrays[i].length;
1072 int[] c = new int[a.length + b.length];
1073 System.arraycopy(a, 0, c, 0, a.length);
1074 System.arraycopy(b, 0, c, a.length, b.length);
1085 int length = a.length;
1086 byte[] result = new byte[length + 1];
1087 System.arraycopy(a, 0, result, 1, length);
1099 int length = a.length;
1100 short[] result = new short[length + 1];
1101 System.arraycopy(a, 0, result, 1, length);
1113 int length = a.length;
1114 int[] result = new int[length + 1];
1115 System.arraycopy(a, 0, result, 1, length);
1127 int p1 = 0, p2 = a.length;
1145 int p1 = 0, p2 = a.length;
1181 return position < dataArray.length;
1186 if (position == dataArray.length)