Searched refs:rz_szB (Results 1 - 5 of 5) sorted by relevance
/external/valgrind/coregrind/m_replacemalloc/ |
H A D | replacemalloc_core.c | 110 Bool VG_(addr_is_in_block)( Addr a, Addr start, SizeT size, SizeT rz_szB ) 112 return ( start - rz_szB <= a && a < start + size + rz_szB );
|
/external/valgrind/include/ |
H A D | pub_tool_replacemalloc.h | 59 SizeT size, SizeT rz_szB );
|
/external/valgrind/coregrind/ |
H A D | m_mallocfree.c | 79 red zone bytes (depends on Arena.rz_szB, but >= sizeof(void*)) 81 red zone bytes (depends on Arena.rz_szB, but >= sizeof(void*)) 89 excess red zone bytes (if Arena.rz_szB > sizeof(void*)) 91 excess red zone bytes (if Arena.rz_szB > sizeof(void*)) 98 bszB == pszB + 2*sizeof(SizeT) + 2*a->rz_szB 102 bszB == pszB + 2*sizeof(SizeT) + 2*a->rz_szB + VG_MIN_MALLOC_SZB 190 // An arena. 'freelist' is a circular, doubly-linked list. 'rz_szB' is 196 SizeT rz_szB; // Red zone size in bytes member in struct:__anon20061 341 return hp_overhead_szB() + sizeof(SizeT) + a->rz_szB; 346 return a->rz_szB 556 arena_init( ArenaId aid, const HChar* name, SizeT rz_szB, SizeT min_sblock_szB, SizeT min_unsplittable_sblock_szB ) argument [all...] |
/external/valgrind/exp-dhat/ |
H A D | dh_main.c | 809 const Int rz_szB = VG_STACK_REDZONE_SZB; local 845 ? binop(Iop_Sub32, mkexpr(sp), mkU32(rz_szB)) 846 : binop(Iop_Sub64, mkexpr(sp), mkU64(rz_szB)))
|
/external/valgrind/helgrind/ |
H A D | hg_main.c | 4437 const Int rz_szB = VG_STACK_REDZONE_SZB; local 4557 ? binop(Iop_Add32, mkexpr(addr_minus_sp), mkU32(rz_szB)) 4558 : binop(Iop_Add64, mkexpr(addr_minus_sp), mkU64(rz_szB)))
|
Completed in 155 milliseconds