Home
last modified time | relevance | path

Searched refs:keyPos (Results 1 – 3 of 3) sorted by relevance

/third_party/flatbuffers/java/com/google/flatbuffers/
DFlexBuffers.java915 int keyPos = indirect(bb, keysStart + mid * keyByteWidth, keyByteWidth); in binarySearch() local
916 int cmp = compareCharSequence(keyPos, searchedKey); in binarySearch()
937 int keyPos = indirect(bb, keysStart + mid * keyByteWidth, keyByteWidth); in binarySearch() local
938 int cmp = compareBytes(bb, keyPos, searchedKey); in binarySearch()
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/
DFlexBuffersBuilder.kt457 val keyPos = putKey(key) in setTypedVector() constant
466 stack.add(Value(vecType, keyPos, bitWidth, vloc.toULong())) in setTypedVector()
DFlexBuffers.kt835 val keyPos: Int = buffer.indirect(keyVectorEnd + mid * keyVectorByteWidth, keyVectorByteWidth) in toString() constant
836 val cmp: Int = comparisonBlock(keyPos) in toString()