HomeSort by relevance Sort by last modified time
    Searched refs:heap (Results 276 - 300 of 1276) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/test/bench/garbage/
tree2.go 26 heapsize = flag.Int64("heapsize", 100*1024*1024, "size of the heap in bytes")
31 heap *Object
39 heap, _ = buildTree(float64(objsize), float64(*heapsize), 0)
40 fmt.Printf("*** built heap: %.0f MB; (%d objects * %d bytes)\n",
30 heap *Object var
  /prebuilts/go/darwin-x86/test/
escape_calls.go 21 var x [32]byte // ERROR "moved to heap: x$"
22 g(&f(x[:])[0]) // ERROR "&f\(x\[:\]\)\[0\] escapes to heap$" "x escapes to heap$"
53 f([]string{s}) // ERROR "\[\]string literal escapes to heap"
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue13587.go 8 // that have escaped to the heap.
  /prebuilts/go/linux-x86/test/bench/garbage/
tree2.go 26 heapsize = flag.Int64("heapsize", 100*1024*1024, "size of the heap in bytes")
31 heap *Object
39 heap, _ = buildTree(float64(objsize), float64(*heapsize), 0)
40 fmt.Printf("*** built heap: %.0f MB; (%d objects * %d bytes)\n",
30 heap *Object var
  /prebuilts/go/linux-x86/test/
escape_calls.go 21 var x [32]byte // ERROR "moved to heap: x$"
22 g(&f(x[:])[0]) // ERROR "&f\(x\[:\]\)\[0\] escapes to heap$" "x escapes to heap$"
53 f([]string{s}) // ERROR "\[\]string literal escapes to heap"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue13587.go 8 // that have escaped to the heap.
  /system/libhidl/libhidlcache/include/hidlcache/
MemoryDealer.h 36 /// On success, K is positive and points to a subregion K ~ (K+size-1) in the heap.
67 virtual sp<IMemory> heap();
70 /// @param heap It must be acquired with mapMemory(memory) with its
72 HidlMemoryDealer(sp<IMemory> heap, const hidl_memory& memory);
  /external/v8/src/heap/
objects-visiting.h 9 #include "src/heap/embedder-tracing.h"
10 #include "src/heap/heap.h"
11 #include "src/heap/spaces.h"
136 DCHECK(Heap::kMinObjectSizeInWords * kPointerSize <= object_size);
144 base + (object_size >> kPointerSizeLog2) - Heap::kMinObjectSizeInWords,
187 STATIC_ASSERT((generic - base + Heap::kMinObjectSizeInWords) == 10);
262 INLINE(static void VisitPointers(Heap* heap, HeapObject* object,
265 StaticVisitor::VisitPointer(heap, object, p)
    [all...]
array-buffer-tracker.cc 5 #include "src/heap/array-buffer-tracker.h"
6 #include "src/heap/array-buffer-tracker-inl.h"
7 #include "src/heap/heap.h"
78 void ArrayBufferTracker::FreeDeadInNewSpace(Heap* heap) {
79 DCHECK_EQ(heap->gc_state(), Heap::HeapState::SCAVENGE);
80 for (Page* page : PageRange(heap->new_space()->FromSpaceStart(),
81 heap->new_space()->FromSpaceEnd()))
    [all...]
object-stats.h 11 #include "src/heap/heap.h"
12 #include "src/heap/objects-visiting.h"
20 explicit ObjectStats(Heap* heap) : heap_(heap) { ClearObjectStats(); }
94 Heap* heap() { return heap_; } function in class:v8::internal::ObjectStats
118 Heap* heap_;
135 ObjectStatsCollector(Heap* heap, ObjectStats* stats
    [all...]
page-parallel-job.h 16 class Heap;
23 // - static bool ProcessPageInParallel(Heap* heap,
29 // - static void FinalizePageSequentially(Heap* heap,
42 PageParallelJob(Heap* heap, CancelableTaskManager* cancelable_task_manager,
44 : heap_(heap),
138 Task(Heap* heap, Item* items, int num_items, int start_index
    [all...]
  /external/v8/src/runtime/
runtime-collections.cc 26 return isolate->heap()->the_hole_value();
64 return isolate->heap()->undefined_value();
75 return isolate->heap()->undefined_value();
84 return isolate->heap()->undefined_value();
100 return isolate->heap()->undefined_value();
136 details->set(0, isolate->heap()->ToBoolean(holder->HasMore()));
159 return isolate->heap()->undefined_value();
168 return isolate->heap()->undefined_value();
179 return isolate->heap()->undefined_value();
196 return isolate->heap()->undefined_value()
    [all...]
runtime-object.cc 171 if (maybe.IsNothing()) return isolate->heap()->exception();
173 if (maybe.FromJust()) return isolate->heap()->true_value();
180 return isolate->heap()->false_value();
190 if (maybe.IsNothing()) return isolate->heap()->exception();
192 return isolate->heap()->ToBoolean(maybe.FromJust());
202 if (!result.IsJust()) return isolate->heap()->exception();
203 return isolate->heap()->ToBoolean(result.FromJust());
206 return isolate->heap()->ToBoolean(
209 : key->Equals(isolate->heap()->length_string()));
215 return isolate->heap()->false_value()
    [all...]
  /external/compiler-rt/test/asan/TestCases/Linux/
swapcontext_annotation.cc 157 char *heap = new char[kStackSize + 1]; local
167 ret += Run(argc - 1, 0, heap);
168 ret += Run(argc - 1, 1, heap);
169 ret += Run(argc - 1, 2, heap);
174 delete[] heap;
  /external/v8/src/ic/
ic-inl.h 65 Heap* heap = target->GetHeap(); local
68 Assembler::set_target_address_at(heap->isolate(), address, constant_pool,
70 if (heap->gc_state() == Heap::MARK_COMPACT) {
71 heap->mark_compact_collector()->RecordCodeTargetPatch(address, target);
73 heap->incremental_marking()->RecordCodeTargetPatch(address, target);
  /external/v8/src/builtins/
builtins-reflect.cc 41 return isolate->heap()->exception();
47 MAYBE_RETURN(result, isolate->heap()->exception());
71 MAYBE_RETURN(result, isolate->heap()->exception());
119 MAYBE_RETURN(found, isolate->heap()->exception());
120 if (!found.FromJust()) return isolate->heap()->undefined_value();
162 : isolate->heap()->exception();
180 MAYBE_RETURN(result, isolate->heap()->exception());
221 MAYBE_RETURN(result, isolate->heap()->exception());
248 MAYBE_RETURN(result, isolate->heap()->exception());
273 MAYBE_RETURN(result, isolate->heap()->exception())
    [all...]
  /external/v8/src/profiler/
sampling-heap-profiler.cc 5 #include "src/profiler/sampling-heap-profiler.h"
13 #include "src/heap/heap.h"
52 Heap* heap, StringsStorage* names, uint64_t rate, int stack_depth,
54 : isolate_(heap->isolate()),
55 heap_(heap),
58 heap->isolate()->random_number_generator())),
61 heap->isolate()->random_number_generator())),
69 heap->new_space()->AddAllocationObserver(new_space_observer_.get())
    [all...]
  /external/valgrind/massif/tests/
big-alloc.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
48 99.96% (94,371,840B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
52 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
deep-A.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
48 98.04% (3,600B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
59 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
deep-B.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
48 98.04% (3,600B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
57 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
deep-C.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
48 98.04% (3,600B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
54 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
deep-D.post.exp 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
48 98.04% (3,600B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
52 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B)
  /prebuilts/go/darwin-x86/src/runtime/pprof/
protomem.go 14 // writeHeapProto writes the current heap profile in protobuf format to w.
31 // For heap profiles, all stack
69 // scaleHeapSample adjusts the data from a heap Sample to
71 // data. heap profiles are a sampling of the memory allocations
74 // profile. heap profiles rely on a poisson process to determine
  /prebuilts/go/linux-x86/src/runtime/pprof/
protomem.go 14 // writeHeapProto writes the current heap profile in protobuf format to w.
31 // For heap profiles, all stack
69 // scaleHeapSample adjusts the data from a heap Sample to
71 // data. heap profiles are a sampling of the memory allocations
74 // profile. heap profiles rely on a poisson process to determine
  /external/v8/src/
execution.cc 28 isolate_->heap()->SetStackLimits();
36 isolate_->heap()->SetStackLimits();
238 isolate->heap()->termination_exception()) {
284 isolate_->heap()->SetStackLimits();
385 isolate_->heap()->SetStackLimits();
395 isolate_->heap()->SetStackLimits();
437 isolate_->heap()->SetStackLimits();
442 if (thread_local_.Initialize(isolate_)) isolate_->heap()->SetStackLimits();
458 isolate_->heap()->HandleGCRequest();
466 isolate_->heap()->MonotonicallyIncreasingTimeInMs()
    [all...]

Completed in 585 milliseconds

<<11121314151617181920>>