Lines Matching refs:index
213 [&](TNode<UintPtrT> index) {
218 // If `index` is out of bounds, Get returns undefined.
219 CheckJSTypedArrayIndex(index, typed_array, &detached);
225 value = LoadFixedTypedArrayElementAsTagged(data_ptr, index,
238 k_ = index;
239 a_ = processor(this, value.value(), index);
1225 // Let index be O.[[ArrayIteratorNextIndex]].
1226 TNode<Number> index = LoadJSArrayIteratorNextIndex(iterator);
1227 CSA_DCHECK(this, IsNumberNonNegativeSafeInteger(index));
1238 // If {array} is a JSArray, then the {index} must be in Unsigned32 range.
1239 CSA_DCHECK(this, IsNumberArrayIndex(index));
1241 // Check that the {index} is within range for the {array}. We handle all
1243 TNode<Uint32T> index32 = ChangeNumberToUint32(index);
1251 var_value = index;
1283 // Check that the {index} is within the bounds of the {array}s "length".
1287 GotoIfNumberGreaterThanOrEqual(index, length, &set_done);
1288 StoreJSArrayIteratorNextIndex(iterator, NumberInc(index));
1291 var_value = index;
1327 var_value = GetProperty(context, array, index);
1335 ChangeSafeIntegerNumberToUintPtr(index, &allocate_iterator_result);
1346 // TODO(v8:4153): Consider storing next index as uintptr. Update this and
1353 var_value = index;
1378 AllocateJSIteratorResultForEntry(context, index, var_value.value());
1702 // TODO(ishell): Compute the builtin index dynamically instead of
1769 // TODO(ishell): Compute the builtin index dynamically instead of