OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mBlockSize
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
SparseTable.java
32
* This holds one value for every
mBlockSize
keys, so it uses 1/
mBlockSize
'th of the full index
39
* mLookupTable is indexed by terminal ID, containing exactly one entry for every
mBlockSize
41
* It contains at index i = j /
mBlockSize
the index in each ArrayList in mContentsTables where
42
* the values for terminals with IDs j to j +
mBlockSize
- 1 are stored as an
mBlockSize
-sized
48
private final int
mBlockSize
;
56
mBlockSize
= blockSize;
57
final int lookupTableSize = initialCapacity /
mBlockSize
58
+ (initialCapacity %
mBlockSize
> 0 ? 1 : 0)
[
all
...]
/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/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 89 milliseconds