Lines Matching refs:minLength
575 int32_t minLength; in doCompare() local
586 minLength = length; in doCompare()
589 minLength = srcLength; in doCompare()
593 minLength = length; in doCompare()
605 if(minLength > 0 && chars != srcChars) { in doCompare()
610 result = uprv_memcmp(chars, srcChars, minLength * sizeof(UChar)); in doCompare()
621 } while(--minLength > 0); in doCompare()
1676 int32_t minLength = oldLength; in cloneArrayIfNeeded() local
1678 if(newCapacity < minLength) { in cloneArrayIfNeeded()
1679 minLength = newCapacity; in cloneArrayIfNeeded()
1682 us_arrayCopy(oldArray, 0, getArrayStart(), 0, minLength); in cloneArrayIfNeeded()
1684 setLength(minLength); in cloneArrayIfNeeded()