HomeSort by relevance Sort by last modified time
    Searched full:mallocs (Results 26 - 50 of 149) sorted by null

12 3 4 5 6

  /prebuilts/go/darwin-x86/src/runtime/
malloc_test.go 22 st.Mallocs == 0 || st.Frees == 0 || st.HeapAlloc == 0 || st.HeapSys == 0 ||
31 st.Mallocs > 1e10 || st.Frees > 1e10 || st.HeapAlloc > 1e10 || st.HeapSys > 1e10 ||
mprof.go 55 // is required to obtain a consistent picture of mallocs and frees
57 // The problem is that mallocs come in real time, while frees
59 // naively count them, we would get a skew toward mallocs.
61 // Mallocs are accounted in recent stats.
  /prebuilts/go/linux-x86/src/runtime/
malloc_test.go 22 st.Mallocs == 0 || st.Frees == 0 || st.HeapAlloc == 0 || st.HeapSys == 0 ||
31 st.Mallocs > 1e10 || st.Frees > 1e10 || st.HeapAlloc > 1e10 || st.HeapSys > 1e10 ||
mprof.go 55 // is required to obtain a consistent picture of mallocs and frees
57 // The problem is that mallocs come in real time, while frees
59 // naively count them, we would get a skew toward mallocs.
61 // Mallocs are accounted in recent stats.
  /external/dbus/
HACKING 256 number of mallocs following that malloc (because a fair number of bugs
257 only happen if two or more mallocs fail in a row, e.g. error recovery
259 mallocs to fail.
  /external/llvm/include/llvm/Analysis/
MemoryBuiltins.h 101 /// then return that multiple. For non-array mallocs, the multiple is
102 /// constant 1. Otherwise, return NULL for mallocs whose array size cannot be
  /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 4\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 4\n", allocs)
  /external/eigen/unsupported/test/
jacobisvd.cpp 193 // Check that preallocation avoids subsequent mallocs
  /external/llvm/include/llvm/ADT/
SmallSet.h 26 /// maintained with no mallocs. If the set gets large, we expand to using an
  /external/skia/include/core/
SkDraw.h 44 * To save on mallocs, we allow a flag that tells us that srcPath is
  /ndk/sources/cxx-stl/gabi++/tests/
malloc_lockup.cpp 37 // result of __cxa_get_globals() linked against the special mallocs,
  /external/curl/docs/
ROADMAP.md 67 deprecating the old ones to allow custom mallocs and more
  /external/libxml2/
testOOM.c 73 * mallocs to interfere */
  /external/skia/src/core/
SkConvolver.h 135 // |FilterInstance.data_location| to avoid the mallocs required for storing
  /external/valgrind/coregrind/
pub_core_mallocfree.h 45 CLIENT for the client's mallocs/frees, if the tool replaces glibc's
  /external/dbus/dbus/
dbus-internals.c 1030 /* Run once to see about how many mallocs are involved */
1034 _dbus_verbose ("Running once to count mallocs\n");
1041 _dbus_verbose ("\n=================\n%s: about %d mallocs total\n=================\n",
dbus-memory.c 142 _dbus_verbose ("Will fail mallocs over %ld bytes\n",
219 * Sets how many mallocs to fail when the fail alloc counter reaches
472 if (bytes == 0) /* some system mallocs handle this, some don't */
  /external/dlmalloc/
malloc.h 341 mallocs), which may also improve cache locality in some
391 multiple callocs or mallocs), which may also improve cache locality
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 16 // alias, a global cannot alias a malloc, two different mallocs cannot alias,
561 /// Allocas and Mallocs
  /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/bytes/
buffer_test.go 447 if runtime.GOMAXPROCS(-1) == 1 && m1.Mallocs != m2.Mallocs {
  /prebuilts/go/darwin-x86/src/net/rpc/
server_test.go 512 fmt.Printf("mallocs per rpc round trip: %v\n", countMallocs(dialDirect, t))
522 fmt.Printf("mallocs per HTTP rpc round trip: %v\n", countMallocs(dialHTTP, t))
  /prebuilts/go/darwin-x86/src/runtime/pprof/
pprof.go 459 fmt.Fprintf(w, "# Mallocs = %d\n", s.Mallocs)
  /prebuilts/go/linux-x86/src/bytes/
buffer_test.go 447 if runtime.GOMAXPROCS(-1) == 1 && m1.Mallocs != m2.Mallocs {

Completed in 1204 milliseconds

12 3 4 5 6