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