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

  /external/squashfs-tools/squashfs-tools/
unsquashfs.h 79 struct hash_table_entry { struct
82 struct hash_table_entry *next;
234 extern struct hash_table_entry *inode_table_hash[65536],
246 extern int lookup_entry(struct hash_table_entry **, long long);
unsquashfs.c 61 struct hash_table_entry *inode_table_hash[65536], *directory_table_hash[65536];
599 void add_entry(struct hash_table_entry *hash_table[], long long start,
603 struct hash_table_entry *hash_table_entry; local
605 hash_table_entry = malloc(sizeof(struct hash_table_entry));
606 if(hash_table_entry == NULL)
609 hash_table_entry->start = start;
610 hash_table_entry->bytes = bytes;
611 hash_table_entry->next = hash_table[hash]
619 struct hash_table_entry *hash_table_entry; local
    [all...]

Completed in 345 milliseconds