Searched defs:XArray (Results 1 - 1 of 1) sorted by relevance

/external/valgrind/main/include/
H A Dpub_tool_xarray.h47 typedef struct _XArray XArray; typedef in typeref:struct:_XArray
49 /* Create new XArray, using given allocation and free function, and
52 extern XArray* VG_(newXA) ( void*(*alloc_fn)(HChar*,SizeT),
57 /* Free all memory associated with an XArray. */
58 extern void VG_(deleteXA) ( XArray* );
60 /* Set the comparison function for this XArray. This clears an
63 extern void VG_(setCmpFnXA) ( XArray*, Int (*compar)(void*,void*) );
65 /* Add an element to an XArray. Element is copied into the XArray.
68 extern Word VG_(addToXA) ( XArray*, voi
[all...]

Completed in 231 milliseconds