HomeSort by relevance Sort by last modified time
    Searched defs:malloced (Results 1 - 4 of 4) sorted by null

  /external/compiler-rt/lib/asan/
asan_stats.h 29 uptr malloced; member in struct:__asan::AsanStats
asan_stats.cc 39 Printf("Stats: %zuM malloced (%zuM for red zones) by %zu calls\n",
40 malloced>>20, malloced_redzones>>20, mallocs);
105 if (max_malloced_memory < accumulated_stats.malloced) {
106 max_malloced_memory = accumulated_stats.malloced;
125 malloc_stats->size_in_use = accumulated_stats.malloced;
143 uptr malloced = accumulated_stats.malloced; local
145 // Return sane value if malloced < freed due to racy
147 return (malloced > freed) ? malloced - freed : 1
    [all...]
  /external/e2fsprogs/intl/
gettextP.h 92 void *malloced; member in struct:loaded_domain
  /external/mdnsresponder/mDNSShared/
dnssd_clientlib.c 171 uint16_t malloced; // Non-zero if buffer was allocated via malloc() member in struct:_TXTRecordRefRealType
193 txtRec->malloced = 0;
198 if (txtRec->malloced) free(txtRec->buffer);
226 if (txtRec->malloced) free(txtRec->buffer);
229 txtRec->malloced = 1;

Completed in 72 milliseconds