Searched refs:rz_szB (Results 1 - 5 of 5) sorted by relevance
/external/valgrind/main/coregrind/m_replacemalloc/ |
H A D | replacemalloc_core.c | 95 Bool VG_(addr_is_in_block)( Addr a, Addr start, SizeT size, SizeT rz_szB ) 97 return ( start - rz_szB <= a && a < start + size + rz_szB );
|
/external/valgrind/main/include/ |
H A D | pub_tool_replacemalloc.h | 53 SizeT size, SizeT rz_szB );
|
/external/valgrind/main/coregrind/ |
H A D | m_mallocfree.c | 78 red zone bytes (depends on Arena.rz_szB, but >= sizeof(void*)) 80 red zone bytes (depends on Arena.rz_szB, but >= sizeof(void*)) 88 excess red zone bytes (if Arena.rz_szB > sizeof(void*)) 90 excess red zone bytes (if Arena.rz_szB > sizeof(void*)) 97 bszB == pszB + 2*sizeof(SizeT) + 2*a->rz_szB 101 bszB == pszB + 2*sizeof(SizeT) + 2*a->rz_szB + VG_MIN_MALLOC_SZB 189 // An arena. 'freelist' is a circular, doubly-linked list. 'rz_szB' is 195 SizeT rz_szB; // Red zone size in bytes member in struct:__anon12303 327 return hp_overhead_szB() + sizeof(SizeT) + a->rz_szB; 332 return a->rz_szB 496 arena_init( ArenaId aid, Char* name, SizeT rz_szB, SizeT min_sblock_szB, SizeT min_unsplittable_sblock_szB ) argument [all...] |
/external/valgrind/main/exp-dhat/ |
H A D | dh_main.c | 810 const Int rz_szB = VG_STACK_REDZONE_SZB; local 846 ? binop(Iop_Sub32, mkexpr(sp), mkU32(rz_szB)) 847 : binop(Iop_Sub64, mkexpr(sp), mkU64(rz_szB)))
|
/external/valgrind/main/helgrind/ |
H A D | hg_main.c | 4120 const Int rz_szB = VG_STACK_REDZONE_SZB; local 4240 ? binop(Iop_Add32, mkexpr(addr_minus_sp), mkU32(rz_szB)) 4241 : binop(Iop_Add64, mkexpr(addr_minus_sp), mkU64(rz_szB)))
|
Completed in 609 milliseconds