HomeSort by relevance Sort by last modified time
    Searched refs:tableSize (Results 26 - 50 of 220) sorted by null

12 3 4 5 6 7 8 9

  /prebuilts/go/darwin-x86/src/compress/lzw/
writer.go 39 // valid hash table entries at any given point in time. tableSize is 4x that.
40 tableSize = 4 * 1 << 12
41 tableMask = tableSize - 1
73 table [tableSize]uint32
  /prebuilts/go/linux-x86/src/compress/lzw/
writer.go 39 // valid hash table entries at any given point in time. tableSize is 4x that.
40 tableSize = 4 * 1 << 12
41 tableMask = tableSize - 1
73 table [tableSize]uint32
  /frameworks/minikin/libs/minikin/
CmapCoverage.cpp 498 const size_t tableSize = cmap_size - bestTableOffset;
502 success = getCoverageFormat4(coverageVec, tableData, tableSize);
504 success = getCoverageFormat12(coverageVec, tableData, tableSize);
514 const size_t tableSize = cmap_size - vsTableOffset;
515 getCoverageFormat14(out, tableData, tableSize, coverage);
  /external/gptfdisk/
gptcl.cc 33 tableSize = GPT_SIZE;
101 {"resize-table", 'S', POPT_ARG_INT, &tableSize, 'S', "resize partition table", "numparts"},
356 if (SetGPTSize(tableSize) == 0)
gpt.cc     [all...]
  /external/libpcap/msdos/
ndis2.h 238 WORD tableSize;
290 WORD tableSize;
332 WORD tableSize;
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
trie_map.cpp 428 const int tableSize = popCount(bitmapEntry.getBitmap());
429 if (tableSize <= 0) {
433 for (int i = 0; i < tableSize; ++i) {
trie_map.h 57 TableIterationState(const int tableSize, const int tableIndex)
58 : mTableSize(tableSize), mTableIndex(tableIndex), mCurrentIndex(0) {}
  /external/guava/guava/src/com/google/common/collect/
HashBiMap.java 112 int tableSize = Hashing.closedTableSize(expectedSize, LOAD_FACTOR);
113 this.hashTableKToV = createTable(tableSize);
114 this.hashTableVToK = createTable(tableSize);
115 this.mask = tableSize - 1;
LinkedHashMultimap.java 324 int tableSize = Hashing.closedTableSize(expectedValues, VALUE_SET_LOAD_FACTOR);
327 ValueEntry<K, V>[] hashTable = new ValueEntry[tableSize];
  /external/skia/src/core/
SkColorSpace_Base.h 99 int tableSize(int i) const {
  /external/tpm2/
CpriHash.c 136 UINT32 i, tableSize;
138 tableSize = sizeof(g_hashData) / sizeof(g_hashData[0]);
139 for(i = 0; i < tableSize - 1; i++)
144 return &g_hashData[tableSize-1];
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/
AACEncoder.cpp 101 const int32_t tableSize = sizeof(kSampleRateTable) / sizeof(kSampleRateTable[0]);
102 for (int32_t i = 0; i < tableSize; ++i) {
SoftAACEncoder.cpp 365 const int32_t tableSize =
368 for (int32_t i = 0; i < tableSize; ++i) {
  /external/icu/icu4c/source/common/
ucol_swp.cpp 670 header.tableSize= ds->readUInt32(inHeader->tableSize);
678 /* swap the inverse table; tableSize counts uint32_t[3] rows */
679 ds->swapArray32(ds, inBytes+header.table, header.tableSize*3*4,
  /prebuilts/go/darwin-x86/src/compress/flate/
deflatefast.go 12 tableSize = 1 << tableBits // Size of the table.
13 tableMask = tableSize - 1 // Mask for table indices. Redundant, but can eliminate bounds checks.
49 table [tableSize]tableEntry
  /prebuilts/go/linux-x86/src/compress/flate/
deflatefast.go 12 tableSize = 1 << tableBits // Size of the table.
13 tableMask = tableSize - 1 // Mask for table indices. Redundant, but can eliminate bounds checks.
49 table [tableSize]tableEntry
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
LinkedHashMultimap.java 320 int tableSize = Hashing.closedTableSize(expectedValues, VALUE_SET_LOAD_FACTOR);
323 ValueEntry<K, V>[] hashTable = new ValueEntry[tableSize];
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java     [all...]
  /external/llvm/utils/TableGen/
X86DisassemblerTables.cpp 691 const unsigned int tableSize = 16384;
693 "[" << tableSize << "] = {\n";
696 for (unsigned index = 0; index < tableSize; ++index) {
798 if (index < tableSize - 1)
  /external/skia/src/ports/
SkFontHost_mac.cpp     [all...]
  /external/icu/icu4c/source/common/unicode/
utext.h     [all...]
  /external/mesa3d/src/gallium/state_trackers/dri/common/
dri_screen.c 357 for (i = 0; i < (1 << screen->optionCache.tableSize); ++i) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dwrite_1.h 92 UINT32 *tableSize,
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RBBITableBuilder.java     [all...]

Completed in 777 milliseconds

12 3 4 5 6 7 8 9