Home | History | Annotate | Download | only in include

Lines Matching refs:VG_

42 extern void* VG_(malloc)         ( const HChar* cc, SizeT nbytes );
43 extern void VG_(free) ( void* p );
44 extern void* VG_(calloc) ( const HChar* cc, SizeT n, SizeT bytes_per_elem );
45 extern void* VG_(realloc) ( const HChar* cc, void* p, SizeT size );
46 extern void VG_(realloc_shrink)( void* ptr, SizeT size );
47 extern HChar* VG_(strdup) ( const HChar* cc, const HChar* s );
52 extern void VG_(out_of_memory_NORETURN) ( const HChar* who, SizeT szB );
54 // VG_(perm_malloc) is for allocating small blocks which are
56 // VG_(perm_malloc) returns memory which is (at least) aligned
60 // In particular, do *not* call VG_(free) or VG_(realloc).
65 extern void* VG_(perm_malloc) ( SizeT nbytes, Int align );