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

1 2

  /external/openfst/src/include/fst/
heap.h 19 // Implementation of a heap as in STL, but allows tracking positions
20 // in heap using a key. The key can be used to do an in-place update of
21 // values in the heap.
34 // \class Heap
35 // \brief A templated heap implementation that support in-place update
38 // The templated heap implementation is a little different from the
39 // STL priority_queue and the *_heap operations in STL. This heap
40 // supports indexing of values in the heap via an associated key.
43 // to the calling functions on heap insert. This key can be used
44 // to later update the specific value in the heap
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
heap.h 0 // heap.h
17 // Implementation of a heap as in STL, but allows tracking positions
18 // in heap using a key. The key can be used to do an in place update of
19 // values in the heap.
30 // \class Heap
31 // \brief A templated heap implementation that support in place update
34 // The templated heap implementation is a little different from the
35 // STL priority_queue and the *_heap operations in STL. The heap
36 // supports indexing of values in the heap via an associated key.
39 // to the calling functions on heap insert. This key can be use
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
heap.py 4 # multiprocessing/heap.py
90 class Heap(object):
239 _heap = Heap()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
heap.py 4 # multiprocessing/heap.py
90 class Heap(object):
239 _heap = Heap()
  /dalvik/hit/src/com/android/hit/
Heap.java 22 public class Heap {
44 // The super-state that this heap is part of
47 public Heap(String name) {
  /external/valgrind/main/exp-sgcheck/
pc_common.c 139 } Heap;
184 xe.XE.Heap.addr = a;
185 xe.XE.Heap.sszB = is_write ? -size : size;
186 xe.XE.Heap.vseg = vseg;
352 Addr a = xe->XE.Heap.addr;
353 Seg* vseg = xe->XE.Heap.vseg;
363 readwrite(xe->XE.Heap.sszB),
364 Word__abs(xe->XE.Heap.sszB) );
373 readwrite(xe->XE.Heap.sszB),
374 Word__abs(xe->XE.Heap.sszB) )
    [all...]
  /external/opencv/cv/src/
