Home
last modified time | relevance | path

Searched refs:currentSize (Results 1 – 11 of 11) sorted by relevance

/aosp14/frameworks/base/core/java/com/android/internal/util/
H A DGrowingArrayUtils.java45 assert currentSize <= array.length; in append() local
54 array[currentSize] = element; in append()
63 assert currentSize <= array.length; in append() local
70 array[currentSize] = element; in append()
78 assert currentSize <= array.length; in append() local
85 array[currentSize] = element; in append()
93 assert currentSize <= array.length; in append() local
100 array[currentSize] = element; in append()
115 array[currentSize] = element; in append()
141 growSize(currentSize)); in insert()
[all …]
H A DImageUtils.java188 public static int calculateSampleSize(Size currentSize, Size requestedSize) { in calculateSampleSize() argument
191 if (currentSize.getHeight() > requestedSize.getHeight() in calculateSampleSize()
192 || currentSize.getWidth() > requestedSize.getWidth()) { in calculateSampleSize()
193 final int halfHeight = currentSize.getHeight() / 2; in calculateSampleSize()
194 final int halfWidth = currentSize.getWidth() / 2; in calculateSampleSize()
/aosp14/frameworks/base/core/java/android/util/
H A DIntArray.java161 final int currentSize = mSize; in ensureCapacity() local
162 final int minCapacity = currentSize + count; in ensureCapacity()
164 final int targetCap = currentSize + (currentSize < (MIN_CAPACITY_INCREMENT / 2) ? in ensureCapacity()
165 MIN_CAPACITY_INCREMENT : currentSize >> 1); in ensureCapacity()
168 System.arraycopy(mValues, 0, newValues, 0, currentSize); in ensureCapacity()
H A DLongArray.java138 final int currentSize = mSize; in ensureCapacity() local
139 final int minCapacity = currentSize + count; in ensureCapacity()
141 final int targetCap = currentSize + (currentSize < (MIN_CAPACITY_INCREMENT / 2) ? in ensureCapacity()
142 MIN_CAPACITY_INCREMENT : currentSize >> 1); in ensureCapacity()
145 System.arraycopy(mValues, 0, newValues, 0, currentSize); in ensureCapacity()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/binder/
H A DBiometricViewSizeBinder.kt91 var currentSize: PromptSize? = null
98 if (currentSize == null && size.isSmall) {
101 if ((currentSize.isSmall && size.isMedium) || size.isSmall) {
136 size.isMedium && currentSize.isSmall -> {
160 size.isMedium && currentSize.isNullOrNotSmall -> {
197 currentSize = size
/aosp14/frameworks/base/core/java/android/text/
H A DAutoGrowArray.java42 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()
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/
H A DTypefaceSerializationPerfTest.java139 long currentSize = Debug.getNativeHeapAllocatedSize(); in testDeserializeFontMap_memory() local
140 heapDiff = currentSize - baselineSize; in testDeserializeFontMap_memory()
142 currentSize, baselineSize, heapDiff)); in testDeserializeFontMap_memory()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/log/
H A DScreenDecorationsLogger.kt192 fun logDisplaySizeChanged(currentSize: Point, newSize: Point) {
197 str1 = currentSize.flattenToString()
/aosp14/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerBaseTest.java475 long currentSize = 0; in waitToReceiveData() local
476 while ((currentSize = getBytesDownloaded(id)) <= expectedSize) { in waitToReceiveData()
478 expectedSize, currentSize)); in waitToReceiveData()
/aosp14/frameworks/base/core/java/com/android/internal/app/
H A DChooserListAdapter.java680 int currentSize = mServiceTargets.size(); in insertServiceTarget() local
682 for (int i = 0; i < Math.min(currentSize, mChooserListCommunicator.getMaxRankedTargets()); in insertServiceTarget()
694 if (currentSize < mChooserListCommunicator.getMaxRankedTargets()) { in insertServiceTarget()
/aosp14/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsState.java774 final int currentSize = mPackageToMemoryUsage.getOrDefault(packageName, 0); in getNewMemoryUsagePerPackageLocked() local
781 return Math.max(currentSize + deltaSize, 0); in getNewMemoryUsagePerPackageLocked()