Searched refs:currentSize (Results 1 – 10 of 10) sorted by relevance
/frameworks/base/core/java/com/android/internal/util/ |
D | GrowingArrayUtils.java | 43 public static <T> T[] append(T[] array, int currentSize, T element) { in append() argument 44 assert currentSize <= array.length; in append() local 46 if (currentSize + 1 > array.length) { in append() 49 (Class<T>) array.getClass().getComponentType(), growSize(currentSize)); in append() 50 System.arraycopy(array, 0, newArray, 0, currentSize); in append() 53 array[currentSize] = element; in append() 61 public static int[] append(int[] array, int currentSize, int element) { in append() argument 62 assert currentSize <= array.length; in append() local 64 if (currentSize + 1 > array.length) { in append() 65 int[] newArray = ArrayUtils.newUnpaddedIntArray(growSize(currentSize)); in append() [all …]
|
D | ImageUtils.java | 174 public static int calculateSampleSize(Size currentSize, Size requestedSize) { in calculateSampleSize() argument 177 if (currentSize.getHeight() > requestedSize.getHeight() in calculateSampleSize() 178 || currentSize.getWidth() > requestedSize.getWidth()) { in calculateSampleSize() 179 final int halfHeight = currentSize.getHeight() / 2; in calculateSampleSize() 180 final int halfWidth = currentSize.getWidth() / 2; in calculateSampleSize()
|
/frameworks/base/core/java/android/util/ |
D | IntArray.java | 150 final int currentSize = mSize; in ensureCapacity() local 151 final int minCapacity = currentSize + count; in ensureCapacity() 153 final int targetCap = currentSize + (currentSize < (MIN_CAPACITY_INCREMENT / 2) ? in ensureCapacity() 154 MIN_CAPACITY_INCREMENT : currentSize >> 1); in ensureCapacity() 157 System.arraycopy(mValues, 0, newValues, 0, currentSize); in ensureCapacity()
|
D | LongArray.java | 137 final int currentSize = mSize; in ensureCapacity() local 138 final int minCapacity = currentSize + count; in ensureCapacity() 140 final int targetCap = currentSize + (currentSize < (MIN_CAPACITY_INCREMENT / 2) ? in ensureCapacity() 141 MIN_CAPACITY_INCREMENT : currentSize >> 1); in ensureCapacity() 144 System.arraycopy(mValues, 0, newValues, 0, currentSize); in ensureCapacity()
|
/frameworks/base/core/java/android/text/ |
D | AutoGrowArray.java | 42 private static int computeNewCapacity(int currentSize, int requested) { in computeNewCapacity() argument 43 final int targetCapacity = currentSize + (currentSize < (MIN_CAPACITY_INCREMENT / 2) in computeNewCapacity() 44 ? MIN_CAPACITY_INCREMENT : currentSize >> 1); in computeNewCapacity()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | ScanDetailCache.java | 115 int currentSize = mMap.size(); in trim() local 116 if (currentSize < mTrimSize) { in trim() 136 for (int i = 0; i < currentSize - mTrimSize; i++) { in trim()
|
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/ |
D | DownloadManagerBaseTest.java | 475 long currentSize = 0; in waitToReceiveData() local 476 while ((currentSize = getBytesDownloaded(id)) <= expectedSize) { in waitToReceiveData() 478 expectedSize, currentSize)); in waitToReceiveData()
|
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
D | SettingsState.java | 595 Integer currentSize = mPackageToMemoryUsage.get(packageName); in updateMemoryUsagePerPackageLocked() local 596 final int newSize = Math.max((currentSize != null) in updateMemoryUsagePerPackageLocked() 597 ? currentSize + deltaSize : deltaSize, 0); in updateMemoryUsagePerPackageLocked()
|
/frameworks/av/services/camera/libcameraservice/api2/ |
D | DepthCompositeStream.cpp | 748 auto currentSize = currentWidth * currentHeight; in getMatchingDepthSize() local 750 if ((fabs(aspectRatio - currentRatio) <= arTol) && (currentSize > oldSize)) { in getMatchingDepthSize()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | ChooserActivity.java | 2752 int currentSize = mServiceTargets.size(); 2754 for (int i = 0; i < Math.min(currentSize, MAX_SERVICE_TARGETS); i++) { 2765 if (currentSize < MAX_SERVICE_TARGETS) {
|