HomeSort by relevance Sort by last modified time
    Searched refs:Frees (Results 1 - 14 of 14) sorted by null

  /prebuilts/go/darwin-x86/src/runtime/
malloc_test.go 26 st.Mallocs == 0 || st.Frees == 0 || st.HeapAlloc == 0 || st.HeapSys == 0 ||
35 st.Mallocs > 1e10 || st.Frees > 1e10 || st.HeapAlloc > 1e10 || st.HeapSys > 1e10 ||
mstats.go 31 nfree uint64 // number of frees
177 // The number of live objects is Mallocs - Frees.
180 // Frees is the cumulative count of heap objects freed.
181 Frees uint64
408 // objects in this size class is Mallocs - Frees.
411 // Frees is the cumulative count of heap objects freed
413 Frees uint64
529 // During program execution we only count number of frees and amount of freed memory.
532 // Total number of mallocs is calculated as number of frees plus number of alive objects.
  /prebuilts/go/linux-x86/src/runtime/
malloc_test.go 26 st.Mallocs == 0 || st.Frees == 0 || st.HeapAlloc == 0 || st.HeapSys == 0 ||
35 st.Mallocs > 1e10 || st.Frees > 1e10 || st.HeapAlloc > 1e10 || st.HeapSys > 1e10 ||
mstats.go 31 nfree uint64 // number of frees
177 // The number of live objects is Mallocs - Frees.
180 // Frees is the cumulative count of heap objects freed.
181 Frees uint64
408 // objects in this size class is Mallocs - Frees.
411 // Frees is the cumulative count of heap objects freed
413 Frees uint64
529 // During program execution we only count number of frees and amount of freed memory.
532 // Total number of mallocs is calculated as number of frees plus number of alive objects.
  /external/llvm/lib/Fuzzer/
FuzzerLoop.cpp 125 // than frees (using the sanitizer malloc hooks) and only then try to call lsan.
129 Frees = 0;
131 // Returns true if there were more mallocs than frees.
132 bool Stop() { return Mallocs > Frees; }
134 std::atomic<size_t> Frees;
143 AllocTracer.Frees++;
608 if (!HasMoreMallocsThanFrees) return; // mallocs==frees, a leak is unlikely.
  /prebuilts/go/darwin-x86/test/bench/garbage/
parser.go 125 fmt.Printf("%10d %10d %10d\n", s.Size, s.Mallocs, s.Frees)
  /prebuilts/go/linux-x86/test/bench/garbage/
parser.go 125 fmt.Printf("%10d %10d %10d\n", s.Size, s.Mallocs, s.Frees)
  /prebuilts/go/darwin-x86/src/runtime/pprof/
pprof.go 548 fmt.Fprintf(w, "# Frees = %d\n", s.Frees)
  /prebuilts/go/linux-x86/src/runtime/pprof/
pprof.go 548 fmt.Fprintf(w, "# Frees = %d\n", s.Frees)
  /external/llvm/bindings/go/llvm/
ir.go     [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
plive.go 525 // Frees a control flow graph (a slice of *BasicBlocks) and all of its leaf
1073 // frees within the loop.
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
plive.go 525 // Frees a control flow graph (a slice of *BasicBlocks) and all of its leaf
1073 // frees within the loop.
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]
  /external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
llvm.mli     [all...]

Completed in 308 milliseconds