HomeSort by relevance Sort by last modified time
    Searched refs:decodedSize (Results 1 - 9 of 9) sorted by null

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
DexRandomAccessFile.java 253 * @param decodedSize The ULEB128 value that should have been read just before this.
256 public byte[] readDexUtf(int decodedSize) throws IOException {
262 byte[] str = new byte[decodedSize * 3];
  /frameworks/base/core/jni/android/graphics/
BitmapFactory.cpp 165 static bool needsFineScale(const int fullSize, const int decodedSize, const int sampleSize) {
166 if (fullSize % sampleSize == 0 && fullSize / sampleSize != decodedSize) {
168 } else if ((fullSize / sampleSize + 1) != decodedSize &&
169 (fullSize / sampleSize) != decodedSize) {
175 static bool needsFineScale(const SkISize fullSize, const SkISize decodedSize,
177 return needsFineScale(fullSize.width(), decodedSize.width(), sampleSize) ||
178 needsFineScale(fullSize.height(), decodedSize.height(), sampleSize);
  /external/lz4/lib/
lz4frame.c     [all...]
  /external/lz4/programs/
lz4io.c     [all...]
  /external/lz4/tests/
fullbench.c 560 int decodedSize = decompressionFunction(chunkP[chunkNb].compressedBuffer, chunkP[chunkNb].origBuffer, chunkP[chunkNb].compressedSize, chunkP[chunkNb].origSize);
561 if (chunkP[chunkNb].origSize != decodedSize) DISPLAY("ERROR ! %s() == %i != %i !! \n", dName, decodedSize, chunkP[chunkNb].origSize), exit(1);
frametest.c 364 { size_t const decodedSize = (size_t)(op - ostart);
365 U64 const crcDest = XXH64(decodedBuffer, decodedSize, 1);
367 DISPLAYLEVEL(3, "Regenerated %u bytes \n", (U32)decodedSize);
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacdec/
SoftAAC2.cpp     [all...]
  /external/dng_sdk/source/
dng_lossless_jpeg.cpp     [all...]
dng_read_image.cpp     [all...]

Completed in 247 milliseconds