/external/jemalloc/src/ |
H A D | huge.c | 50 bool is_zeroed; local 66 * Copy zero into is_zeroed and pass the copy to chunk_alloc(), so that 69 is_zeroed = zero; 83 usize, alignment, &is_zeroed)) == NULL) { 88 extent_node_init(node, arena, ret, usize, is_zeroed, true); 103 if (!is_zeroed)
|
/external/valgrind/drd/ |
H A D | drd_malloc_wrappers.c | 70 static void* new_block(ThreadId tid, SizeT size, SizeT align, Bool is_zeroed) argument 77 if (is_zeroed) 148 return new_block(tid, n, VG_(clo_alignment), /*is_zeroed*/False); 154 return new_block(tid, n, align, /*is_zeroed*/False); 161 /*is_zeroed*/True); 255 return new_block(tid, n, VG_(clo_alignment), /*is_zeroed*/False); 267 return new_block(tid, n, VG_(clo_alignment), /*is_zeroed*/False);
|
/external/valgrind/memcheck/ |
H A D | mc_malloc_wrappers.c | 341 Bool is_zeroed, MC_AllocKind kind, VgHashTable *table) 354 if (is_zeroed) { 369 if (is_zeroed) 386 /*is_zeroed*/False, MC_AllocMalloc, MC_(malloc_list)); 396 /*is_zeroed*/False, MC_AllocNew, MC_(malloc_list)); 406 /*is_zeroed*/False, MC_AllocNewVec, MC_(malloc_list)); 416 /*is_zeroed*/False, MC_AllocMalloc, MC_(malloc_list)); 427 /*is_zeroed*/True, MC_AllocMalloc, MC_(malloc_list)); 678 void MC_(create_mempool)(Addr pool, UInt rzB, Bool is_zeroed) argument 684 pool, rzB, is_zeroed); 339 new_block( ThreadId tid, Addr p, SizeT szB, SizeT alignB, Bool is_zeroed, MC_AllocKind kind, VgHashTable *table) argument [all...] |
H A D | mc_include.h | 95 Bool is_zeroed; // allocations from this pool are zeroed member in struct:_MC_Mempool 103 Bool is_zeroed, MC_AllocKind kind, 108 void MC_(create_mempool) ( Addr pool, UInt rzB, Bool is_zeroed );
|
H A D | mc_main.c | 6729 Bool is_zeroed = (Bool)arg[4]; local 6731 MC_(new_block) ( tid, p, sizeB, /*ignored*/0, is_zeroed, 6768 Bool is_zeroed = (Bool)arg[3]; local 6770 MC_(create_mempool) ( pool, rzB, is_zeroed );
|
/external/valgrind/exp-sgcheck/ |
H A D | h_main.c | 304 SizeT size, SizeT alignment, Bool is_zeroed ) 311 if (is_zeroed) VG_(memset)((void*)p, 0, size); 353 /*is_zeroed*/False ); 359 /*is_zeroed*/False ); 365 /*is_zeroed*/False ); 371 /*is_zeroed*/False ); 377 /*is_zeroed*/True );
|
/external/regex-re2/util/ |
H A D | valgrind.h | 4330 - It marks the block as being addressable and undefined (if 'is_zeroed' is 4331 not set), or addressable and defined (if 'is_zeroed' is set). This 4338 Valgrind will spot block overruns. `is_zeroed' indicates if the memory is 4390 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ 4394 addr, sizeB, rzB, is_zeroed, 0); \ 4408 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ 4412 pool, rzB, is_zeroed, 0, 0); \
|
/external/v8/src/third_party/valgrind/ |
H A D | valgrind.h | 3845 - It marks the block as being addressable and undefined (if 'is_zeroed' is 3846 not set), or addressable and defined (if 'is_zeroed' is set). This 3853 Valgrind will spot block overruns. `is_zeroed' indicates if the memory is 3919 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ 3922 addr, sizeB, rzB, is_zeroed, 0) 3941 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ 3944 pool, rzB, is_zeroed, 0, 0)
|
/external/valgrind/exp-dhat/ |
H A D | dh_main.c | 452 Bool is_zeroed ) 468 if (is_zeroed) VG_(memset)(p, 0, req_szB); 622 return new_block( tid, NULL, szB, VG_(clo_alignment), /*is_zeroed*/False ); 627 return new_block( tid, NULL, szB, VG_(clo_alignment), /*is_zeroed*/False ); 632 return new_block( tid, NULL, szB, VG_(clo_alignment), /*is_zeroed*/False ); 637 return new_block( tid, NULL, m*szB, VG_(clo_alignment), /*is_zeroed*/True );
|
/external/valgrind/massif/ |
H A D | ms_main.c | 1546 Bool is_zeroed ) 1558 if (is_zeroed) VG_(memset)(p, 0, req_szB); 1739 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False ); 1744 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False ); 1749 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False ); 1754 return alloc_and_record_block( tid, m*szB, VG_(clo_alignment), /*is_zeroed*/True );
|
/external/valgrind/include/ |
H A D | valgrind.h | 6913 - It marks the block as being addressable and undefined (if 'is_zeroed' is 6914 not set), or addressable and defined (if 'is_zeroed' is set). This 6921 Valgrind will spot block overruns. `is_zeroed' indicates if the memory is 6987 #define VALGRIND_MALLOCLIKE_BLOCK(addr, sizeB, rzB, is_zeroed) \ 6989 addr, sizeB, rzB, is_zeroed, 0) 7006 #define VALGRIND_CREATE_MEMPOOL(pool, rzB, is_zeroed) \ 7008 pool, rzB, is_zeroed, 0, 0)
|
/external/valgrind/helgrind/ |
H A D | hg_main.c | 4137 SizeT szB, SizeT alignB, Bool is_zeroed ) 4147 if (is_zeroed) 4162 evh__new_mem_heap( p, szB, is_zeroed ); 4175 /*is_zeroed*/False ); 4180 /*is_zeroed*/False ); 4185 /*is_zeroed*/False ); 4190 /*is_zeroed*/False ); 4195 /*is_zeroed*/True );
|