Home | History | Annotate | Download | only in guile

Lines Matching defs:htab

216   htab_t htab = htab_create_alloc (7, hash_fn, eq_fn,
219 return htab;
222 /* Return a pointer to the htab entry for the eq?-able gsmob BASE.
227 gdbscm_find_eqable_gsmob_ptr_slot (htab_t htab, eqable_gdb_smob *base)
229 void **slot = htab_find_slot (htab, base, INSERT);
244 /* Remove BASE from HTAB.
248 It is an error to call this if PTR is not in HTAB (only because it allows
252 gdbscm_clear_eqable_gsmob_ptr_slot (htab_t htab, eqable_gdb_smob *base)
254 void **slot = htab_find_slot (htab, base, NO_INSERT);
257 htab_clear_slot (htab, slot);