Home
last modified time | relevance | path

Searched refs:decodedSize (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/base/libs/hwui/jni/
H A DBitmapFactory.cpp160 static bool needsFineScale(const int fullSize, const int decodedSize, const int sampleSize) { in needsFineScale() argument
161 if (fullSize % sampleSize == 0 && fullSize / sampleSize != decodedSize) { in needsFineScale()
163 } else if ((fullSize / sampleSize + 1) != decodedSize && in needsFineScale()
164 (fullSize / sampleSize) != decodedSize) { in needsFineScale()
170 static bool needsFineScale(const SkISize fullSize, const SkISize decodedSize, in needsFineScale() argument
172 return needsFineScale(fullSize.width(), decodedSize.width(), sampleSize) || in needsFineScale()
173 needsFineScale(fullSize.height(), decodedSize.height(), sampleSize); in needsFineScale()
/aosp12/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DDexRandomAccessFile.java256 public byte[] readDexUtf(int decodedSize) throws IOException { in readDexUtf() argument
262 byte[] str = new byte[decodedSize * 3]; in readDexUtf()
/aosp12/frameworks/av/media/libstagefright/codecs/aacdec/
H A DSoftAAC2.cpp1042 int32_t decodedSize = mDecodedSizes.itemAt(0); in onQueueFilled() local
1044 ALOGV("decoded %d of %d", decodedSize, *currentBufLeft); in onQueueFilled()
1045 if (*currentBufLeft > decodedSize) { in onQueueFilled()
1047 *currentBufLeft -= decodedSize; in onQueueFilled()