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

/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dsoft_rss_limit_mb_test.cc24 static char *allocs[kMaxNumAllocs]; variable
36 allocs[j] = (char*)malloc(kAllocSize);
37 if (allocs[j])
38 memset(allocs[j], -1, kAllocSize);
49 free(allocs[j]);
/external/libcxxabi/test/
H A Dtest_fallback_malloc.pass.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/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/libxml2/
H A Dxmlreader.c126 int allocs; /* what structure were deallocated */ member in struct:_xmlTextReader
2159 ret->allocs = XML_TEXTREADER_CTXT;
2197 ret->allocs |= XML_TEXTREADER_INPUT;
2272 if (reader->allocs & XML_TEXTREADER_CTXT)
2277 if ((reader->input != NULL) && (reader->allocs & XML_TEXTREADER_INPUT))
2317 if ((reader->input != NULL) && (reader->allocs & XML_TEXTREADER_INPUT)) {
2319 reader->allocs -= XML_TEXTREADER_INPUT;
2526 if (reader->allocs & XML_TEXTREADER_INPUT) {
2529 reader->allocs -= XML_TEXTREADER_INPUT;
5139 (reader->allocs
[all...]

Completed in 318 milliseconds