Searched defs:heap (Results 76 - 100 of 148) sorted by relevance

123456

/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Ddeflate.h46 /* maximum heap size */
206 int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */ member in struct:internal_state
207 int heap_len; /* number of elements in the heap */
209 /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
210 * The same heap array is used to build all trees.
/external/qemu/distrib/zlib-1.2.8/
H A Ddeflate.h46 /* maximum heap size */
206 int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */ member in struct:internal_state
207 int heap_len; /* number of elements in the heap */
209 /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
210 * The same heap array is used to build all trees.
/external/srec/srec/Semproc/src/
H A DSemanticProcessorImpl.c83 static ESR_ReturnCode sem_partial_path_list_init(sem_partial_path* heap, int nheap);
84 static sem_partial_path* sem_partial_path_create(sem_partial_path* heap);
85 static ESR_ReturnCode sem_partial_path_free(sem_partial_path* heap, sem_partial_path* path);
251 sem_partial_path* heap,
303 pp_branch = sem_partial_path_create(heap);
325 ESR_ReturnCode rc = checkpath_forwardByWordID(semgraph, heap, atokfna, pp_branch, currentWord);
340 sem_partial_path_free(heap, pp->next);
357 sem_partial_path* heap,
415 pp_branch = sem_partial_path_create(heap);
436 ESR_ReturnCode rc = checkpath_forward(semgraph, heap, atokfn
250 checkpath_forwardByWordID(SR_SemanticGraphImpl* semgraph, sem_partial_path* heap, arc_token* atoken_start, sem_partial_path *pp, const wordID* wordIDs) argument
356 checkpath_forward(SR_SemanticGraphImpl* semgraph, sem_partial_path* heap, arc_token* atoken_start, sem_partial_path *pp, const LCHAR* transcription) argument
488 sem_partial_path heap[MAX_SEM_PARTIAL_PATHS]; local
794 sem_partial_path heap[MAX_SEM_PARTIAL_PATHS]; local
1089 sem_partial_path_list_init(sem_partial_path* heap, int nheap) argument
1098 sem_partial_path_create(sem_partial_path* heap) argument
1153 sem_partial_path_free(sem_partial_path* heap, sem_partial_path* path) argument
[all...]
/external/zlib/src/
H A Ddeflate.h46 /* maximum heap size */
206 int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */ member in struct:internal_state
207 int heap_len; /* number of elements in the heap */
209 /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
210 * The same heap array is used to build all trees.
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DThreadState.cpp32 #include "platform/heap/ThreadState.h"
36 #include "platform/heap/AddressSanitizer.h"
37 #include "platform/heap/CallbackStack.h"
38 #include "platform/heap/Handle.h"
39 #include "platform/heap/Heap.h"
282 // Statically unfold the heap initialization loop so the compiler statically
283 // knows the heap index when using HeapIndexTrait.
384 // First add the main thread's heap pages to the orphaned pool.
401 // We start shutting down the heap if there is no running thread
436 // pointers into the heap owne
876 BaseHeap* heap = m_heaps[i]; local
[all...]
H A DThreadState.h35 #include "platform/heap/AddressSanitizer.h"
112 // storage to get the heap in which to allocate an object of that type
135 // of typed heap related methods.
137 // To create a new typed heap add a H(<ClassName>) to the
152 // Values used for iteration of heap segments.
174 // HeapIndexTrait defines properties for each heap in the TypesHeaps enum.
199 // HeapTypeTrait defines which heap to use for particular types.
206 // Each typed-heap maps the respective type to its heap.
215 // for a Blink heap an
546 BaseHeap* heap(int index) const { return m_heaps[index]; } function in class:blink::ThreadState
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPictureFlat.h196 * objects being flattened contain bitmaps they are stored in this heap
197 * and the flattenable stores the index to the bitmap on the heap.
497 // Without a bitmap heap, we'll flatten bitmaps into paints. That's never what you want.
600 void setBitmapStorage(SkBitmapHeap* heap) { argument
601 this->setBitmapHeap(heap);
/external/chromium_org/v8/src/arm64/
H A Dassembler-arm64-inl.h878 void RelocInfo::Visit(Heap* heap) { argument
881 StaticVisitor::VisitEmbeddedPointer(heap, this);
883 StaticVisitor::VisitCodeTarget(heap, this);
885 StaticVisitor::VisitCell(heap, this);
888 } else if (heap->isolate()->debug()->has_break_points() &&
893 StaticVisitor::VisitDebugTarget(heap, this);
/external/chromium_org/v8/src/
H A Delements.cc157 from_base->GetIsolate()->heap()->fixed_cow_array_map());
169 Heap* heap = from_base->GetHeap(); local
171 heap->the_hole_value(), length);
189 Heap* heap = from->GetHeap(); local
190 if (!heap->InNewSpace(to)) {
191 heap->RecordWrites(to->address(),
195 heap->incremental_marking()->RecordWrites(to);
206 Heap* heap = from->GetHeap(); local
215 Heap* heap = from->GetHeap(); local
217 heap
270 Heap* heap = from_base->GetHeap(); local
925 Heap* heap = obj->GetHeap(); local
[all...]
H A Dheap-snapshot-generator.h70 // HeapEntry instances represent an entity from the heap (or a special
139 // HeapSnapshot represents a single heap snapshot. It is stored in
141 // HeapSnapshots. All HeapSnapshots share strings copied from JS heap
206 explicit HeapObjectsMap(Heap* heap);
208 Heap* heap() const { return heap_; } function in class:v8::internal::HeapObjectsMap
266 // in any kind of heap memory.
279 // real heap objects and their representations in heap snapshots.
327 // An implementation of V8 heap graph extractor.
533 Heap* heap);
[all...]
H A Dobjects-debug.cc9 #include "src/heap/objects-visiting.h"
295 Heap* heap = GetHeap(); local
296 CHECK(!heap->InNewSpace(this));
300 instance_size() < heap->Capacity()));
579 Heap* heap = GetHeap(); local
583 CHECK(number == heap->nan_value());
592 if (map() == heap->undefined_map()) {
593 CHECK(this == heap->undefined_value());
594 } else if (map() == heap->the_hole_map()) {
595 CHECK(this == heap
1071 Heap* heap = GetHeap(); local
[all...]
H A Dprofile-generator.cc27 StringsStorage::StringsStorage(Heap* heap) argument
28 : hash_seed_(heap->HashSeed()), names_(StringsMatch) {
435 CpuProfilesCollection::CpuProfilesCollection(Heap* heap) argument
436 : function_and_resource_names_(heap),
H A Dbuiltins.cc14 #include "src/heap/mark-compact.h"
15 #include "src/heap-profiler.h"
168 return isolate->heap()->undefined_value(); // Make compiler happy.
173 return isolate->heap()->undefined_value();
185 static bool ArrayPrototypeHasNoElements(Heap* heap, argument
191 if (array_proto->elements() != heap->empty_fixed_array()) return false;
193 PrototypeIterator iter(heap->isolate(), array_proto);
199 if (array_proto->elements() != heap->empty_fixed_array()) return false;
222 Heap* heap = isolate->heap(); local
267 IsJSArrayFastElementMovingAllowed(Heap* heap, JSArray* receiver) argument
450 Heap* heap = isolate->heap(); local
499 Heap* heap = isolate->heap(); local
564 Heap* heap = isolate->heap(); local
706 Heap* heap = isolate->heap(); local
929 Heap* heap = isolate->heap(); local
1034 FindHidden(Heap* heap, Object* object, FunctionTemplateInfo* type) argument
1054 TypeCheck(Heap* heap, int argc, Object** argv, FunctionTemplateInfo* info) argument
1094 Heap* heap = isolate->heap(); local
1181 Heap* heap = isolate->heap(); local
[all...]
/external/chromium_org/v8/src/heap/
H A Dheap-inl.h12 #include "src/heap/heap.h"
13 #include "src/heap/store-buffer.h"
14 #include "src/heap/store-buffer-inl.h"
15 #include "src/heap-profiler.h"
47 SemiSpace::AssertValidRange(target->GetIsolate()->heap()->new_space()->top(),
403 // know that object has the heap object tag.
417 // Only the latter two contain non-map-word pointers to heap objects.
538 Heap* heap = object->GetHeap(); local
539 DCHECK(heap
748 GCCallbacksScope(Heap* heap) argument
[all...]
H A Dincremental-marking.cc7 #include "src/heap/incremental-marking.h"
12 #include "src/heap/objects-visiting.h"
13 #include "src/heap/objects-visiting-inl.h"
19 IncrementalMarking::IncrementalMarking(Heap* heap) argument
20 : heap_(heap),
53 IncrementalMarking* marking = isolate->heap()->incremental_marking();
179 Heap* heap = map->GetHeap(); local
192 VisitPointersWithAnchor(heap, HeapObject::RawField(object, 0),
197 scan_until_end = heap->incremental_marking()->marking_deque()->IsFull();
201 heap
223 INLINE(static void VisitPointer(Heap* heap, Object** p)) argument
231 INLINE(static void VisitPointers(Heap* heap, Object** start, Object** end)) argument
241 INLINE(static void VisitPointersWithAnchor(Heap* heap, Object** anchor, Object** start, Object** end)) argument
253 INLINE(static void MarkObject(Heap* heap, Object* obj)) argument
265 INLINE(static bool MarkObjectWithoutPush(Heap* heap, Object* obj)) argument
463 PatchIncrementalMarkingRecordWriteStubs( Heap* heap, RecordWriteStub::Mode mode) argument
[all...]
/external/chromium_org/v8/src/ic/arm64/
H A Dic-arm64.cc260 Heap* heap = masm->isolate()->heap(); local
275 Handle<Map> arguments_map(heap->sloppy_arguments_elements_map());
320 Handle<Map> fixed_array_map(masm->isolate()->heap()->fixed_array_map());
569 __ Sub(receiver, receiver, kHeapObjectTag); // Remove the heap tag.
/external/chromium_org/v8/src/ic/ia32/
H A Dic-ia32.cc244 Heap* heap = masm->isolate()->heap(); local
260 Handle<Map> arguments_map(heap->sloppy_arguments_elements_map());
298 Handle<Map> fixed_array_map(masm->isolate()->heap()->fixed_array_map());
/external/chromium_org/v8/src/ic/x64/
H A Dic-x64.cc658 Heap* heap = masm->isolate()->heap(); local
674 Handle<Map> arguments_map(heap->sloppy_arguments_elements_map());
714 Handle<Map> fixed_array_map(masm->isolate()->heap()->fixed_array_map());
/external/chromium_org/v8/src/ic/x87/
H A Dic-x87.cc246 Heap* heap = masm->isolate()->heap(); local
262 Handle<Map> arguments_map(heap->sloppy_arguments_elements_map());
300 Handle<Map> fixed_array_map(masm->isolate()->heap()->fixed_array_map());
/external/chromium_org/v8/test/cctest/
H A Dcctest.h133 static i::Heap* heap() { function in class:CcTest
134 return i_isolate()->heap();
138 return reinterpret_cast<TestHeap*>(i_isolate()->heap());
483 // Helper function that simulates a full new-space in the heap.
492 node->set_size(space->heap(), new_linear_size);
496 // Helper function that simulates a full old-space in the heap.
506 static inline void SimulateIncrementalMarking(i::Heap* heap) { argument
507 i::MarkCompactCollector* collector = heap->mark_compact_collector();
508 i::IncrementalMarking* marking = heap->incremental_marking();
536 i::Isolate::Current()->heap()
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-simplified-lowering.cc55 Heap* heap() { return this->isolate()->heap(); } function in class:SimplifiedLoweringTester
261 CHECK_EQ(t.isolate()->heap()->true_value(), result);
440 CHECK_EQ(t.isolate()->heap()->true_value(), result);
462 CHECK_EQ(t.isolate()->heap()->true_value(), result);
503 CHECK_EQ(t.isolate()->heap()->true_value(), result);
/external/skia/src/core/
H A DSkPictureFlat.h193 * objects being flattened contain bitmaps they are stored in this heap
194 * and the flattenable stores the index to the bitmap on the heap.
494 // Without a bitmap heap, we'll flatten bitmaps into paints. That's never what you want.
597 void setBitmapStorage(SkBitmapHeap* heap) { argument
598 this->setBitmapHeap(heap);
/external/chromium_org/third_party/skia/src/pipe/
H A DSkGPipeWrite.cpp93 void setBitmapStorage(SkBitmapHeap* heap) { argument
94 this->setBitmapHeap(heap);
136 // Look through the flattenable heap.
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dtcmalloc.cc323 PageHeap::Stats pageheap; // Stats from page heap
411 "MALLOC: + %12" PRIu64 " (%7.1f MiB) Bytes in page heap freelist\n"
465 // append page heap info
598 // the page heap releases at the span granularity, and spans are of wildly
627 "%warn This heap profile does not have any data in it, because\n"
628 "%warn the application was run with heap sampling turned off.\n"
864 // append page heap info
978 // Grab the stack trace outside the heap lock
1061 inline void* do_malloc_pages(ThreadCache* heap, size_t size) { argument
1071 heap
1097 ThreadCache* heap = ThreadCache::GetCache(); local
1188 ThreadCache* heap = GetCacheIfPresent(); local
1334 ThreadCache* heap = ThreadCache::GetCache(); local
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dtcmalloc.cc311 PageHeap::Stats pageheap; // Stats from page heap
383 "MALLOC: + %12" PRIu64 " (%7.1f MiB) Bytes in page heap freelist\n"
434 // append page heap info
567 // the page heap releases at the span granularity, and spans are of wildly
596 "%warn This heap profile does not have any data in it, because\n"
597 "%warn the application was run with heap sampling turned off.\n"
854 // append page heap info
967 // Grab the stack trace outside the heap lock
1050 inline void* do_malloc_pages(ThreadCache* heap, size_t size) { argument
1057 if ((FLAGS_tcmalloc_sample_parameter > 0) && heap
1079 ThreadCache* heap = ThreadCache::GetCache(); local
1150 ThreadCache* heap = GetCacheIfPresent(); local
1289 ThreadCache* heap = ThreadCache::GetCache(); local
[all...]

Completed in 9054 milliseconds

123456