Searched defs:hash_table (Results 1 - 1 of 1) sorted by relevance

/system/core/libziparchive/
H A Dzip_archive.cc306 ZipEntryName* hash_table; member in struct:ZipArchive
314 hash_table(NULL) {}
324 free(hash_table);
402 static int64_t EntryToIndex(const ZipEntryName* hash_table, argument
409 while (hash_table[ent].name != NULL) {
410 if (hash_table[ent].name_length == length &&
411 memcmp(hash_table[ent].name, name, length) == 0) {
425 static int32_t AddToHash(ZipEntryName *hash_table, const uint64_t hash_table_size, argument
434 while (hash_table[ent].name != NULL) {
435 if (hash_table[en
952 const ZipEntryName *hash_table = archive->hash_table; local
[all...]

Completed in 31 milliseconds