/external/valgrind/memcheck/ |
H A D | mc_malloc_wrappers.c | 432 void die_and_free_mem ( ThreadId tid, MC_Chunk* mc, SizeT rzB ) 443 MC_(make_mem_noaccess)( mc->data-rzB, mc->szB + 2*rzB ); 475 void MC_(handle_free) ( ThreadId tid, Addr p, UInt rzB, MC_AllocKind kind ) argument 490 die_and_free_mem ( tid, mc, rzB ); 640 SizeT oldSizeB, SizeT newSizeB, SizeT rzB) 655 MC_(make_mem_noaccess)( p + newSizeB, oldSizeB - newSizeB + rzB ); 661 if (rzB > 0) 662 MC_(make_mem_noaccess)( p + newSizeB, rzB ); 678 void MC_(create_mempool)(Addr pool, UInt rzB, Boo argument 639 handle_resizeInPlace(ThreadId tid, Addr p, SizeT oldSizeB, SizeT newSizeB, SizeT rzB) argument [all...] |
H A D | mc_include.h | 94 SizeT rzB; // pool red-zone size member in struct:_MC_Mempool 106 Addr p, UInt rzB, MC_AllocKind kind ); 108 void MC_(create_mempool) ( Addr pool, UInt rzB, Bool is_zeroed ); 158 SizeT oldSizeB, SizeT newSizeB, SizeT rzB);
|
H A D | mc_main.c | 6010 UInt rzB = arg[3]; local 6015 if (rzB > 0) { 6016 MC_(make_mem_noaccess) ( p - rzB, rzB); 6017 MC_(make_mem_noaccess) ( p + sizeB, rzB); 6025 UInt rzB = arg[4]; local 6027 MC_(handle_resizeInPlace) ( tid, p, oldSizeB, newSizeB, rzB ); 6032 UInt rzB = arg[2]; local 6034 MC_(handle_free) ( tid, p, rzB, MC_AllocCustom ); 6049 UInt rzB local [all...] |
H A D | mc_errors.c | 1011 Bool addr_is_in_MC_Chunk_with_REDZONE_SZB(MC_Chunk* mc, Addr a, SizeT rzB) argument 1014 rzB ); 1230 if (addr_is_in_MC_Chunk_with_REDZONE_SZB(mc, a, mp->rzB)) {
|
/external/v8/src/third_party/valgrind/ |
H A D | valgrind.h | 3850 redzone), 'sizeB' is its size. 'rzB' is the redzone size if the allocator 3919 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ 3922 addr, sizeB, rzB, is_zeroed, 0) 3927 #define VALGRIND_RESIZEINPLACE_BLOCK(addr, oldSizeB, newSizeB, rzB) \ 3930 addr, oldSizeB, newSizeB, rzB, 0) 3935 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ 3938 addr, rzB, 0, 0, 0) 3941 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ 3944 pool, rzB, is_zeroed, 0, 0)
|
/external/regex-re2/util/ |
H A D | valgrind.h | 4335 redzone), 'sizeB' is its size. 'rzB' is the redzone size if the allocator 4390 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ 4394 addr, sizeB, rzB, is_zeroed, 0); \ 4400 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ 4404 addr, rzB, 0, 0, 0); \ 4408 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ 4412 pool, rzB, is_zeroed, 0, 0); \
|
/external/valgrind/include/ |
H A D | valgrind.h | 6906 redzone), 'sizeB' is its size. 'rzB' is the redzone size if the allocator 6975 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ 6977 addr, sizeB, rzB, is_zeroed, 0) 6982 #define VALGRIND_RESIZEINPLACE_BLOCK(addr, oldSizeB, newSizeB, rzB) \ 6984 addr, oldSizeB, newSizeB, rzB, 0) 6989 #define VALGRIND_FREELIKE_BLOCK(addr, rzB) \ 6991 addr, rzB, 0, 0, 0) 6994 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ 6996 pool, rzB, is_zeroed, 0, 0)
|