/external/kotlinx.serialization/formats/protobuf/jsMain/src/kotlinx/serialization/protobuf/internal/ |
D | Bytes.kt | 7 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/ |
D | Bytes.kt | 7 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/ |
D | Bytes.kt | 7 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/ |
D | Bytes.kt | 7 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/ |
D | Util.kt | 31 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/ |
D | ProtobufWriter.kt | 99 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
|
D | Helpers.kt | 139 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/ |
D | Longs.java | 38 public static long reverseBytes(long i) in reverseBytes() method in Longs
|
D | Integers.java | 43 public static int reverseBytes(int i) in reverseBytes() method in Integers
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
D | Longs.java | 36 public static long reverseBytes(long i) in reverseBytes() method in Longs
|
D | Integers.java | 41 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/ |
D | Longs.java | 38 public static long reverseBytes(long i) in reverseBytes() method in Longs
|
D | Integers.java | 43 public static int reverseBytes(int i) in reverseBytes() method in Integers
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | E_B_D_T_.py | 565 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/ |
D | TestUtil.kt | 278 fun Int.reverseBytes(): Int { in Int() method 288 fun Short.reverseBytes(): Short { in Short() method
|