• Home
  • Raw
  • Download

Lines Matching refs:currentLen

2662 … int32_t    currentLen = 0;         // Minimum length of a match to this point (loc) in the pattern  in matchStartType()  local
2689 if (forwardedLength.elementAti(loc) < currentLen) { in matchStartType()
2690 currentLen = forwardedLength.elementAti(loc); in matchStartType()
2691 U_ASSERT(currentLen>=0 && currentLen < INT32_MAX); in matchStartType()
2734 if (currentLen == 0) { in matchStartType()
2740 currentLen++; in matchStartType()
2746 if (currentLen == 0) { in matchStartType()
2753 currentLen++; in matchStartType()
2760 if (currentLen == 0) { in matchStartType()
2771 if (currentLen == 0) { in matchStartType()
2783 if (currentLen == 0) { in matchStartType()
2790 currentLen++; in matchStartType()
2797 if (currentLen == 0) { in matchStartType()
2805 currentLen++; in matchStartType()
2813 if (currentLen == 0) { in matchStartType()
2822 currentLen++; in matchStartType()
2829 if (currentLen == 0) { in matchStartType()
2839 currentLen++; in matchStartType()
2846 if (currentLen == 0) { in matchStartType()
2858 currentLen++; in matchStartType()
2866 if (currentLen == 0) { in matchStartType()
2882 currentLen++; in matchStartType()
2891 if (currentLen == 0) { in matchStartType()
2898 currentLen++; in matchStartType()
2912 currentLen = forwardedLength.elementAti(loc+1); in matchStartType()
2917 if (forwardedLength.elementAti(jmpDest) > currentLen) { in matchStartType()
2918 forwardedLength.setElementAt(currentLen, jmpDest); in matchStartType()
2935 currentLen = forwardedLength.elementAti(loc+1); in matchStartType()
2946 if (currentLen < forwardedLength.elementAti(jmpDest)) { in matchStartType()
2947 forwardedLength.setElementAt(currentLen, jmpDest); in matchStartType()
2964 if (currentLen == 0) { in matchStartType()
2978 currentLen += stringLen; in matchStartType()
2993 if (currentLen == 0) { in matchStartType()
3003 currentLen += stringLen; in matchStartType()
3026 if (forwardedLength.elementAti(loopEndLoc) > currentLen) { in matchStartType()
3027 forwardedLength.setElementAt(currentLen, loopEndLoc); in matchStartType()
3080 if (currentLen < forwardedLength.elementAti(jmpDest)) { in matchStartType()
3081 forwardedLength.setElementAt(currentLen, jmpDest); in matchStartType()
3109 if (forwardedLength.elementAti(end+1) < currentLen) { in matchStartType()
3110 currentLen = forwardedLength.elementAti(end+1); in matchStartType()
3185 int32_t currentLen = 0; in minMatchLength() local
3209 if (forwardedLength.elementAti(loc) < currentLen) { in minMatchLength()
3210 currentLen = forwardedLength.elementAti(loc); in minMatchLength()
3211 U_ASSERT(currentLen>=0 && currentLen < INT32_MAX); in minMatchLength()
3261 currentLen++; in minMatchLength()
3275 currentLen = forwardedLength.elementAti(loc+1); in minMatchLength()
3279 if (forwardedLength.elementAti(jmpDest) > currentLen) { in minMatchLength()
3280 forwardedLength.setElementAt(currentLen, jmpDest); in minMatchLength()
3290 currentLen = forwardedLength.elementAti(loc+1); in minMatchLength()
3301 if (currentLen < forwardedLength.elementAti(jmpDest)) { in minMatchLength()
3302 forwardedLength.setElementAt(currentLen, jmpDest); in minMatchLength()
3313 currentLen += URX_VAL(stringLenOp); in minMatchLength()
3326 currentLen += 1; in minMatchLength()
3401 if (currentLen < forwardedLength.elementAti(jmpDest)) { in minMatchLength()
3402 forwardedLength.setElementAt(currentLen, jmpDest); in minMatchLength()
3428 if (forwardedLength.elementAti(end+1) < currentLen) { in minMatchLength()
3429 currentLen = forwardedLength.elementAti(end+1); in minMatchLength()
3430 U_ASSERT(currentLen>=0 && currentLen < INT32_MAX); in minMatchLength()
3433 return currentLen; in minMatchLength()
3470 int32_t currentLen = 0; in maxMatchLength() local
3486 if (forwardedLength.elementAti(loc) > currentLen) { in maxMatchLength()
3487 currentLen = forwardedLength.elementAti(loc); in maxMatchLength()
3528 currentLen = INT32_MAX; in maxMatchLength()
3545 currentLen = safeIncrement(currentLen, 2); in maxMatchLength()
3551 currentLen = safeIncrement(currentLen, 1); in maxMatchLength()
3553 currentLen = safeIncrement(currentLen, 1); in maxMatchLength()
3567 currentLen = INT32_MAX; in maxMatchLength()
3570 if (forwardedLength.elementAti(jmpDest) < currentLen) { in maxMatchLength()
3571 forwardedLength.setElementAt(currentLen, jmpDest); in maxMatchLength()
3573 currentLen = 0; in maxMatchLength()
3581 currentLen = forwardedLength.elementAti(loc+1); in maxMatchLength()
3593 if (currentLen > forwardedLength.elementAti(jmpDest)) { in maxMatchLength()
3594 forwardedLength.setElementAt(currentLen, jmpDest); in maxMatchLength()
3597 currentLen = INT32_MAX; in maxMatchLength()
3609 currentLen = safeIncrement(currentLen, URX_VAL(stringLenOp)); in maxMatchLength()
3637 currentLen = safeIncrement(currentLen, URX_VAL(stringLenOp)); in maxMatchLength()
3657 currentLen = INT32_MAX; in maxMatchLength()
3663 int64_t updatedLen = (int64_t)currentLen + blockLen * maxLoopCount; in maxMatchLength()
3665 currentLen = INT32_MAX; in maxMatchLength()
3668 currentLen = (int32_t)updatedLen; in maxMatchLength()
3684 currentLen = INT32_MAX; in maxMatchLength()
3728 if (currentLen == INT32_MAX) { in maxMatchLength()
3735 return currentLen; in maxMatchLength()