cvinpaint.cpp 207 //HEAP::iterator Heap_Iterator;
208 //HEAP Heap;
237 icvCalcFMM(const CvMat *f, CvMat *t, CvPriorityQueueFloat *Heap, bool negate) {
241 while (Heap->Pop(&ii,&jj)) {
261 Heap->Push(i,j,dist);
280 icvTeleaInpaintFMM(const CvMat *f, CvMat *t, CvMat *out, int range, CvPriorityQueueFloat *Heap ) {
286 while (Heap->Pop(&ii,&jj)) {
392 Heap->Push(i,j,dist);
399 while (Heap->Pop(&ii,&jj))
    [all...]
  /art/runtime/gc/
heap.cc 17 #include "heap.h"
69 Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max_free,
122 * causes a lot of GC since we do a GC for alloc whenever the stack is full. When heap
140 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
141 LOG(INFO) << "Heap() entering";
183 // Compute heap capacity. Continuous spaces are sorted in order of Begin().
212 // now. We don't create it earlier to make it clear that you can't use locks during heap
241 if (VLOG_IS_ON(heap) || VLOG_IS_ON(startup)) {
242 LOG(INFO) << "Heap() exiting"
    [all...]
heap.h 95 // How we want to sanity check the heap's correctness.
97 kHeapVerificationNotPermitted, // Too early in runtime start-up for heap to be verified.
99 kVerifyAllFast, // Sanity check all heap accesses with quick(er) tests.
100 kVerifyAll // Sanity check all heap accesses.
104 class Heap {
119 // Create a heap with the requested sizes. The possible empty
122 explicit Heap(size_t initial_size, size_t growth_limit, size_t min_free,
128 ~Heap();
138 // The given reference is believed to be to an object in the Java heap, check the soundness of it.
155 // A weaker test than IsLiveObject or VerifyObject that doesn't require the heap lock
    [all...]
  /dalvik/vm/alloc/
HeapSource.cpp 26 #include "alloc/Heap.h"
40 /* How long to wait after a GC before performing a heap trim
62 struct Heap {
67 /* The largest size that this heap is allowed to grow to.
87 * The lowest address of this heap, inclusive.
92 * The highest address of this heap, exclusive.
97 * If the heap has an mspace, the current high water mark in
104 /* Target ideal heap utilization ratio; range 1..HEAP_UTILIZATION_MAX
108 /* The starting heap size.
112 /* The largest that the heap source as a whole is allowed to grow
260 const Heap *const heap = &hs->heaps[i]; local
334 Heap* heap = NULL; local
425 Heap heap; local
778 Heap *const heap = &hs->heaps[i]; local
803 Heap *const heap = &hs->heaps[i]; local
923 Heap* heap = hs2heap(hs); local
1023 Heap* heap = hs2heap(hs); local
1080 Heap* heap = ptr2heap(gHs, *ptrs); local
1139 Heap *heap = ptr2heap(hs, obj); local
1161 Heap* heap = ptr2heap(gHs, ptr); local
1385 Heap* heap = hs2heap(hs); local
1454 Heap *heap = &hs->heaps[i]; local
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MinMaxPriorityQueue.java 62 * <a href="http://portal.acm.org/citation.cfm?id=6621">min-max heap</a>
64 * it stores elements in a single array, as compact as the traditional heap data
219 private final Heap minHeap;
220 private final Heap maxHeap;
228 this.minHeap = new Heap(ordering);
229 this.maxHeap = new Heap(ordering.reverse());
277 // Adds the element to the end of the heap and bubbles it up to the correct
371 * <p>Occasionally, in order to maintain the heap invariant, it must swap a
374 * first one is the element that was previously at the end of the heap and is
410 Heap heap = heapForIndex(index) local
538 Heap heap; local
    [all...]
  /external/chromium_org/v8/src/
heap.h 49 // Defines all the roots in Heap.
313 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap,
342 explicit PromotionQueue(Heap* heap)
347 heap_(heap) { }
426 Heap* heap_;
459 friend class Heap;
473 Heap* heap_;
485 class Heap {
    [all...]
heap.cc 39 #include "heap-profiler.h"
66 Heap::Heap()
139 previous_survival_rate_trend_(Heap::STABLE),
140 survival_rate_trend_(Heap::STABLE),
196 intptr_t Heap::Capacity() {
209 intptr_t Heap::CommittedMemory() {
223 size_t Heap::CommittedPhysicalMemory() {
237 intptr_t Heap::CommittedMemoryExecutable() {
244 intptr_t Heap::Available()
2086 Heap* heap = map->GetHeap(); local
2226 Heap* heap = map->GetHeap(); local
7277 Heap* heap = Isolate::Current()->heap(); local
    [all...]
  /external/v8/src/
heap.h 48 // Defines all the roots in Heap.
255 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap,
280 // The all static Heap captures the interface to the global object heap.
281 // All JavaScript contexts by this process share the same object heap.
292 explicit PromotionQueue(Heap* heap)
297 heap_(heap) { }
376 Heap* heap_
    [all...]
heap.cc 38 #include "heap-profiler.h"
66 Heap::Heap()
140 previous_survival_rate_trend_(Heap::STABLE),
141 survival_rate_trend_(Heap::STABLE),
183 intptr_t Heap::Capacity() {
195 intptr_t Heap::CommittedMemory() {
207 intptr_t Heap::CommittedMemoryExecutable() {
214 intptr_t Heap::Available() {
226 bool Heap::HasBeenSetUp()
1625 Heap* heap = map->GetHeap(); local
1753 Heap* heap = map->GetHeap(); local
6315 Heap* heap = Isolate::Current()->heap(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.sat4j.core_2.2.0.v20100429.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /external/droiddriver/libs/
guava-13.0.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 

Completed in 421 milliseconds

1 2