Searched refs:ctf_hash_t (Results 1 – 2 of 2) sorted by relevance
/dflybsd-src/contrib/binutils-2.34/libctf/ |
H A D | ctf-hash.c | 294 ctf_hash_t * 298 return (ctf_hash_t *) htab_create_alloc (nelems, (htab_hash) hash_fun, in ctf_hash_create() 303 ctf_hash_size (const ctf_hash_t *hp) in ctf_hash_size() 309 ctf_hash_insert_type (ctf_hash_t *hp, ctf_file_t *fp, uint32_t type, in ctf_hash_insert_type() 339 ctf_hash_define_type (ctf_hash_t *hp, ctf_file_t *fp, uint32_t type, in ctf_hash_define_type() 349 ctf_hash_lookup_type (ctf_hash_t *hp, ctf_file_t *fp __attribute__ ((__unused__)), in ctf_hash_lookup_type() 363 ctf_hash_destroy (ctf_hash_t *hp) in ctf_hash_destroy()
|
H A D | ctf-impl.h | 66 typedef struct ctf_fixed_hash ctf_hash_t; /* Private to ctf-hash.c. */ typedef 94 ctf_hash_t *ctn_readonly; /* Hash table when readonly. */ 376 extern ctf_hash_t *ctf_hash_create (unsigned long, ctf_hash_fun, ctf_hash_eq_fun); 377 extern int ctf_hash_insert_type (ctf_hash_t *, ctf_file_t *, uint32_t, uint32_t); 378 extern int ctf_hash_define_type (ctf_hash_t *, ctf_file_t *, uint32_t, uint32_t); 379 extern ctf_id_t ctf_hash_lookup_type (ctf_hash_t *, ctf_file_t *, const char *); 380 extern uint32_t ctf_hash_size (const ctf_hash_t *); 381 extern void ctf_hash_destroy (ctf_hash_t *);
|