Home
last modified time | relevance | path

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

/aosp12/frameworks/av/media/libeffects/dynamicsproc/dsp/
H A DDPFrequency.cpp60 mBlockSize = blockSize; in initBuffers()
66 input.resize(mBlockSize); in initBuffers()
67 output.resize(mBlockSize); in initBuffers()
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()
144 mBlockSize = MIN_BLOCKSIZE; in configure()
153 mOverlapSize = std::min(overlapSize, mBlockSize/2); in configure()
624 return mBlockSize; in processFirstStages()
[all …]
H A DDPFrequency.h107 unsigned int mBlockSize; variable
141 size_t mBlockSize; variable
/aosp12/frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
H A 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()
/aosp12/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
H A Dsparse_table.cpp77 for (int i = 0; i < mBlockSize; ++i) { in set()
89 return contentTablePos / mDataSize / mBlockSize; in getIndexFromContentTablePos()
93 return (id / mBlockSize) * INDEX_SIZE; in getPosInIndexTable()
97 const int offset = id % mBlockSize; in getPosInContentTable()
98 return (index * mBlockSize + offset) * mDataSize; in getPosInContentTable()
H A Dsparse_table.h34 mBlockSize(blockSize), mDataSize(dataSize) {} in SparseTable()
56 const int mBlockSize; variable
/aosp12/frameworks/base/packages/DynamicSystemInstallationService/src/com/android/dynsystem/
H A 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()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/crypto/
H A DIkeCipher.java79 private final int mBlockSize; field in IkeCipher
99 mBlockSize = blockSize == BLOCK_SIZE_NOT_SPECIFIED ? mCipher.getBlockSize() : blockSize; in IkeCipher()
174 return mBlockSize; in getBlockSize()
/aosp12/frameworks/av/media/codec2/vndk/
H A DC2AllocatorIon.cpp497 mBlockSize = ::getpagesize(); in C2AllocatorIon()
533 mBlockSize = blockSize; in setUsageMapper()
545 capacity = (capacity + mBlockSize - 1) & ~(mBlockSize - 1); in mapUsage()
H A DC2DmaBufAllocator.cpp324 mBlockSize = blockSize; in setUsageMapper()
336 capacity = (capacity + mBlockSize - 1) & ~(mBlockSize - 1); in mapUsage()
/aosp12/frameworks/base/services/core/java/com/android/server/
H A 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()
/aosp12/frameworks/av/media/codec2/components/flac/
H A DC2SoftFlacEnc.h72 uint32_t mBlockSize; variable
H A DC2SoftFlacEnc.cpp256 outCapacity += mBlockSize * frameSize; in process()
402 mBlockSize = FLAC__stream_encoder_get_blocksize(mFlacStreamEncoder); in configureEncoder()
/aosp12/frameworks/av/media/codec2/vndk/include/
H A DC2AllocatorIon.h93 size_t mBlockSize; variable
H A DC2DmaBufAllocator.h108 size_t mBlockSize; variable
/aosp12/frameworks/base/media/java/android/media/
H A 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()