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

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
sparse_table.h 35 mBlockSize(blockSize), mDataSize(dataSize) {}
57 const int mBlockSize;
sparse_table.cpp 77 for (int i = 0; i < mBlockSize; ++i) {
89 return contentTablePos / mDataSize / mBlockSize;
93 return (id / mBlockSize) * INDEX_SIZE;
97 const int offset = id % mBlockSize;
98 return (index * mBlockSize + offset) * mDataSize;
  /frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
LowStorageTest.java 41 private int mBlockSize = 0;
54 mBlockSize = (int) (stat.getBlockSize());
56 startSizeTextView.setText(Long.toString((totalBlocks * mBlockSize) / BYTE_SIZE));
86 byte buf[] = new byte[mBlockSize * NO_OF_BLOCKS_TO_FILL];
92 byte buf[] = new byte[(noOfBlockToFill % NO_OF_BLOCKS_TO_FILL) * mBlockSize];
125 freeSizeTextView.setText(Long.toString((availableBlocks * mBlockSize) / BYTE_SIZE));
  /frameworks/base/services/core/java/com/android/server/
DropBoxManagerService.java 93 private int mBlockSize = 0;
191 byte[] buffer = new byte[mBlockSize];
208 int bufferSize = mBlockSize;
592 mBlockSize = mStatFs.getBlockSize();
613 EntryFile entry = new EntryFile(file, mBlockSize);
675 late.file, mDropBoxDir, late.tag, t++, late.flags, mBlockSize));
685 enrollEntry(new EntryFile(temp, mDropBoxDir, tag, t, flags, mBlockSize));
729 int maximum = quotaKb * 1024 / mBlockSize;
779 return mCachedQuotaBlocks * mBlockSize;

Completed in 97 milliseconds