58 lines
2.2 KiB
Java
58 lines
2.2 KiB
Java
package kotlin.experimental;
|
|
|
|
import kotlin.Metadata;
|
|
import kotlin.SinceKotlin;
|
|
import kotlin.internal.InlineOnly;
|
|
|
|
@Metadata(d1 = {"\u0000\u0010\n\u0000\n\u0002\u0010\u0005\n\u0000\n\u0002\u0010\n\n\u0002\b\u0004\u001a\u0015\u0010\u0000\u001a\u00020\u0001*\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u0001H\u0087\f\u001a\u0015\u0010\u0000\u001a\u00020\u0003*\u00020\u00032\u0006\u0010\u0002\u001a\u00020\u0003H\u0087\f\u001a\r\u0010\u0004\u001a\u00020\u0001*\u00020\u0001H\u0087\b\u001a\r\u0010\u0004\u001a\u00020\u0003*\u00020\u0003H\u0087\b\u001a\u0015\u0010\u0005\u001a\u00020\u0001*\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u0001H\u0087\f\u001a\u0015\u0010\u0005\u001a\u00020\u0003*\u00020\u00032\u0006\u0010\u0002\u001a\u00020\u0003H\u0087\f\u001a\u0015\u0010\u0006\u001a\u00020\u0001*\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u0001H\u0087\f\u001a\u0015\u0010\u0006\u001a\u00020\u0003*\u00020\u00032\u0006\u0010\u0002\u001a\u00020\u0003H\u0087\f¨\u0006\u0007"}, d2 = {"and", "", "other", "", "inv", "or", "xor", "kotlin-stdlib"}, k = 2, mv = {1, 9, 0}, xi = 48)
|
|
/* loaded from: classes3.dex */
|
|
public final class BitwiseOperationsKt {
|
|
@SinceKotlin(version = "1.1")
|
|
@InlineOnly
|
|
private static final byte and(byte b4, byte b5) {
|
|
return (byte) (b4 & b5);
|
|
}
|
|
|
|
@SinceKotlin(version = "1.1")
|
|
@InlineOnly
|
|
private static final byte inv(byte b4) {
|
|
return (byte) (~b4);
|
|
}
|
|
|
|
@SinceKotlin(version = "1.1")
|
|
@InlineOnly
|
|
private static final byte or(byte b4, byte b5) {
|
|
return (byte) (b4 | b5);
|
|
}
|
|
|
|
@SinceKotlin(version = "1.1")
|
|
@InlineOnly
|
|
private static final byte xor(byte b4, byte b5) {
|
|
return (byte) (b4 ^ b5);
|
|
}
|
|
|
|
@SinceKotlin(version = "1.1")
|
|
@InlineOnly
|
|
private static final short and(short s4, short s5) {
|
|
return (short) (s4 & s5);
|
|
}
|
|
|
|
@SinceKotlin(version = "1.1")
|
|
@InlineOnly
|
|
private static final short inv(short s4) {
|
|
return (short) (~s4);
|
|
}
|
|
|
|
@SinceKotlin(version = "1.1")
|
|
@InlineOnly
|
|
private static final short or(short s4, short s5) {
|
|
return (short) (s4 | s5);
|
|
}
|
|
|
|
@SinceKotlin(version = "1.1")
|
|
@InlineOnly
|
|
private static final short xor(short s4, short s5) {
|
|
return (short) (s4 ^ s5);
|
|
}
|
|
}
|