Home
last modified time | relevance | path

Searched refs:rz_szB (Results 1 – 5 of 5) sorted by relevance

/external/valgrind/main/coregrind/m_replacemalloc/
Dreplacemalloc_core.c95 Bool VG_(addr_is_in_block)( Addr a, Addr start, SizeT size, SizeT rz_szB ) in VG_()
97 return ( start - rz_szB <= a && a < start + size + rz_szB ); in VG_()
/external/valgrind/main/coregrind/
Dm_mallocfree.c196 SizeT rz_szB; // Red zone size in bytes member
332 return hp_overhead_szB() + sizeof(SizeT) + a->rz_szB; in overhead_szB_lo()
337 return a->rz_szB + sizeof(SizeT); in overhead_szB_hi()
505 return arenaId_to_ArenaP(VG_AR_CLIENT)->rz_szB; in VG_()
512 void arena_init ( ArenaId aid, Char* name, SizeT rz_szB, in arena_init() argument
519 vg_assert(rz_szB <= MAX_REDZONE_SZB); in arena_init()
527 rz_szB = VG_(clo_redzone_size); in arena_init()
529 if (VG_(clo_core_redzone_size) != rz_szB) in arena_init()
530 rz_szB = VG_(clo_core_redzone_size); in arena_init()
535 if (rz_szB < sizeof(void*)) rz_szB = sizeof(void*); in arena_init()
[all …]
/external/valgrind/main/include/
Dpub_tool_replacemalloc.h53 SizeT size, SizeT rz_szB );
/external/valgrind/main/exp-dhat/
Ddh_main.c810 const Int rz_szB = VG_STACK_REDZONE_SZB; in addMemEvent() local
846 ? binop(Iop_Sub32, mkexpr(sp), mkU32(rz_szB)) in addMemEvent()
847 : binop(Iop_Sub64, mkexpr(sp), mkU64(rz_szB))) in addMemEvent()
/external/valgrind/main/helgrind/
Dhg_main.c4154 const Int rz_szB = VG_STACK_REDZONE_SZB; in instrument_mem_access() local
4274 ? binop(Iop_Add32, mkexpr(addr_minus_sp), mkU32(rz_szB)) in instrument_mem_access()
4275 : binop(Iop_Add64, mkexpr(addr_minus_sp), mkU64(rz_szB))) in instrument_mem_access()