Home
last modified time | relevance | path

Searched defs:reverseBytes (Results 1 – 15 of 15) sorted by relevance

/external/kotlinx.serialization/formats/protobuf/jsMain/src/kotlinx/serialization/protobuf/internal/
DBytes.kt7 private fun Short.reverseBytes(): Short = (((this.toInt() and 0xff) shl 8) or ((this.toInt() and 0x… method
9 internal actual fun Int.reverseBytes(): Int = method
12 internal actual fun Long.reverseBytes(): Long = method
/external/kotlinx.serialization/formats/protobuf/nativeMain/src/kotlinx/serialization/protobuf/internal/
DBytes.kt7 private fun Short.reverseBytes(): Short = (((this.toInt() and 0xff) shl 8) or ((this.toInt() and 0x… method
9 internal actual fun Int.reverseBytes(): Int = method
12 internal actual fun Long.reverseBytes(): Long = method
/external/kotlinx.serialization/formats/protobuf/wasmMain/src/kotlinx/serialization/protobuf/internal/
DBytes.kt7 private fun Short.reverseBytes(): Short = (((this.toInt() and 0xff) shl 8) or ((this.toInt() and 0x… method
9 internal actual fun Int.reverseBytes(): Int = method
12 internal actual fun Long.reverseBytes(): Long = method
/external/kotlinx.serialization/formats/protobuf/jvmMain/src/kotlinx/serialization/protobuf/internal/
DBytes.kt7 internal actual fun Int.reverseBytes(): Int = Integer.reverseBytes(this) method
9 internal actual fun Long.reverseBytes(): Long = java.lang.Long.reverseBytes(this) method
/external/okio/okio/src/commonMain/kotlin/okio/
DUtil.kt31 internal fun Short.reverseBytes(): Short { in reverseBytes() method
38 internal fun Int.reverseBytes(): Int { in reverseBytes() method
45 internal fun Long.reverseBytes(): Long { in reverseBytes() method
/external/kotlinx.serialization/formats/protobuf/commonMain/src/kotlinx/serialization/protobuf/internal/
DProtobufWriter.kt99 private fun Float.reverseBytes(): Int = toRawBits().reverseBytes() method in kotlinx.serialization.protobuf.internal.ProtobufWriter
101 private fun Double.reverseBytes(): Long = toRawBits().reverseBytes() method in kotlinx.serialization.protobuf.internal.ProtobufWriter
DHelpers.kt139 internal expect fun Int.reverseBytes(): Int in reverseBytes() method
140 internal expect fun Long.reverseBytes(): Long in reverseBytes() method
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/
DLongs.java38 public static long reverseBytes(long i) in reverseBytes() method in Longs
DIntegers.java43 public static int reverseBytes(int i) in reverseBytes() method in Integers
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
DLongs.java36 public static long reverseBytes(long i) in reverseBytes() method in Longs
DIntegers.java41 public static int reverseBytes(int i) in reverseBytes() method in Integers
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/util/
DLongs.java38 public static long reverseBytes(long i) in reverseBytes() method in Longs
DIntegers.java43 public static int reverseBytes(int i) in reverseBytes() method in Integers
/external/fonttools/Lib/fontTools/ttLib/tables/
DE_B_D_T_.py565 def getRow(self, row, bitDepth=1, metrics=None, reverseBytes=False): argument
614 def setRows(self, dataRows, bitDepth=1, metrics=None, reverseBytes=False): argument
653 def getRow(self, row, bitDepth=1, metrics=None, reverseBytes=False): argument
663 def setRows(self, dataRows, bitDepth=1, metrics=None, reverseBytes=False): argument
/external/okio/okio/src/jvmTest/kotlin/okio/
DTestUtil.kt278 fun Int.reverseBytes(): Int { in Int() method
288 fun Short.reverseBytes(): Short { in Short() method