/frameworks/av/media/libeffects/dynamicsproc/dsp/ |
D | DPFrequency.cpp | 60 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 …]
|
D | DPFrequency.h | 107 unsigned int mBlockSize; variable 141 size_t mBlockSize; variable
|
/frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/ |
D | LowStorageTest.java | 41 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/ |
D | SparseInputStream.java | 81 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/ |
D | C2SoftFlacEnc.h | 72 uint32_t mBlockSize; variable
|
D | C2SoftFlacEnc.cpp | 256 outCapacity += mBlockSize * frameSize; in process() 402 mBlockSize = FLAC__stream_encoder_get_blocksize(mFlacStreamEncoder); in configureEncoder()
|
/frameworks/av/media/codec2/vndk/ |
D | C2AllocatorIon.cpp | 490 mBlockSize = ::getpagesize(); in C2AllocatorIon() 526 mBlockSize = blockSize; in setUsageMapper() 538 capacity = (capacity + mBlockSize - 1) & ~(mBlockSize - 1); in mapUsage()
|
D | C2DmaBufAllocator.cpp | 324 mBlockSize = blockSize; in setUsageMapper() 336 capacity = (capacity + mBlockSize - 1) & ~(mBlockSize - 1); in mapUsage()
|
/frameworks/av/media/codec2/vndk/include/ |
D | C2AllocatorIon.h | 93 size_t mBlockSize; variable
|
D | C2DmaBufAllocator.h | 108 size_t mBlockSize; variable
|
/frameworks/base/services/core/java/com/android/server/ |
D | DropBoxManagerService.java | 124 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/ |
D | MediaCodecInfo.java | 1781 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()
|