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

/external/valgrind/main/include/
H A Dpub_tool_xarray.h49 typedef struct _XArray XArray; typedef in typeref:struct:_XArray
53 /* Create new XArray, using given allocation and free function, and
56 extern XArray* VG_(newXA) ( void*(*alloc_fn)(const HChar*,SizeT),
61 /* Free all memory associated with an XArray. */
62 extern void VG_(deleteXA) ( XArray* );
64 /* Set the comparison function for this XArray. This clears an
67 extern void VG_(setCmpFnXA) ( XArray*, XACmpFn_t);
69 /* Add an element to an XArray. Element is copied into the XArray.
72 extern Word VG_(addToXA) ( XArray*, cons
[all...]

Completed in 1045 milliseconds