Lines Matching refs:start_index
23 Zone* zone, size_t start_index, size_t capacity, OperandSize operand_size) in ConstantArraySlice() argument
24 : start_index_(start_index), in ConstantArraySlice()
49 return index + start_index(); in Allocate()
54 DCHECK_GE(index, start_index()); in At()
55 DCHECK_LT(index, start_index() + size()); in At()
56 return constants_[index - start_index()]; in At()
61 DCHECK_GE(index, start_index()); in At()
62 DCHECK_LT(index, start_index() + size()); in At()
63 return constants_[index - start_index()]; in At()
114 size_t i = start_index(); in CheckAllElementsAreUnique()
153 return slice->start_index() + slice->size(); in size()
173 if (index < slice->start_index() + slice->size()) { in At()
196 slice->At(slice->start_index() + i).ToHandle(isolate); in ToFixedArray()