Lines Matching refs:dedup_table
3028 * index (`btf_dedup->dedup_table`), which maps type descriptor's signature hash
3122 struct hashmap *dedup_table;
3149 hashmap__for_each_key_entry(d->dedup_table, node, hash)
3153 return hashmap__append(d->dedup_table, hash, type_id);
3185 hashmap__free(d->dedup_table);
3186 d->dedup_table = NULL;
3230 d->dedup_table = hashmap__new(hash_fn, btf_dedup_equal_fn, NULL);
3231 if (IS_ERR(d->dedup_table)) {
3232 err = PTR_ERR(d->dedup_table);
3233 d->dedup_table = NULL;
3740 * canonical and is added into `btf_dedup->dedup_table` as another candidate.
4286 * as canonical for itself and is added into btf_dedup->dedup_table hash map
4381 * btf_dedup->dedup_table as another possible canonical representative.
4518 /* we won't need d->dedup_table anymore */
4519 hashmap__free(d->dedup_table);
4520 d->dedup_table = NULL;