HomeSort by relevance Sort by last modified time
    Searched defs:unsafeArrayCopy (Results 1 - 6 of 6) sorted by null

  /external/guava/src/com/google/common/collect/
ObjectArrays.java 69 Platform.unsafeArrayCopy(first, 0, result, 0, first.length);
70 Platform.unsafeArrayCopy(second, 0, result, first.length, second.length);
86 Platform.unsafeArrayCopy(array, 0, result, 1, array.length);
108 Platform.unsafeArrayCopy(
Platform.java 75 static void unsafeArrayCopy(
ImmutableSet.java 319 Platform.unsafeArrayCopy(elements, 0, array, 0, size());
330 Platform.unsafeArrayCopy(elements, 0, array, 0, size);
ImmutableSortedSet.java 242 Platform.unsafeArrayCopy(array, 0, copy, 0, size);
RegularImmutableList.java 70 Platform.unsafeArrayCopy(array, offset, newArray, 0, size);
80 Platform.unsafeArrayCopy(array, offset, other, 0, size);
RegularImmutableSortedSet.java 151 Platform.unsafeArrayCopy(elements, fromIndex, array, 0, size());
163 Platform.unsafeArrayCopy(elements, fromIndex, array, 0, size);

Completed in 1763 milliseconds