Home | History | Annotate | Download | only in interpreter

Lines Matching full:start_index

22     Zone* zone, size_t start_index, size_t capacity, OperandSize operand_size)
23 : start_index_(start_index),
46 return index + start_index();
51 DCHECK_GE(index, start_index());
52 DCHECK_LT(index, start_index() + size());
53 return constants_[index - start_index()];
58 DCHECK_GE(index, start_index());
59 DCHECK_LT(index, start_index() + size());
60 return constants_[index - start_index()];
73 size_t i = start_index();
112 return slice->start_index() + slice->size();
133 if (index < slice->start_index() + slice->size()) {
157 *slice->At(slice->start_index() + i).ToHandle(isolate));