HomeSort by relevance Sort by last modified time
    Searched full:tablesize (Results 26 - 50 of 127) sorted by null

12 3 4 5 6

  /external/aac/libMpegTPEnc/include/
tp_data.h 312 UINT sf_index, tableSize=sizeof(SamplingRateTable)/sizeof(UINT);
314 for (sf_index=0; sf_index<tableSize; sf_index++) {
318 if (sf_index>tableSize-1) {
319 return tableSize-1;
  /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/darwin-x86/src/strings/
replace.go 124 // genericReplacer.tableSize will be 5. Node n0's table will be
163 t.table = make([]*trieNode, r.tableSize)
212 if int(index) == r.tableSize {
233 // tableSize is the size of a trie node's lookup table. It is the number
235 tableSize int
251 r.tableSize += int(b)
257 r.mapping[i] = byte(r.tableSize)
264 r.root.table = make([]*trieNode, r.tableSize)
320 if index == r.tableSize || r.root.table[index] == nil {
  /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
  /prebuilts/go/linux-x86/src/strings/
replace.go 124 // genericReplacer.tableSize will be 5. Node n0's table will be
163 t.table = make([]*trieNode, r.tableSize)
212 if int(index) == r.tableSize {
233 // tableSize is the size of a trie node's lookup table. It is the number
235 tableSize int
251 r.tableSize += int(b)
257 r.mapping[i] = byte(r.tableSize)
264 r.root.table = make([]*trieNode, r.tableSize)
320 if index == r.tableSize || r.root.table[index] == nil {
  /external/bison/src/
uniqstr.c 119 hash_uniqstr (void const *m, size_t tablesize)
121 return hash_string (m, tablesize);
symtab.c 611 hash_symbol (const symbol *m, size_t tablesize)
614 return ((uintptr_t) m->tag) % tablesize;
618 hash_semantic_type (const semantic_type *m, size_t tablesize)
621 return ((uintptr_t) m->tag) % tablesize;
625 hash_symbol_hasher (void const *m, size_t tablesize)
627 return hash_symbol (m, tablesize);
631 hash_semantic_type_hasher (void const *m, size_t tablesize)
633 return hash_semantic_type (m, tablesize);
  /external/guava/guava/src/com/google/common/collect/
ImmutableSet.java 189 int tableSize = chooseTableSize(n);
190 Object[] table = new Object[tableSize];
191 int mask = tableSize - 1;
217 } else if (tableSize != chooseTableSize(uniques)) {
251 int tableSize = Integer.highestOneBit(setSize - 1) << 1;
252 while (tableSize * DESIRED_LOAD_FACTOR < setSize) {
253 tableSize <<= 1;
255 return tableSize;
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;
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfprintf.c 92 static int __grow_type_table(unsigned char **typetable, int *tablesize);
1149 int tablesize; /* current size of type table */ local
1160 ((nextarg >= tablesize) ? \
1161 __grow_type_table(&typetable, &tablesize) : 0, \
1204 tablesize = STATIC_ARG_TBL_SIZE;
    [all...]
vfwprintf.c 89 static int __grow_type_table(unsigned char **typetable, int *tablesize);
1118 int tablesize; /* current size of type table */ local
1127 ((nextarg >= tablesize) ? \
1128 __grow_type_table(&typetable, &tablesize) : 0, \
1171 tablesize = STATIC_ARG_TBL_SIZE;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/common/
xmlconfig.c 111 GLuint size = 1 << cache->tableSize, mask = size - 1;
119 hash = (hash >> (16-cache->tableSize/2)) & mask;
137 GLuint size = 1 << cache->tableSize;
704 info->tableSize = log2size;
897 cache->tableSize = info->tableSize;
898 cache->values = MALLOC ((1<<info->tableSize) * sizeof (driOptionValue));
904 (1<<info->tableSize) * sizeof (driOptionValue));
999 GLuint i, size = 1 << info->tableSize;
    [all...]
xmlconfig.h 76 GLuint tableSize;
  /external/libpcap/msdos/
ndis2.h 238 WORD tableSize;
290 WORD tableSize;
332 WORD tableSize;
  /external/icu/icu4c/source/common/
ucol_data.h 77 uint32_t tableSize;
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSetTest.java 196 private void verifyTableSize(int inputSize, int setSize, int tableSize) {
204 tableSize, ((RegularImmutableSet<Integer>) set).table.length);
  /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) {
  /external/gptfdisk/
gptcl.cc 33 tableSize = GPT_SIZE;
100 {"resize-table", 'S', POPT_ARG_INT, &tableSize, 'S', "resize partition table", "numparts"},
352 if (SetGPTSize(tableSize) == 0)
  /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) {}
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
CatchStructs.java 202 int tableSize = table.size();
203 for (int i = 0; i < tableSize; i++) {
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 199 int tableSize = table.size();
200 for (int i = 0; i < tableSize; i++) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
CatchStructs.java 200 int tableSize = table.size();
201 for (int i = 0; i < tableSize; i++) {
  /frameworks/av/media/libstagefright/
AACWriter.cpp 200 const int tableSize =
204 for (int index = 0; index < tableSize; ++index) {
  /system/extras/verity/
VerityVerifier.java 285 int tableSize = fromle(img.readInt());
287 table = new byte[tableSize];

Completed in 662 milliseconds

12 3 4 5 6