Home
last modified time | relevance | path

Searched refs:malloced (Results 1 – 12 of 12) sorted by relevance

/external/compiler-rt/lib/asan/
Dasan_stats.cc45 malloced>>20, malloced_redzones>>20, mallocs); in Print()
97 if (max_malloced_memory < stats->malloced) { in GetAccumulatedStats()
98 max_malloced_memory = stats->malloced; in GetAccumulatedStats()
112 malloc_stats->size_in_use = stats.malloced; in FillMallocStatistics()
142 uptr malloced = stats.malloced; in __sanitizer_get_current_allocated_bytes() local
146 return (malloced > freed) ? malloced - freed : 1; in __sanitizer_get_current_allocated_bytes()
161 uptr total_used = stats.malloced in __sanitizer_get_free_bytes()
Dasan_stats.h29 uptr malloced; member
Dasan_allocator.cc438 thread_stats.malloced += size; in Allocate()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
D2-1.c67 void *malloced; in main() local
72 malloced = malloc(page_size); in main()
74 if (malloced == NULL) { in main()
79 fill_mem(malloced, page_size); in main()
132 if (check_mem(malloced, page_size)) { in main()
138 free(malloced); in main()
/external/mdnsresponder/mDNSShared/
Ddnssd_clientlib.c171 uint16_t malloced; // Non-zero if buffer was allocated via malloc() member
193 txtRec->malloced = 0; in TXTRecordCreate()
198 if (txtRec->malloced) free(txtRec->buffer); in TXTRecordDeallocate()
226 if (txtRec->malloced) free(txtRec->buffer); in TXTRecordSetValue()
229 txtRec->malloced = 1; in TXTRecordSetValue()
/external/coreboot/payloads/libpayload/libcbfs/
Dcbfs.c157 bool malloced = false; in do_load() local
186 malloced = true; in do_load()
192 if (malloced) in do_load()
/external/elfutils/libelf/
DChangeLog627 free rawdata_base when malloced. Set ELF_F_MALLOCED for scn->flags.
629 malloced.
/external/giflib/
DNEWS355 malloced memory.
/external/elfutils/libdwfl/
DChangeLog628 for overlap. Don't error when section data was malloced, not mmapped.
/external/elfutils/libdw/
DChangeLog2184 NEW_LINE macro. Free malloced line records if any at the end.
/external/mesa3d/docs/relnotes/
D19.1.0.rst4469 - svga: Avoid bouncing buffer data in malloced buffers
/external/strace/
DChangeLog46529 make a malloced copy instead. Explain "NOMMU + -D bug"
48468 The code was also buggy, it can free non-malloced pointer.