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

  /external/v8/src/
spaces.cc 471 next_chunk_ = other->next_chunk_;
473 other->next_chunk_->prev_chunk_ = this;
474 other->next_chunk_ = this;
483 next_chunk_->prev_chunk_ = prev_chunk_;
484 prev_chunk_->next_chunk_ = next_chunk_;
486 next_chunk_ = NULL;
    [all...]
spaces.h 315 MemoryChunk* next_chunk() const { return next_chunk_; }
318 void set_next_chunk(MemoryChunk* next) { next_chunk_ = next; }
605 MemoryChunk* next_chunk_; member in class:v8::internal::MemoryChunk
    [all...]
  /external/chromium_org/v8/src/
spaces.cc 544 next_chunk_ = other->next_chunk_;
556 // other->next_chunk_ = this;
557 other->next_chunk_->prev_chunk_ = this;
558 other->next_chunk_ = this;
567 next_chunk_->prev_chunk_ = prev_chunk_;
568 prev_chunk_->next_chunk_ = next_chunk_;
570 next_chunk_ = NULL;
    [all...]
spaces.h 315 MemoryChunk* next_chunk() const { return next_chunk_; }
318 void set_next_chunk(MemoryChunk* next) { next_chunk_ = next; }
673 MemoryChunk* next_chunk_; member in class:v8::internal::MemoryChunk
    [all...]

Completed in 50 milliseconds