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

  /external/chromium_org/v8/src/heap/
mark-compact-inl.h 52 HeapObject* heap_object = HeapObject::cast(obj); local
53 return Marking::MarkBitFrom(heap_object).Get();
store-buffer.cc 379 HeapObject* heap_object = reinterpret_cast<HeapObject*>(object); local
380 DCHECK(heap_object->IsHeapObject());
383 if (clear_maps) ClearDeadObject(heap_object);
384 slot_callback(reinterpret_cast<HeapObject**>(slot), heap_object); local
409 HeapObject* heap_object = reinterpret_cast<HeapObject*>(object); local
412 if (clear_maps) ClearDeadObject(heap_object);
413 slot_callback(reinterpret_cast<HeapObject**>(slot), heap_object); local
483 for (HeapObject* heap_object = iterator.Next(); heap_object != NULL;
484 heap_object = iterator.Next())
    [all...]
incremental-marking.cc 138 static inline void MarkBlackOrKeepGrey(HeapObject* heap_object,
143 MemoryChunk::IncrementLiveBytesFromGC(heap_object->address(), size);
148 static inline void MarkBlackOrKeepBlack(HeapObject* heap_object,
153 MemoryChunk::IncrementLiveBytesFromGC(heap_object->address(), size);
254 HeapObject* heap_object = HeapObject::cast(obj); local
255 MarkBit mark_bit = Marking::MarkBitFrom(heap_object);
257 MarkBlackOrKeepGrey(heap_object, mark_bit, heap_object->Size());
259 heap->incremental_marking()->WhiteToGreyAndPush(heap_object, mark_bit);
266 HeapObject* heap_object = HeapObject::cast(obj) local
    [all...]
mark-compact.cc 173 for (HeapObject* heap_object = iterator.Next(); heap_object != NULL;
174 heap_object = iterator.Next()) {
176 if (!heap_object->IsFiller()) {
177 heap_object->Iterate(&visitor);
2044 HeapObject* heap_object = HeapObject::cast(o); local
3218 HeapObject* heap_object = HeapObject::cast(object); local
    [all...]
spaces.h 2837 HeapObject* heap_object; local
    [all...]
  /external/chromium_org/v8/src/ic/
ic.cc 1827 Handle<HeapObject> heap_object = Handle<HeapObject>::cast(object); local
    [all...]
  /external/chromium_org/v8/src/
serialize.cc 1348 HeapObject* heap_object = HeapObject::cast(o); local
1424 HeapObject* heap_object = HeapObject::cast(o); local
1817 HeapObject* heap_object = HeapObject::cast(o); local
    [all...]
hydrogen-instructions.cc 2675 Handle<HeapObject> heap_object = Handle<HeapObject>::cast(object); local
    [all...]
objects.cc 810 HeapObject* heap_object = HeapObject::cast(this); local
814 if (heap_object->IsJSReceiver()) {
815 return heap_object->map();
819 if (heap_object->IsHeapNumber()) {
822 if (heap_object->IsString()) {
825 if (heap_object->IsSymbol()) {
828 if (heap_object->IsBoolean()) {
    [all...]

Completed in 245 milliseconds