Home
last modified time | relevance | path

Searched refs:table_offset_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-array-accessor.cc290 table_offset_(table_offset), in iterator()
296 DCHECK_LT(table_offset_, table_end_); in operator *()
302 DCHECK_LT(table_offset_, table_end_); in operator ++()
303 ++table_offset_; in operator ++()
313 DCHECK_EQ(index_ - other.index_, table_offset_ - other.table_offset_); in operator !=()
318 if (table_offset_ >= table_end_) return; in UpdateAndAdvanceToValid()
320 Object* current = accessor_->GetConstantAtIndex(table_offset_); in UpdateAndAdvanceToValid()
323 ++table_offset_; in UpdateAndAdvanceToValid()
325 if (table_offset_ >= table_end_) break; in UpdateAndAdvanceToValid()
326 current = accessor_->GetConstantAtIndex(table_offset_); in UpdateAndAdvanceToValid()
Dbytecode-array-accessor.h47 int table_offset_; variable