Home
last modified time | relevance | path

Searched refs:sizeInBuff (Results 1 – 2 of 2) sorted by relevance

/third_party/flatbuffers/java/com/google/flatbuffers/
DFlexBuffers.java1004 int sizeInBuff = Utf8.encodeUtf8CodePoint(other, otherPos, comparisonBuffer); in compareCharSequence() local
1006 if (sizeInBuff == 0) { in compareCharSequence()
1012 for (int i = 0; i < sizeInBuff; i++) { in compareCharSequence()
1023 otherPos += sizeInBuff == 4 ? 2 : 1; in compareCharSequence()
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/
DFlexBuffers.kt889 val sizeInBuff = Utf8.encodeUtf8CodePoint(other, otherPos, comparisonBuffer) in toString() constant
890 if (sizeInBuff == 0) { in toString()
893 for (i in 0 until sizeInBuff) { in toString()
901 otherPos += if (sizeInBuff == 4) 2 else 1 in toString()