Lines Matching defs:subject_length
52 const TNode<RawPtrT> subject_ptr, const TNode<IntPtrT> subject_length,
66 std::make_pair(type_intptr, subject_length),
74 const TNode<RawPtrT> subject_ptr, const TNode<IntPtrT> subject_length,
78 subject_ptr, subject_length, search_ptr, search_length, start_position);
81 const TNode<RawPtrT> subject_ptr, const TNode<IntPtrT> subject_length,
85 subject_ptr, subject_length, search_ptr, search_length, start_position);
88 const TNode<RawPtrT> subject_ptr, const TNode<IntPtrT> subject_length,
92 subject_ptr, subject_length, search_ptr, search_length, start_position);
95 const TNode<RawPtrT> subject_ptr, const TNode<IntPtrT> subject_length,
99 subject_ptr, subject_length, search_ptr, search_length, start_position);
102 const TNode<RawPtrT> subject_ptr, const TNode<IntPtrT> subject_length,
109 Unsigned(IntPtrSub(subject_length, start_position));
1022 const TNode<IntPtrT> subject_length = LoadStringLengthAsWord(subject_string);
1031 GotoIfNot(IntPtrGreaterThan(subject_length, IntPtrConstant(0xFF)), &next);
1139 SmiUntag(match_end_index), subject_length);
1247 TNode<Smi> subject_length, TNode<Number> limit_number) {
1248 CSA_DCHECK(this, SmiGreaterThan(subject_length, SmiConstant(0)));
1261 [=] { return SmiMin(CAST(limit_number), subject_length); },
1262 [=] { return subject_length; });
1400 TNode<Smi> subject_length = LoadStringLengthAsSmi(subject_string);
1401 GotoIf(SmiEqual(subject_length, smi_zero), &return_empty_array);
1404 StringToArray(context, subject_string, subject_length, limit_number));