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

  /system/core/libziparchive/
zip_archive_private.h 166 uint32_t hash_table_size; member in struct:ZipArchive
176 hash_table_size(0),
186 hash_table_size(0),
zip_archive.cc 118 static int64_t EntryToIndex(const ZipString* hash_table, const uint32_t hash_table_size,
122 // NOTE: (hash_table_size - 1) is guaranteed to be non-negative.
123 uint32_t ent = hash & (hash_table_size - 1);
129 ent = (ent + 1) & (hash_table_size - 1);
139 static int32_t AddToHash(ZipString* hash_table, const uint64_t hash_table_size,
142 uint32_t ent = hash & (hash_table_size - 1);
154 ent = (ent + 1) & (hash_table_size - 1);
312 archive->hash_table_size = RoundUpPower2(1 + (num_entries * 4) / 3);
314 reinterpret_cast<ZipString*>(calloc(archive->hash_table_size, sizeof(ZipString)));
317 archive->hash_table_size, sizeof(ZipString))
    [all...]
  /external/mesa3d/src/mesa/main/
get_hash_generator.py 45 hash_table_size = 1024 variable
50 print "typedef const unsigned short table_t[%d];\n" % (hash_table_size)
85 dense_table = [0] * hash_table_size
90 for i in range(0, hash_table_size, row_size):
130 index = hash_val & (hash_table_size - 1)
  /toolchain/binutils/binutils-2.25/opcodes/
cgen-opc.c 177 if (search->current_hash == search->table->hash_table_size)
193 while (search->current_hash < search->table->hash_table_size)
220 return hash % kt->hash_table_size;
228 return value % kt->hash_table_size;
243 kt->hash_table_size = size;
  /toolchain/binutils/binutils-2.25/ld/
ld.h 280 unsigned long hash_table_size; member in struct:__anon116350
lexsup.c     [all...]
ldmain.c 312 if (config.hash_table_size != 0)
313 bfd_hash_set_default_size (config.hash_table_size);
    [all...]
  /toolchain/binutils/binutils-2.25/include/opcode/
cgen.h 540 unsigned int hash_table_size;
532 unsigned int hash_table_size; member in struct:cgen_keyword
    [all...]
  /art/runtime/
class_linker.cc 5925 const size_t hash_table_size = num_virtual_methods * 3 + 1; local
    [all...]

Completed in 533 milliseconds