Searched defs:allocs (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-profile-stats.h31 return allocs - frees == other.allocs - other.frees &&
35 int32 allocs; // Number of allocation calls. member in struct:HeapProfileStats
/external/libcxxabi/test/
H A Dtest_fallback_malloc.cpp134 const size_t allocs [] = { 124, 60, 252, 60, 4 }; local
141 ptrs = alloc_series ( allocs, sizeof ( allocs ) / sizeof ( allocs[0] ));
151 ptrs = alloc_series ( allocs, sizeof ( allocs ) / sizeof ( allocs[0] ));
159 ptrs = alloc_series ( allocs, sizeof ( allocs ) / sizeof ( allocs[
[all...]
/external/chromium_org/tools/android/heap_profiler/
H A Dheap_profiler.h58 uint32_t max_allocs; // The max number of items in |allocs|.
62 Alloc* allocs; // Start of the the Alloc pool. member in struct:__anon16417
80 // If old_flags != NULL, it will be filled with the flags of the deleted allocs.
H A Dheap_profiler.c19 // 1) A RB-Tree of non-overlapping VM regions (allocs) sorted by their start
42 // static pools (i.e. stack_traces and allocs). The pools are treated as
153 static Alloc allocs[ALLOCS_ENTRIES_MAX]; variable
180 alloc = &allocs[stats->max_allocs];
196 // Deletes all the allocs in the range [addr, addr+size[ dealing with partial
231 // Now scan the allocs linearly deleting chunks (or eventually whole allocs)
267 // still overlap with the next allocs.
376 stats->allocs = &allocs[
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dheap-profile-table.h62 int32 allocs; // Number of allocation calls member in struct:HeapProfileTable::Stats
69 return allocs - frees == x.allocs - x.frees &&
388 return (total_.allocs == 0) && (total_.alloc_size == 0);
409 total_.allocs++;
/external/bison/lib/
H A Dbitset_stats.c52 bitset_stats_info->types[(TYPE)].allocs++
79 unsigned int allocs; member in struct:bitset_type_info_struct
178 stats->allocs, stats->frees,
179 stats->allocs ? 100.0 * stats->frees / stats->allocs : 0);
/external/chromium_org/third_party/libxml/src/
H A Dxmlreader.c120 int allocs; /* what structure were deallocated */ member in struct:_xmlTextReader
2120 ret->allocs = XML_TEXTREADER_CTXT;
2158 ret->allocs |= XML_TEXTREADER_INPUT;
2232 if (reader->allocs & XML_TEXTREADER_CTXT)
2237 if ((reader->input != NULL) && (reader->allocs & XML_TEXTREADER_INPUT))
2277 if ((reader->input != NULL) && (reader->allocs & XML_TEXTREADER_INPUT)) {
2279 reader->allocs -= XML_TEXTREADER_INPUT;
2486 if (reader->allocs & XML_TEXTREADER_INPUT) {
2489 reader->allocs -= XML_TEXTREADER_INPUT;
4951 (reader->allocs
[all...]
/external/libxml2/
H A Dxmlreader.c122 int allocs; /* what structure were deallocated */ member in struct:_xmlTextReader
2142 ret->allocs = XML_TEXTREADER_CTXT;
2180 ret->allocs |= XML_TEXTREADER_INPUT;
2255 if (reader->allocs & XML_TEXTREADER_CTXT)
2260 if ((reader->input != NULL) && (reader->allocs & XML_TEXTREADER_INPUT))
2300 if ((reader->input != NULL) && (reader->allocs & XML_TEXTREADER_INPUT)) {
2302 reader->allocs -= XML_TEXTREADER_INPUT;
2509 if (reader->allocs & XML_TEXTREADER_INPUT) {
2512 reader->allocs -= XML_TEXTREADER_INPUT;
5104 (reader->allocs
[all...]

Completed in 567 milliseconds