Home | History | Annotate | Download | only in memcheck

Lines Matching refs:p_old

534 void* MC_(realloc) ( ThreadId tid, void* p_old, SizeT new_szB )
549 old_mc = VG_(HT_remove) ( MC_(malloc_list), (UWord)p_old );
551 MC_(record_free_error) ( tid, (Addr)p_old );
559 tl_assert((Addr)p_old == old_mc->data);
595 MC_(copy_address_range_state) ( (Addr)p_old, a_new, new_szB );
596 VG_(memcpy)((void*)a_new, p_old, new_szB);
602 MC_(copy_address_range_state) ( (Addr)p_old, a_new, old_szB );
603 VG_(memcpy)((void*)a_new, p_old, old_szB);
629 VG_(memset)((void*)p_old, MC_(clo_free_fill), old_szB);