/aosp14/frameworks/base/core/java/com/android/internal/util/ |
H A D | GrowingArrayUtils.java | 45 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 D | ImageUtils.java | 188 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 D | IntArray.java | 161 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 D | LongArray.java | 138 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 D | BiometricViewSizeBinder.kt | 91 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 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()
|
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/ |
H A D | TypefaceSerializationPerfTest.java | 139 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 D | ScreenDecorationsLogger.kt | 192 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 D | DownloadManagerBaseTest.java | 475 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 D | ChooserListAdapter.java | 680 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 D | SettingsState.java | 774 final int currentSize = mPackageToMemoryUsage.getOrDefault(packageName, 0); in getNewMemoryUsagePerPackageLocked() local 781 return Math.max(currentSize + deltaSize, 0); in getNewMemoryUsagePerPackageLocked()
|