Home | History | Annotate | Download | only in include

Lines Matching refs:VG_

52 /* Make a new table.  Allocates the memory with VG_(calloc)(), so can
53 be freed with VG_(free)(). The table starts small but will
56 extern VgHashTable VG_(HT_construct) ( HChar* name );
59 extern Int VG_(HT_count_nodes) ( VgHashTable table );
62 extern void VG_(HT_add_node) ( VgHashTable t, void* node );
67 extern void* VG_(HT_lookup) ( VgHashTable table, UWord key );
70 extern void* VG_(HT_remove) ( VgHashTable table, UWord key );
74 array must be freed with VG_(free). */
75 extern VgHashNode** VG_(HT_to_array) ( VgHashTable t, /*OUT*/ UInt* n_elems );
78 extern void VG_(HT_ResetIter) ( VgHashTable table );
91 extern void* VG_(HT_Next) ( VgHashTable table );
94 extern void VG_(HT_destruct) ( VgHashTable t );