Home
last modified time | relevance | path

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

/third_party/flatbuffers/java/com/google/flatbuffers/
DFlexBuffers.java868 int keysOffset = end - (byteWidth * num_prefixed_fields); in keys() local
870 indirect(bb, keysOffset, byteWidth), in keys()
871 readInt(bb, keysOffset + byteWidth, byteWidth), in keys()
910 int keysOffset = end - (byteWidth * num_prefixed_fields); in binarySearch() local
911 int keysStart = indirect(bb, keysOffset, byteWidth); in binarySearch()
912 int keyByteWidth = readInt(bb, keysOffset + byteWidth, byteWidth); in binarySearch()
931 int keysOffset = end - (byteWidth * num_prefixed_fields); in binarySearch() local
932 int keysStart = indirect(bb, keysOffset, byteWidth); in binarySearch()
933 int keyByteWidth = readInt(bb, keysOffset + byteWidth, byteWidth); in binarySearch()
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/
DFlexBuffers.kt717 val keysOffset = end - (3 * byteWidth) // 3 is number of prefixed fields in toString() constant
718 keyVectorEnd = buffer.indirect(keysOffset, byteWidth) in toString()
719 keyVectorByteWidth = ByteWidth(buffer.readInt(keysOffset + byteWidth, byteWidth)) in toString()