Searched refs:childPos (Results 1 – 2 of 2) sorted by relevance
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/ |
D | FlexBuffers.kt | 623 val childPos: Int = end + index * byteWidth in get() constant 624 return Reference(buffer, childPos, byteWidth, ByteWidth(1), elementType) in get() 628 val childPos: Int = end + index * byteWidth in resolveAt() constant 629 return block(childPos, byteWidth) in resolveAt() 772 val childPos: Int = keyVectorEnd + index * keyVectorByteWidth in toString() constant 773 return Key(buffer, buffer.indirect(childPos, keyVectorByteWidth)) in toString() 782 val childPos: Int = keyVectorEnd + index * keyVectorByteWidth in toString() constant 783 val start = buffer.indirect(childPos, keyVectorByteWidth) in toString()
|
/third_party/flatbuffers/java/com/google/flatbuffers/ |
D | FlexBuffers.java | 1136 int childPos = end + pos * byteWidth; in get() local 1137 return new Reference(bb, childPos, byteWidth, 1, elemType); in get() 1161 int childPos = vec.end + pos * vec.byteWidth; in get() local 1162 return new Key(vec.bb, indirect(vec.bb, childPos, vec.byteWidth), 1); in get()
|