Home | History | Annotate | Download | only in src

Lines Matching defs:object

88     // we might decide to promote an encountered young object.
89 // We will allocate a space for such an object and put it
91 // If space for object was allocated somewhere beyond allocation
441 HeapObject* object = AllocateLinearly(&allocation_info_, size_in_bytes);
442 if (object != NULL) return object;
444 object = SlowAllocateRaw(size_in_bytes);
445 if (object != NULL) return object;
455 HeapObject* object = AllocateLinearly(&mc_forwarding_info_, size_in_bytes);
456 if (object != NULL) return object;
458 object = SlowMCAllocateRaw(size_in_bytes);
459 if (object != NULL) return object;
470 // and return the heap object in that page.
490 Object* obj = HeapObject::FromAddress(alloc_info->top);
521 bool FreeListNode::IsFreeListNode(HeapObject* object) {
522 return object->map() == HEAP->raw_unchecked_byte_array_map()
523 || object->map() == HEAP->raw_unchecked_one_pointer_filler_map()
524 || object->map() == HEAP->raw_unchecked_two_pointer_filler_map();