Home
last modified time | relevance | path

Searched refs:malloced (Results 1 – 14 of 14) 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/e2fsprogs/intl/
DgettextP.h92 void *malloced; member
Dloadmsgcat.c1030 domain->malloced = NULL; in _nl_load_domain()
1192 domain->malloced = mem; in _nl_load_domain()
1375 free (domain->malloced); in _nl_load_domain()
1407 free (domain->malloced); in _nl_unload_domain()
/external/v8/tools/heap-stats/
Dtrace-file-reader.js279 data[entry.isolate].gcs[entry.id].malloced = entry.zone;
/external/elfutils/libelf/
DChangeLog311 free rawdata_base when malloced. Set ELF_F_MALLOCED for scn->flags.
313 malloced.
/external/v8/src/
Disolate.cc2416 void PrintMemoryJSON(size_t malloced, size_t pooled) { in Throw() argument
2428 reinterpret_cast<void*>(heap_->isolate()), time, malloced, pooled); in Throw()
/external/u-boot/common/
Ddlmalloc.src85 Each malloced chunk has a hidden overhead of 4 bytes holding size
129 to malloced memory stay within their bounds.
/external/elfutils/libdwfl/
DChangeLog25 for overlap. Don't error when section data was malloced, not mmapped.
/external/elfutils/libdw/
DChangeLog1749 NEW_LINE macro. Free malloced line records if any at the end.
/external/strace/
DChangeLog46529 make a malloced copy instead. Explain "NOMMU + -D bug"
48468 The code was also buggy, it can free non-malloced pointer.