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

  /frameworks/base/core/java/com/android/internal/util/
GrowingArrayUtils.java 46 (Class<T>) array.getClass().getComponentType(), growSize(currentSize));
61 int[] newArray = ArrayUtils.newUnpaddedIntArray(growSize(currentSize));
76 long[] newArray = ArrayUtils.newUnpaddedLongArray(growSize(currentSize));
91 boolean[] newArray = ArrayUtils.newUnpaddedBooleanArray(growSize(currentSize));
121 growSize(currentSize));
140 int[] newArray = ArrayUtils.newUnpaddedIntArray(growSize(currentSize));
159 long[] newArray = ArrayUtils.newUnpaddedLongArray(growSize(currentSize));
178 boolean[] newArray = ArrayUtils.newUnpaddedBooleanArray(growSize(currentSize));
190 public static int growSize(int currentSize) {
  /frameworks/rs/
rsStream.cpp 68 growSize();
78 growSize();
96 growSize();
107 void OStream::growSize() {
  /external/skia/include/core/
SkPathRef.h 376 ptrdiff_t growSize = size - fFreeSpace;
377 if (growSize <= 0) {
382 growSize = (growSize + 7) & ~static_cast<size_t>(7);
384 if (static_cast<size_t>(growSize) < oldSize) {
385 growSize = oldSize;
387 if (growSize < kMinSize) {
388 growSize = kMinSize;
390 size_t newSize = oldSize + growSize;
401 fFreeSpace += growSize;
    [all...]

Completed in 191 milliseconds