- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
89 lines
2.9 KiB
Java
89 lines
2.9 KiB
Java
package androidx.collection;
|
|
|
|
import kotlin.jvm.internal.SourceDebugExtension;
|
|
|
|
@SourceDebugExtension({"SMAP\nIntIntPair.kt\nKotlin\n*S Kotlin\n*F\n+ 1 IntIntPair.kt\nandroidx/collection/IntIntPair\n+ 2 PackingUtils.kt\nandroidx/collection/PackingUtilsKt\n*L\n1#1,83:1\n33#2:84\n*S KotlinDebug\n*F\n+ 1 IntIntPair.kt\nandroidx/collection/IntIntPair\n*L\n41#1:84\n*E\n"})
|
|
/* loaded from: classes.dex */
|
|
public final class IntIntPair {
|
|
public final long packedValue;
|
|
|
|
/* renamed from: box-impl, reason: not valid java name */
|
|
public static final /* synthetic */ IntIntPair m22boximpl(long j) {
|
|
return new IntIntPair(j);
|
|
}
|
|
|
|
/* renamed from: component1-impl, reason: not valid java name */
|
|
public static final int m23component1impl(long j) {
|
|
return (int) (j >> 32);
|
|
}
|
|
|
|
/* renamed from: component2-impl, reason: not valid java name */
|
|
public static final int m24component2impl(long j) {
|
|
return (int) (j & 4294967295L);
|
|
}
|
|
|
|
/* renamed from: constructor-impl, reason: not valid java name */
|
|
public static long m26constructorimpl(long j) {
|
|
return j;
|
|
}
|
|
|
|
/* renamed from: equals-impl, reason: not valid java name */
|
|
public static boolean m27equalsimpl(long j, Object obj) {
|
|
return (obj instanceof IntIntPair) && j == ((IntIntPair) obj).m33unboximpl();
|
|
}
|
|
|
|
/* renamed from: equals-impl0, reason: not valid java name */
|
|
public static final boolean m28equalsimpl0(long j, long j2) {
|
|
return j == j2;
|
|
}
|
|
|
|
/* renamed from: getFirst-impl, reason: not valid java name */
|
|
public static final int m29getFirstimpl(long j) {
|
|
return (int) (j >> 32);
|
|
}
|
|
|
|
public static /* synthetic */ void getPackedValue$annotations() {
|
|
}
|
|
|
|
/* renamed from: getSecond-impl, reason: not valid java name */
|
|
public static final int m30getSecondimpl(long j) {
|
|
return (int) (j & 4294967295L);
|
|
}
|
|
|
|
/* renamed from: hashCode-impl, reason: not valid java name */
|
|
public static int m31hashCodeimpl(long j) {
|
|
return Long.hashCode(j);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
return m27equalsimpl(this.packedValue, obj);
|
|
}
|
|
|
|
public int hashCode() {
|
|
return m31hashCodeimpl(this.packedValue);
|
|
}
|
|
|
|
/* renamed from: unbox-impl, reason: not valid java name */
|
|
public final /* synthetic */ long m33unboximpl() {
|
|
return this.packedValue;
|
|
}
|
|
|
|
private /* synthetic */ IntIntPair(long j) {
|
|
this.packedValue = j;
|
|
}
|
|
|
|
/* renamed from: constructor-impl, reason: not valid java name */
|
|
public static long m25constructorimpl(int i, int i2) {
|
|
return m26constructorimpl((i2 & 4294967295L) | (i << 32));
|
|
}
|
|
|
|
/* renamed from: toString-impl, reason: not valid java name */
|
|
public static String m32toStringimpl(long j) {
|
|
return '(' + m29getFirstimpl(j) + ", " + m30getSecondimpl(j) + ')';
|
|
}
|
|
|
|
public String toString() {
|
|
return m32toStringimpl(this.packedValue);
|
|
}
|
|
}
|