Searched refs:rz_szB (Results 1 – 5 of 5) sorted by relevance
/external/valgrind/coregrind/m_replacemalloc/ |
D | replacemalloc_core.c | 120 Bool VG_(addr_is_in_block)( Addr a, Addr start, SizeT size, SizeT rz_szB ) in VG_() 122 return ( start - rz_szB <= a && a < start + size + rz_szB ); in VG_()
|
/external/valgrind/coregrind/ |
D | m_mallocfree.c | 199 SizeT rz_szB; // Red zone size in bytes member 345 return hp_overhead_szB() + sizeof(SizeT) + a->rz_szB; in overhead_szB_lo() 350 return a->rz_szB + sizeof(SizeT); in overhead_szB_hi() 505 hp_overhead_szB() + sizeof(SizeT) + a->rz_szB); in mkBhdrAccess() 506 VALGRIND_MAKE_MEM_DEFINED (b + get_bszB(b) - a->rz_szB - sizeof(SizeT), in mkBhdrAccess() 507 a->rz_szB + sizeof(SizeT)); in mkBhdrAccess() 516 a->rz_szB); in mkBhdrNoAccess() 517 VALGRIND_MAKE_MEM_NOACCESS (b + get_bszB(b) - sizeof(SizeT) - a->rz_szB, in mkBhdrNoAccess() 518 a->rz_szB); in mkBhdrNoAccess() 562 void arena_init ( ArenaId aid, const HChar* name, SizeT rz_szB, in arena_init() argument [all …]
|
/external/valgrind/include/ |
D | pub_tool_replacemalloc.h | 59 SizeT size, SizeT rz_szB );
|
/external/valgrind/exp-dhat/ |
D | dh_main.c | 809 const Int rz_szB = VG_STACK_REDZONE_SZB; in addMemEvent() local 845 ? binop(Iop_Sub32, mkexpr(sp), mkU32(rz_szB)) in addMemEvent() 846 : binop(Iop_Sub64, mkexpr(sp), mkU64(rz_szB))) in addMemEvent()
|
/external/valgrind/helgrind/ |
D | hg_main.c | 4445 const Int rz_szB = VG_STACK_REDZONE_SZB; in instrument_mem_access() local 4565 ? binop(Iop_Add32, mkexpr(addr_minus_sp), mkU32(rz_szB)) in instrument_mem_access() 4566 : binop(Iop_Add64, mkexpr(addr_minus_sp), mkU64(rz_szB))) in instrument_mem_access()
|