Home
last modified time | relevance | path

Searched refs:decodeUtf8Array (Results 1 – 6 of 6) sorted by relevance

/external/flatbuffers/kotlin/benchmark/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/benchmark/
DUTF8Benchmark.kt83 blackhole.consume(Utf8.decodeUtf8Array(ary, 0, ary.size)) in decodeUtf8KotlinFlatbuffers()
132 blackhole.consume(Utf8.decodeUtf8Array(ary, 0, ary.size)) in decodeAsciiKotlinFlatbuffers()
148 val key = Utf8.decodeUtf8Array(ary, 0, ary.size) in readAllCharsString()
/external/flatbuffers/kotlin/flatbuffers-kotlin/src/jvmTest/kotlin/com/google/flatbuffers/kotlin/
DUtf8Test.kt32 assertEquals(utf8Lines[it], Utf8.decodeUtf8Array(utf8Bytes[it])) in <lambda>()
/external/flatbuffers/java/com/google/flatbuffers/
DUtf8Safe.java96 public static String decodeUtf8Array(byte[] bytes, int index, int size) { in decodeUtf8Array() method in Utf8Safe
260 return decodeUtf8Array(buffer.array(), buffer.arrayOffset() + offset, length); in decodeUtf8()
DArrayReadWriteBuf.java89 return Utf8Safe.decodeUtf8Array(buffer, start, size); in getString()
/external/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/
DByteArray.kt21 internal fun ByteArray.getString(index: Int, size: Int): String = Utf8.decodeUtf8Array(this, index,… in getString()
DUtf8.kt258 public fun decodeUtf8Array(bytes: ByteArray, index: Int = 0, size: Int = bytes.size): String { in decodeUtf8Array() method