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

  /external/chromium_org/v8/src/heap/
store-buffer.cc 334 Address slot_address = object->address(); local
337 while (slot_address < end) {
338 HeapObject** slot = reinterpret_cast<HeapObject**>(slot_address);
345 slot_address += kPointerSize;
373 for (Address slot_address = start; slot_address < end;
374 slot_address += kPointerSize) {
375 Object** slot = reinterpret_cast<Object**>(slot_address);
388 EnterDirectlyIntoStoreBuffer(slot_address);
heap.cc 4542 Address slot_address = start; local
    [all...]
spaces.h 511 Address slot_address = reinterpret_cast<Address>(slot); local
512 DCHECK(slot_address > this->address());
513 return (slot_address - (this->address() + kObjectStartOffset)) <
    [all...]
  /external/chromium_org/v8/src/
deoptimizer.h 48 Address slot_address, int frame, int length, int duplicate, bool is_args)
49 : slot_address_(slot_address),
55 Address slot_address() const { return slot_address_; } function in class:v8::internal::BASE_EMBEDDED
344 void AddObjectStart(intptr_t slot_address, int argc, bool is_arguments);
348 void AddDoubleValue(intptr_t slot_address, double value);

Completed in 2409 milliseconds