Home | History | Annotate | Download | only in common

Lines Matching refs:otherStart

208 UBool ReorderingBuffer::equals(const UChar *otherStart, const UChar *otherLimit) const {
211 length==(int32_t)(otherLimit-otherStart) &&
212 0==u_memcmp(start, otherStart, length);
215 UBool ReorderingBuffer::equals(const uint8_t *otherStart, const uint8_t *otherLimit) const {
216 U_ASSERT((otherLimit - otherStart) <= INT32_MAX); // ensured by caller
218 int32_t otherLength = (int32_t)(otherLimit - otherStart);
234 U8_NEXT_UNSAFE(otherStart, j, other);