Home
last modified time | relevance | path

Searched refs:p_hash_table (Results 1 – 2 of 2) sorted by relevance

/external/libaom/libaom/av1/encoder/
Dhash_motion.c23 static void hash_table_clear_all(hash_table *p_hash_table) { in hash_table_clear_all() argument
24 if (p_hash_table->p_lookup_table == NULL) { in hash_table_clear_all()
29 if (p_hash_table->p_lookup_table[i] != NULL) { in hash_table_clear_all()
30 aom_vector_destroy(p_hash_table->p_lookup_table[i]); in hash_table_clear_all()
31 aom_free(p_hash_table->p_lookup_table[i]); in hash_table_clear_all()
32 p_hash_table->p_lookup_table[i] = NULL; in hash_table_clear_all()
107 void av1_hash_table_init(hash_table *p_hash_table, MACROBLOCK *x) { in av1_hash_table_init() argument
113 p_hash_table->p_lookup_table = NULL; in av1_hash_table_init()
116 void av1_hash_table_destroy(hash_table *p_hash_table) { in av1_hash_table_destroy() argument
117 hash_table_clear_all(p_hash_table); in av1_hash_table_destroy()
[all …]
Dhash_motion.h37 void av1_hash_table_init(hash_table *p_hash_table, struct macroblock *x);
38 void av1_hash_table_destroy(hash_table *p_hash_table);
39 void av1_hash_table_create(hash_table *p_hash_table);
40 int32_t av1_hash_table_count(const hash_table *p_hash_table,
42 Iterator av1_hash_get_first_iterator(hash_table *p_hash_table,
44 int32_t av1_has_exact_match(hash_table *p_hash_table, uint32_t hash_value1,
57 void av1_add_to_hash_map_by_row_with_precal_data(hash_table *p_hash_table,