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

/external/libcxx/test/std/strings/basic.string/string.cons/
H A Dmove_alloc.pass.cpp53 int alloc_count = test_alloc_base::alloc_count; local
65 assert ( test_alloc_base::alloc_count == alloc_count );
/external/jemalloc/test/integration/
H A Diterate.c7 static size_t alloc_count; variable
14 alloc_count++;
33 alloc_count = 0;
63 alloc_count = 0;
95 alloc_count = 0;
/external/protobuf/src/google/protobuf/
H A Darena_test_util.h51 int alloc_count() { return 0; } function in class:google::protobuf::internal::NoHeapChecker::NewDeleteCapture
/external/libcxx/test/support/
H A Dmin_allocator.h84 static size_t alloc_count; member in struct:malloc_allocator_base
89 assert(alloc_count >= dealloc_count);
90 return (alloc_count - dealloc_count);
96 alloc_count = 0;
102 size_t malloc_allocator_base::alloc_count = 0; member in class:malloc_allocator_base
120 ++alloc_count;
H A Dtest_allocator.h38 static int alloc_count; member in class:test_alloc_base
43 int test_alloc_base::alloc_count = 0; member in class:test_alloc_base
89 ++alloc_count;
93 {assert(data_ >= 0); --alloc_count; ::operator delete((void*)p);}
153 ++alloc_count;
157 {assert(data_ >= 0); --alloc_count; ::operator delete((void*)p); }
H A Dcontrolled_allocators.hpp64 int alloc_count = 0; member in struct:AllocController
101 ++alloc_count;
/external/freetype/src/base/
H A Dftdbgmem.c121 FT_Long alloc_count; member in struct:FT_MemTableRec_
690 table->alloc_count >= table->alloc_count_max )
703 table->alloc_count++;
730 table->alloc_count--;
790 table->alloc_count >= table->alloc_count_max )
967 table->alloc_total, table->alloc_count );
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
H A Dir3_ra.c268 unsigned alloc_count; member in struct:ir3_ra_ctx
534 ctx->alloc_count++;
573 ctx->alloc_count += ctx->class_alloc_count[total_class_count];
575 ctx->g = ra_alloc_interference_graph(ctx->set->regs, ctx->alloc_count);
577 ctx->def = rzalloc_array(ctx->g, unsigned, ctx->alloc_count);
578 ctx->use = rzalloc_array(ctx->g, unsigned, ctx->alloc_count);
588 debug_assert(name < ctx->alloc_count);
609 unsigned bitset_words = BITSET_WORDS(ctx->alloc_count);
773 unsigned bitset_words = BITSET_WORDS(ctx->alloc_count);
859 print_bitset("def", bd->def, ctx->alloc_count);
[all...]

Completed in 381 milliseconds