Home
last modified time | relevance | path

Searched refs:mBlockSize (Results 1 – 12 of 12) sorted by relevance

/frameworks/av/media/libeffects/dynamicsproc/dsp/
DDPFrequency.cpp60 mBlockSize = blockSize; in initBuffers()
62 cBInput.resize(mBlockSize * CIRCULAR_BUFFER_UPSAMPLE); in initBuffers()
63 cBOutput.resize(mBlockSize * CIRCULAR_BUFFER_UPSAMPLE); in initBuffers()
66 input.resize(mBlockSize); in initBuffers()
67 output.resize(mBlockSize); in initBuffers()
94 bp.binStop = (int)(0.5 + bp.freqCutoffHz * mBlockSize / mSamplingRate); in computeBinStartStop()
140 mBlockSize = blockSize; in configure()
141 if (mBlockSize > MAX_BLOCKSIZE) { in configure()
142 mBlockSize = MAX_BLOCKSIZE; in configure()
143 } else if (mBlockSize < MIN_BLOCKSIZE) { in configure()
[all …]
DDPFrequency.h107 unsigned int mBlockSize; variable
141 size_t mBlockSize; variable
/frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
DLowStorageTest.java41 private int mBlockSize = 0; field in LowStorageTest
54 mBlockSize = (int) (stat.getBlockSize()); in onCreate()
56 startSizeTextView.setText(Long.toString((totalBlocks * mBlockSize) / BYTE_SIZE)); in onCreate()
86 byte buf[] = new byte[mBlockSize * NO_OF_BLOCKS_TO_FILL]; in fillupdisk()
92 byte buf[] = new byte[(noOfBlockToFill % NO_OF_BLOCKS_TO_FILL) * mBlockSize]; in fillupdisk()
125 freeSizeTextView.setText(Long.toString((availableBlocks * mBlockSize) / BYTE_SIZE)); in updateInfo()
/frameworks/base/packages/DynamicSystemInstallationService/src/com/android/dynsystem/
DSparseInputStream.java81 private long mBlockSize; field in SparseInputStream
110 mBlockSize = buf.getInt(); in SparseInputStream()
111 if ((mBlockSize & 0x3) != 0) { in SparseInputStream()
131 mLeft = mCur.mChunkSize * mBlockSize; in prepareChunk()
197 return mBlockSize * mTotalBlocks; in getUnsparseSize()
/frameworks/av/media/codec2/components/flac/
DC2SoftFlacEnc.h72 uint32_t mBlockSize; variable
DC2SoftFlacEnc.cpp256 outCapacity += mBlockSize * frameSize; in process()
402 mBlockSize = FLAC__stream_encoder_get_blocksize(mFlacStreamEncoder); in configureEncoder()
/frameworks/av/media/codec2/vndk/
DC2AllocatorIon.cpp490 mBlockSize = ::getpagesize(); in C2AllocatorIon()
526 mBlockSize = blockSize; in setUsageMapper()
538 capacity = (capacity + mBlockSize - 1) & ~(mBlockSize - 1); in mapUsage()
DC2DmaBufAllocator.cpp324 mBlockSize = blockSize; in setUsageMapper()
336 capacity = (capacity + mBlockSize - 1) & ~(mBlockSize - 1); in mapUsage()
/frameworks/av/media/codec2/vndk/include/
DC2AllocatorIon.h93 size_t mBlockSize; variable
DC2DmaBufAllocator.h108 size_t mBlockSize; variable
/frameworks/base/services/core/java/com/android/server/
DDropBoxManagerService.java124 private int mBlockSize = 0; field in DropBoxManagerService
1015 mBlockSize = mStatFs.getBlockSize(); in init()
1036 EntryFile entry = new EntryFile(file, mBlockSize); in init()
1094 late.tag, t++, late.flags, mBlockSize)); in createEntry()
1104 enrollEntry(new EntryFile(temp, mDropBoxDir, tag, t, flags, mBlockSize)); in createEntry()
1160 int maximum = quotaKb * 1024 / mBlockSize; in trimToFit()
1210 return mCachedQuotaBlocks * mBlockSize; in trimToFit()
/frameworks/base/media/java/android/media/
DMediaCodecInfo.java1781 private Size mBlockSize; // codec block size in macroblocks field in MediaCodecInfo.VideoCapabilities.PerformancePoint
1823 int blockWidth = 16 * mBlockSize.getWidth(); in toString()
1824 int blockHeight = 16 * mBlockSize.getHeight(); in toString()
1864 mBlockSize = new Size(Utils.divUp(blockSize.getWidth(), 16), in PerformancePoint()
1869 * mBlockSize.getWidth()); in PerformancePoint()
1872 * mBlockSize.getHeight()); in PerformancePoint()
1892 new Size(Math.max(newBlockSize.getWidth(), pp.mBlockSize.getWidth() * 16), in PerformancePoint()
1893 Math.max(newBlockSize.getHeight(), pp.mBlockSize.getHeight() * 16)) in PerformancePoint()
1973 Math.max(mBlockSize.getWidth(), other.mBlockSize.getWidth()) * 16, in getCommonBlockSize()
1974 Math.max(mBlockSize.getHeight(), other.mBlockSize.getHeight()) * 16); in getCommonBlockSize()