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

  /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...]
  /external/webkit/Source/JavaScriptCore/heap/
Heap.cpp 22 #include "Heap.h"
43 Heap::Heap(JSGlobalData* globalData)
58 Heap::~Heap()
64 void Heap::destroy()
91 void Heap::reportExtraMemoryCostSlowCase(size_t cost)
109 void* Heap::allocateSlowCase(size_t bytes)
132 void Heap::protect(JSValue k)
143 bool Heap::unprotect(JSValue k
    [all...]
Heap.h 54 class Heap {
55 WTF_MAKE_NONCOPYABLE(Heap);
57 static Heap* heap(JSValue); // 0 for immediate values
58 static Heap* heap(JSCell*);
64 Heap(JSGlobalData*);
65 ~Heap();
66 void destroy(); // JSGlobalData must call destroy() before ~Heap().
145 inline bool Heap::isMarked(const JSCell* cell
    [all...]
  /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-ptrcheck/
pc_common.c 138 } Heap;
180 xe.XE.Heap.addr = a;
181 xe.XE.Heap.sszB = is_write ? -size : size;
182 xe.XE.Heap.vseg = vseg;
345 Addr a = xe->XE.Heap.addr;
346 Seg* vseg = xe->XE.Heap.vseg;
355 emit( " <kind>Heap</kind>\n");
357 readwrite(xe->XE.Heap.sszB),
358 Word__abs(xe->XE.Heap.sszB) );
367 readwrite(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...]
  /dalvik/vm/alloc/
HeapSource.cpp 25 #include "alloc/Heap.h"
45 /* Number of seconds to wait after a GC before performing a heap trim
67 struct Heap {
72 /* The largest size that this heap is allowed to grow to.
92 * The lowest address of this heap, inclusive.
97 * The highest address of this heap, exclusive.
103 /* Target ideal heap utilization ratio; range 1..HEAP_UTILIZATION_MAX
107 /* The starting heap size.
111 /* The largest that the heap source as a whole is allowed to grow.
116 * The largest size we permit the heap to grow. This value allow
239 const Heap *const heap = &hs->heaps[i]; local
346 Heap heap; local
678 Heap *const heap = &hs->heaps[i]; local
797 Heap* heap = hs2heap(hs); local
862 Heap* heap = hs2heap(hs); local
919 Heap* heap = ptr2heap(gHs, *ptrs); local
1005 Heap *heap = ptr2heap(hs, obj); local
1027 Heap* heap = ptr2heap(gHs, ptr); local
1253 Heap* heap = hs2heap(hs); local
1313 Heap *heap = &hs->heaps[i]; local
    [all...]
  /external/v8/src/
heap.h 43 // TODO(isolates): remove HEAP here
44 #define HEAP (_inline_get_heap_())
45 class Heap;
46 inline Heap* _inline_get_heap_();
49 // Defines all the roots in Heap.
240 typedef String* (*ExternalStringTableUpdaterCallback)(Heap* heap,
243 typedef bool (*DirtyRegionCallback)(Heap* heap,
249 // The all static Heap captures the interface to the global object heap
    [all...]
heap.cc 36 #include "heap-profiler.h"
68 Heap::Heap()
135 previous_survival_rate_trend_(Heap::STABLE),
136 survival_rate_trend_(Heap::STABLE),
162 intptr_t Heap::Capacity() {
174 intptr_t Heap::CommittedMemory() {
186 intptr_t Heap::CommittedMemoryExecutable() {
193 intptr_t Heap::Available() {
205 bool Heap::HasBeenSetup()
1373 Heap* heap = map->heap(); local
4240 Heap* heap = HEAP; local
5263 Heap* heap = HEAP; local
    [all...]
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 

Completed in 131 milliseconds