Home
last modified time | relevance | path

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

/third_party/flatbuffers/java/com/google/flatbuffers/
DFlexBuffers.java823 private final byte[] comparisonBuffer = new byte[4]; field in FlexBuffers.Map
1004 int sizeInBuff = Utf8.encodeUtf8CodePoint(other, otherPos, comparisonBuffer); in compareCharSequence()
1014 byte otherByte = comparisonBuffer[i]; in compareCharSequence()
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/
DFlexBuffers.kt887 val comparisonBuffer = ByteArray(4) in toString() constant
889 val sizeInBuff = Utf8.encodeUtf8CodePoint(other, otherPos, comparisonBuffer) in toString()
895 val otherByte: Byte = comparisonBuffer[i] in toString()