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.cc361 table_offset_(table_offset), in iterator()
367 DCHECK_LT(table_offset_, table_end_); in operator *()
373 DCHECK_LT(table_offset_, table_end_); in operator ++()
374 ++table_offset_; in operator ++()
384 DCHECK_EQ(index_ - other.index_, table_offset_ - other.table_offset_); in operator !=()
389 while (table_offset_ < table_end_ && in UpdateAndAdvanceToValid()
390 !accessor_->IsConstantAtIndexSmi(table_offset_)) { in UpdateAndAdvanceToValid()
391 ++table_offset_; in UpdateAndAdvanceToValid()
396 if (table_offset_ < table_end_) { in UpdateAndAdvanceToValid()
397 DCHECK(accessor_->IsConstantAtIndexSmi(table_offset_)); in UpdateAndAdvanceToValid()
[all …]
Dbytecode-array-accessor.h51 int table_offset_; variable