Searched refs:VgHashTable (Results 1 – 7 of 7) sorted by relevance
/external/valgrind/main/include/ |
D | pub_tool_hashtable.h | 50 typedef struct _VgHashTable * VgHashTable; typedef 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 ); 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 );
|
/external/valgrind/main/coregrind/ |
D | m_hashtable.c | 67 VgHashTable VG_(HT_construct) ( HChar* name ) in VG_() 72 VgHashTable table = VG_(calloc)("hashtable.Hc.1", in VG_() 83 Int VG_(HT_count_nodes) ( VgHashTable table ) in VG_() 88 static void resize ( VgHashTable table ) in resize() 142 void VG_(HT_add_node) ( VgHashTable table, void* vnode ) in VG_() 158 void* VG_(HT_lookup) ( VgHashTable table, UWord key ) in VG_() 172 void* VG_(HT_remove) ( VgHashTable table, UWord key ) in VG_() 197 VgHashNode** VG_(HT_to_array) ( VgHashTable table, /*OUT*/ UInt* n_elems ) in VG_() 220 void VG_(HT_ResetIter)(VgHashTable table) in VG_() 228 void* VG_(HT_Next)(VgHashTable table) in VG_() [all …]
|
/external/valgrind/main/memcheck/ |
D | mc_include.h | 77 VgHashTable chunks; // chunks associated with this pool 85 VgHashTable table); 105 extern VgHashTable MC_(malloc_list); 108 extern VgHashTable MC_(mempool_list);
|
D | mc_malloc_wrappers.c | 66 VgHashTable MC_(malloc_list) = NULL; 70 VgHashTable MC_(mempool_list) = NULL; 191 Bool is_zeroed, MC_AllocKind kind, VgHashTable table) in MC_()
|
/external/valgrind/main/drd/ |
D | drd_malloc_wrappers.c | 65 static VgHashTable s_malloc_list = NULL;
|
/external/valgrind/main/massif/ |
D | ms_main.c | 1520 static VgHashTable malloc_list = NULL; // HP_Chunks
|
/external/valgrind/main/helgrind/ |
D | hg_main.c | 3719 static VgHashTable hg_mallocmeta_table = NULL;
|