OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VgHashTable
(Results
1 - 11
of
11
) sorted by null
/external/valgrind/include/
pub_tool_hashtable.h
52
typedef struct _VgHashTable
VgHashTable
;
58
extern
VgHashTable
*VG_(HT_construct) ( const HChar* name );
61
extern UInt VG_(HT_count_nodes) ( const
VgHashTable
*table );
64
extern void VG_(HT_add_node) (
VgHashTable
*t, void* node );
70
extern void* VG_(HT_lookup) ( const
VgHashTable
*table, UWord key );
73
extern void* VG_(HT_remove) (
VgHashTable
*table, UWord key );
91
extern void* VG_(HT_gen_lookup) ( const
VgHashTable
*table, const void* node,
93
extern void* VG_(HT_gen_remove) (
VgHashTable
*table, const void* node,
99
extern void VG_(HT_print_stats) ( const
VgHashTable
*table, HT_Cmp_t cmp );
105
extern VgHashNode** VG_(HT_to_array) ( const
VgHashTable
*table
[
all
...]
/external/valgrind/coregrind/
m_hashtable.c
69
VgHashTable
*VG_(HT_construct) ( const HChar* name )
74
VgHashTable
*table = VG_(calloc)("hashtable.Hc.1",
85
UInt VG_(HT_count_nodes) ( const
VgHashTable
*table )
90
static void resize (
VgHashTable
*table )
142
/* Puts a new, heap allocated VgHashNode, into the
VgHashTable
. Prepends
144
void VG_(HT_add_node) (
VgHashTable
*table, void* vnode )
160
void* VG_(HT_lookup) ( const
VgHashTable
*table, UWord key )
175
void* VG_(HT_gen_lookup) ( const
VgHashTable
*table, const void* node,
191
void* VG_(HT_remove) (
VgHashTable
*table, UWord key )
214
void* VG_(HT_gen_remove) (
VgHashTable
*table, const void* node, HT_Cmp_t cmp
[
all
...]
m_deduppoolalloc.c
55
VgHashTable
*ht_elements;
/external/valgrind/memcheck/
mc_include.h
96
VgHashTable
*chunks; // chunks associated with this pool
104
VgHashTable
*table);
127
VgHashTable
, because
VgHashTable
allows duplicate keys without complaint.
130
extern
VgHashTable
*MC_(malloc_list);
133
extern
VgHashTable
*MC_(mempool_list);
mc_malloc_wrappers.c
69
VgHashTable
*MC_(malloc_list) = NULL;
73
VgHashTable
*MC_(mempool_list) = NULL;
227
static Bool in_block_list (const
VgHashTable
*block_list, MC_Chunk* mc)
341
Bool is_zeroed, MC_AllocKind kind,
VgHashTable
*table)
[
all
...]
/external/valgrind/drd/
drd_malloc_wrappers.c
64
static
VgHashTable
*s_malloc_list = NULL;
/external/valgrind/coregrind/m_gdbserver/
m_gdbserver.c
200
static
VgHashTable
*gs_addresses = NULL;
[
all
...]
/external/valgrind/coregrind/m_debuginfo/
readdwarf3.c
470
VgHashTable
*ht_abbvs;
483
VgHashTable
*signature_types;
[
all
...]
/external/valgrind/massif/
ms_main.c
[
all
...]
/external/valgrind/helgrind/
hg_main.c
[
all
...]
libhb_core.c
[
all
...]
Completed in 1498 milliseconds