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 156 uint32_t hash_table_size; member in struct:ZipArchive
166 hash_table_size(0),
176 hash_table_size(0),
zip_archive.cc 124 static int64_t EntryToIndex(const ZipString* hash_table, const uint32_t hash_table_size,
128 // NOTE: (hash_table_size - 1) is guaranteed to be non-negative.
129 uint32_t ent = hash & (hash_table_size - 1);
135 ent = (ent + 1) & (hash_table_size - 1);
145 static int32_t AddToHash(ZipString* hash_table, const uint64_t hash_table_size,
148 uint32_t ent = hash & (hash_table_size - 1);
160 ent = (ent + 1) & (hash_table_size - 1);
320 archive->hash_table_size = RoundUpPower2(1 + (num_entries * 4) / 3);
322 reinterpret_cast<ZipString*>(calloc(archive->hash_table_size, sizeof(ZipString)));
325 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.27/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.27/ld/
ld.h 310 unsigned long hash_table_size; member in struct:__anon4946
ldmain.c 313 if (config.hash_table_size != 0)
314 bfd_hash_set_default_size (config.hash_table_size);
    [all...]
lexsup.c     [all...]
  /toolchain/binutils/binutils-2.27/include/opcode/
cgen.h 544 unsigned int hash_table_size;
536 unsigned int hash_table_size; member in struct:cgen_keyword
    [all...]
  /art/runtime/
class_linker.cc 5825 const size_t hash_table_size = num_virtual_methods * 3 + 1; local
    [all...]

Completed in 491 milliseconds