Lines Matching refs:minLength
662 int32_t minLength; in doCompare() local
673 minLength = length; in doCompare()
676 minLength = srcLength; in doCompare()
680 minLength = length; in doCompare()
692 if(minLength > 0 && chars != srcChars) { in doCompare()
697 result = uprv_memcmp(chars, srcChars, minLength * sizeof(UChar)); in doCompare()
708 } while(--minLength > 0); in doCompare()
1781 int32_t minLength = oldLength; in cloneArrayIfNeeded() local
1783 if(newCapacity < minLength) { in cloneArrayIfNeeded()
1784 minLength = newCapacity; in cloneArrayIfNeeded()
1787 us_arrayCopy(oldArray, 0, getArrayStart(), 0, minLength); in cloneArrayIfNeeded()
1789 setLength(minLength); in cloneArrayIfNeeded()