HomeSort by relevance Sort by last modified time
    Searched refs:mallocs (Results 1 - 25 of 26) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/testing/
allocs.go 29 mallocs := 0 - memstats.Mallocs
38 mallocs += memstats.Mallocs
40 // Average the mallocs over the runs (not counting the warm-up).
44 return float64(mallocs / uint64(runs))
  /prebuilts/go/linux-x86/src/testing/
allocs.go 29 mallocs := 0 - memstats.Mallocs
38 mallocs += memstats.Mallocs
40 // Average the mallocs over the runs (not counting the warm-up).
44 return float64(mallocs / uint64(runs))
  /external/compiler-rt/lib/asan/
asan_stats.h 28 uptr mallocs; member in struct:__asan::AsanStats
asan_stats.cc 45 malloced>>20, malloced_redzones>>20, mallocs);
54 PrintMallocStatsArray(" mallocs by size class: ", malloced_by_size);
111 malloc_stats->blocks_in_use = stats.mallocs;
asan_allocator.cc 437 thread_stats.mallocs++;
  /prebuilts/go/darwin-x86/src/net/http/internal/
chunked_test.go 124 mallocs := testing.AllocsPerRun(100, func() {
136 if mallocs > 1.5 {
137 t.Errorf("mallocs = %v; want 1", mallocs)
  /prebuilts/go/linux-x86/src/net/http/internal/
chunked_test.go 124 mallocs := testing.AllocsPerRun(100, func() {
136 if mallocs > 1.5 {
137 t.Errorf("mallocs = %v; want 1", mallocs)
  /external/linux-kselftest/tools/testing/selftests/x86/
mpx-mini-test.c 1258 struct one_malloc mallocs[NR_MALLOCS]; variable in typeref:struct:one_malloc
1265 if (!mallocs[index].ptr)
1268 mpx_mini_free(mallocs[index].ptr, mallocs[index].size);
1269 dprintf4("freed[%d]: %p\n", index, mallocs[index].ptr);
1271 free_ptr = (unsigned long)mallocs[index].ptr;
1277 mallocs[index].ptr = NULL;
    [all...]
  /external/curl/tests/
memanalyze.pl 30 my $mallocs=0;
157 $mallocs++;
400 print "Mallocs: $mallocs\n",
406 "Allocations: ".($mallocs + $callocs + $reallocs + $strdups + $wcsdups)."\n";
  /external/valgrind/memcheck/
mc_leakcheck.c 338 MC_Chunk **mallocs, **chunks, *mc; local
345 mallocs = (MC_Chunk**) VG_(HT_to_array)( MC_(malloc_list), &n_mallocs );
347 tl_assert(mallocs == NULL);
351 VG_(ssort)(mallocs, n_mallocs, sizeof(VgHashNode*), compare_MC_Chunks);
371 m = find_chunk_for(mc->data, mallocs, n_mallocs);
380 m = find_chunk_for(mc->data + (mc->szB - 1), mallocs, n_mallocs);
408 chunks[s++] = mallocs[m];
414 VG_(free)(mallocs);
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/gob/
timing_test.go 96 t.Fatalf("mallocs per encode of type Bench: %v; wanted 0\n", allocs)
131 t.Fatalf("mallocs per decode of type Bench: %v; wanted 3\n", allocs)
  /prebuilts/go/linux-x86/src/encoding/gob/
timing_test.go 96 t.Fatalf("mallocs per encode of type Bench: %v; wanted 0\n", allocs)
131 t.Fatalf("mallocs per decode of type Bench: %v; wanted 3\n", allocs)
  /prebuilts/go/darwin-x86/src/runtime/
mprof.go 61 // is required to obtain a consistent picture of mallocs and frees
63 // The problem is that mallocs come in real time, while frees
65 // naively count them, we would get a skew toward mallocs.
67 // Mallocs are accounted in recent stats.
mstats.go 30 nmalloc uint64 // number of mallocs
176 // Mallocs is the cumulative count of heap objects allocated.
177 // The number of live objects is Mallocs - Frees.
178 Mallocs uint64
405 // Mallocs is the cumulative count of heap objects
407 // of allocation is Size*Mallocs. The number of live
408 // objects in this size class is Mallocs - Frees.
409 Mallocs uint64
532 // Total number of mallocs is calculated as number of frees plus number of alive objects.
proc.go     [all...]
  /prebuilts/go/linux-x86/src/runtime/
mprof.go 61 // is required to obtain a consistent picture of mallocs and frees
63 // The problem is that mallocs come in real time, while frees
65 // naively count them, we would get a skew toward mallocs.
67 // Mallocs are accounted in recent stats.
mstats.go 30 nmalloc uint64 // number of mallocs
176 // Mallocs is the cumulative count of heap objects allocated.
177 // The number of live objects is Mallocs - Frees.
178 Mallocs uint64
405 // Mallocs is the cumulative count of heap objects
407 // of allocation is Size*Mallocs. The number of live
408 // objects in this size class is Mallocs - Frees.
409 Mallocs uint64
532 // Total number of mallocs is calculated as number of frees plus number of alive objects.
  /prebuilts/go/darwin-x86/src/net/rpc/
server_test.go 536 fmt.Printf("mallocs per rpc round trip: %v\n", countMallocs(dialDirect, t))
546 fmt.Printf("mallocs per HTTP rpc round trip: %v\n", countMallocs(dialHTTP, t))
  /prebuilts/go/linux-x86/src/net/rpc/
server_test.go 536 fmt.Printf("mallocs per rpc round trip: %v\n", countMallocs(dialDirect, t))
546 fmt.Printf("mallocs per HTTP rpc round trip: %v\n", countMallocs(dialHTTP, t))
  /prebuilts/go/darwin-x86/src/fmt/
fmt_test.go     [all...]
  /prebuilts/go/linux-x86/src/fmt/
fmt_test.go     [all...]
  /prebuilts/go/darwin-x86/misc/cgo/test/
callback.go 145 // variadic call mallocs + writes to
    [all...]
  /prebuilts/go/darwin-x86/src/reflect/
all_test.go     [all...]
  /prebuilts/go/linux-x86/misc/cgo/test/
callback.go 145 // variadic call mallocs + writes to
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
all_test.go     [all...]

Completed in 1313 milliseconds

1 2