Lines Matching defs:max
332 int32_t EcmaString::IndexOf(Span<const T1> &lhsSp, Span<const T2> &rhsSp, int32_t pos, int32_t max)
336 for (int32_t i = pos; i <= max; i++) {
339 while (i <= max && static_cast<int32_t>(lhsSp[i]) != first) {
344 if (i <= max) {
407 int32_t max = lhsCount - rhsCount;
408 if (max < 0) {
424 return EcmaString::IndexOf(lhsSp, rhsSp, pos, max);
428 return EcmaString::IndexOf(lhsSp, rhsSp, pos, max);
434 return EcmaString::IndexOf(lhsSp, rhsSp, pos, max);
1128 if (ToUInt64FromLoopStart(&n, loopStart, data) && n <= std::numeric_limits<int32_t>::max()) {