Lines Matching defs:length
5627 Node* length, Node* initial_value,
5632 length, gasm_->Uint32Constant(WasmArray::MaxLength(type))),
5642 length, Int32Constant(element_type.value_kind_size()));
5653 gasm_->Int32Add(start_offset, gasm_->Int32Mul(element_size, length));
5695 Node* length, Node* rtt,
5699 gasm_->Uint32Constant(data_segment), offset, length, rtt);
5806 // array length, we can access the supertype without bounds-checking the
6050 Node* length = gasm_->LoadWasmArrayLength(array);
6051 TrapIfFalse(wasm::kTrapArrayOutOfBounds, gasm_->Uint32LessThan(index, length),
6056 Node* length,
6060 Node* range_end = gasm_->Int32Add(index, length);
6106 // the length limit, run test/mjsunit/wasm/array-copy-benchmark.js.
6110 Node* length,
6118 BoundsCheckArrayCopy(dst_array, dst_index, length, position);
6119 BoundsCheckArrayCopy(src_array, src_index, length, position);
6123 gasm_->GotoIf(gasm_->Word32Equal(length, Int32Constant(0)), &skip,
6134 src_index, length);
6787 Node* length = BuildChangeUint31ToSmi(
6790 Operator::kEliminatable, iterable, length,
7840 if (bound_target->bound_arguments().length() == 0 &&
8414 int name_len = name.length();
8425 DCHECK(name_len > 0 && name_len < name_vector.length());