Home
last modified time | relevance | path

Searched refs:sizeIndex (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/core/java/android/hardware/camera2/params/
H A DStreamConfigurationMap.java1582 int sizeIndex = 0; in getInternalFormatSizes() local
1618 sizes[sizeIndex++] = config.getSize(); in getInternalFormatSizes()
1623 if ((sizeIndex != sizesCount) && (dataspace == HAL_DATASPACE_DYNAMIC_DEPTH || in getInternalFormatSizes()
1626 if (sizeIndex > sizesCount) { in getInternalFormatSizes()
1629 sizeIndex + ")"); in getInternalFormatSizes()
1632 if (sizeIndex <= 0) { in getInternalFormatSizes()
1635 sizes = Arrays.copyOf(sizes, sizeIndex); in getInternalFormatSizes()
1637 } else if (sizeIndex != sizesCount) { in getInternalFormatSizes()
1639 "Too few sizes (expected " + sizesCount + ", actual " + sizeIndex + ")"); in getInternalFormatSizes()
/aosp14/frameworks/base/core/java/com/android/internal/content/
H A DFileSystemProvider.java652 final int sizeIndex = ArrayUtils.indexOf(columns, Document.COLUMN_SIZE); in includeFile() local
653 if (sizeIndex != -1) { in includeFile()
654 row.add(sizeIndex, file.length()); in includeFile()