HomeSort by relevance Sort by last modified time
    Searched defs:growSize (Results 1 - 18 of 18) 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));
106 float[] newArray = ArrayUtils.newUnpaddedFloatArray(growSize(currentSize));
136 growSize(currentSize));
155 int[] newArray = ArrayUtils.newUnpaddedIntArray(growSize(currentSize));
174 long[] newArray = ArrayUtils.newUnpaddedLongArray(growSize(currentSize));
193 boolean[] newArray = ArrayUtils.newUnpaddedBooleanArray(growSize(currentSize));
205 public static int growSize(int currentSize)
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/content/res/
GrowingArrayUtils.java 45 growSize(currentSize));
60 int[] newArray = new int[growSize(currentSize)];
75 long[] newArray = new long[growSize(currentSize)];
90 boolean[] newArray = new boolean[growSize(currentSize)];
119 growSize(currentSize));
138 int[] newArray = new int[growSize(currentSize)];
157 long[] newArray = new long[growSize(currentSize)];
176 boolean[] newArray = new boolean[growSize(currentSize)];
188 public static int growSize(int currentSize) {
  /frameworks/rs/
rsStream.cpp 68 growSize();
78 growSize();
96 growSize();
107 void OStream::growSize() {
  /external/skia/include/private/
SkPathRef.h 445 size_t growSize = size - fFreeSpace;
448 growSize = (growSize + 7) & ~static_cast<size_t>(7);
450 if (growSize < oldSize) {
451 growSize = oldSize;
453 if (growSize < kMinSize) {
454 growSize = kMinSize;
458 if (growSize <= maxSize - oldSize) {
459 newSize = oldSize + growSize;
471 fFreeSpace += growSize;
    [all...]
  /external/skqp/include/private/
SkPathRef.h 442 size_t growSize = size - fFreeSpace;
445 growSize = (growSize + 7) & ~static_cast<size_t>(7);
447 if (growSize < oldSize) {
448 growSize = oldSize;
450 if (growSize < kMinSize) {
451 growSize = kMinSize;
455 if (growSize <= maxSize - oldSize) {
456 newSize = oldSize + growSize;
468 fFreeSpace += growSize;
    [all...]
  /external/icu/icu4c/source/common/
unistr.cpp 359 int32_t growSize = (newLength >> 2) + kGrowSize;
360 if(growSize <= (kMaxCapacity - newLength)) {
361 return newLength + growSize;
    [all...]
  /external/webrtc/webrtc/examples/androidapp/third_party/autobanh/
autobanh.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.0.CR3/
netty-common-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.3.Final/
netty-common-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.6.Final/
netty-common-4.1.6.Final.jar 
  /prebuilts/misc/common/android-support-test/espresso/
espresso_core_release_no_deps.jar 
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
android-all-6.0.0_r1-robolectric-0.jar 

Completed in 572 milliseconds