Home
last modified time | relevance | path

Searched refs:otherLimit (Results 1 – 10 of 10) sorted by relevance

/third_party/flatbuffers/java/com/google/flatbuffers/
DFlexBuffers.java976 int otherLimit = other.length(); in compareCharSequence() local
981 while (otherPos < otherLimit) { in compareCharSequence()
/third_party/skia/third_party/externals/icu/source/common/
Dnormalizer2impl.cpp207 UBool ReorderingBuffer::equals(const UChar *otherStart, const UChar *otherLimit) const { in equals()
210 length==(int32_t)(otherLimit-otherStart) && in equals()
214 UBool ReorderingBuffer::equals(const uint8_t *otherStart, const uint8_t *otherLimit) const { in equals()
215 U_ASSERT((otherLimit - otherStart) <= INT32_MAX); // ensured by caller in equals()
217 int32_t otherLength = (int32_t)(otherLimit - otherStart); in equals()
Dnormalizer2impl.h162 UBool equals(const uint8_t *otherStart, const uint8_t *otherLimit) const;
/third_party/flutter/skia/third_party/externals/icu/source/common/
Dnormalizer2impl.cpp208 UBool ReorderingBuffer::equals(const UChar *otherStart, const UChar *otherLimit) const { in equals()
211 length==(int32_t)(otherLimit-otherStart) && in equals()
215 UBool ReorderingBuffer::equals(const uint8_t *otherStart, const uint8_t *otherLimit) const { in equals()
216 U_ASSERT((otherLimit - otherStart) <= INT32_MAX); // ensured by caller in equals()
218 int32_t otherLength = (int32_t)(otherLimit - otherStart); in equals()
Dnormalizer2impl.h162 UBool equals(const uint8_t *otherStart, const uint8_t *otherLimit) const;
/third_party/icu/icu4c/source/common/
Dnormalizer2impl.cpp207 UBool ReorderingBuffer::equals(const UChar *otherStart, const UChar *otherLimit) const { in equals()
210 length==(int32_t)(otherLimit-otherStart) && in equals()
214 UBool ReorderingBuffer::equals(const uint8_t *otherStart, const uint8_t *otherLimit) const { in equals()
215 U_ASSERT((otherLimit - otherStart) <= INT32_MAX); // ensured by caller in equals()
217 int32_t otherLength = (int32_t)(otherLimit - otherStart); in equals()
Dnormalizer2impl.h162 UBool equals(const uint8_t *otherStart, const uint8_t *otherLimit) const;
/third_party/node/deps/icu-small/source/common/
Dnormalizer2impl.cpp207 UBool ReorderingBuffer::equals(const UChar *otherStart, const UChar *otherLimit) const { in equals()
210 length==(int32_t)(otherLimit-otherStart) && in equals()
214 UBool ReorderingBuffer::equals(const uint8_t *otherStart, const uint8_t *otherLimit) const { in equals()
215 U_ASSERT((otherLimit - otherStart) <= INT32_MAX); // ensured by caller in equals()
217 int32_t otherLength = (int32_t)(otherLimit - otherStart); in equals()
Dnormalizer2impl.h162 UBool equals(const uint8_t *otherStart, const uint8_t *otherLimit) const;
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/
DFlexBuffers.kt865 val otherLimit = other.length in toString() constant
869 while (otherPos < otherLimit) { in toString()