Files
rr3-apk/decompiled/sources/androidx/collection/FloatFloatPair.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

89 lines
3.4 KiB
Java

package androidx.collection;
import kotlin.jvm.internal.SourceDebugExtension;
@SourceDebugExtension({"SMAP\nFloatFloatPair.kt\nKotlin\n*S Kotlin\n*F\n+ 1 FloatFloatPair.kt\nandroidx/collection/FloatFloatPair\n+ 2 PackingUtils.kt\nandroidx/collection/PackingUtilsKt\n+ 3 PackingHelpers.jvm.kt\nandroidx/collection/internal/PackingHelpers_jvmKt\n*L\n1#1,85:1\n48#1:93\n54#1:95\n24#2,3:86\n22#3:89\n22#3:90\n22#3:91\n22#3:92\n22#3:94\n*S KotlinDebug\n*F\n+ 1 FloatFloatPair.kt\nandroidx/collection/FloatFloatPair\n*L\n83#1:93\n83#1:95\n42#1:86,3\n48#1:89\n54#1:90\n67#1:91\n81#1:92\n83#1:94\n*E\n"})
/* loaded from: classes.dex */
public final class FloatFloatPair {
public final long packedValue;
/* renamed from: box-impl, reason: not valid java name */
public static final /* synthetic */ FloatFloatPair m10boximpl(long j) {
return new FloatFloatPair(j);
}
/* renamed from: constructor-impl, reason: not valid java name */
public static long m14constructorimpl(long j) {
return j;
}
/* renamed from: equals-impl, reason: not valid java name */
public static boolean m15equalsimpl(long j, Object obj) {
return (obj instanceof FloatFloatPair) && j == ((FloatFloatPair) obj).m21unboximpl();
}
/* renamed from: equals-impl0, reason: not valid java name */
public static final boolean m16equalsimpl0(long j, long j2) {
return j == j2;
}
public static /* synthetic */ void getPackedValue$annotations() {
}
/* renamed from: hashCode-impl, reason: not valid java name */
public static int m19hashCodeimpl(long j) {
return Long.hashCode(j);
}
public boolean equals(Object obj) {
return m15equalsimpl(this.packedValue, obj);
}
public int hashCode() {
return m19hashCodeimpl(this.packedValue);
}
/* renamed from: unbox-impl, reason: not valid java name */
public final /* synthetic */ long m21unboximpl() {
return this.packedValue;
}
/* renamed from: component1-impl, reason: not valid java name */
public static final float m11component1impl(long j) {
return Float.intBitsToFloat((int) (j >> 32));
}
/* renamed from: component2-impl, reason: not valid java name */
public static final float m12component2impl(long j) {
return Float.intBitsToFloat((int) (j & 4294967295L));
}
/* renamed from: getFirst-impl, reason: not valid java name */
public static final float m17getFirstimpl(long j) {
return Float.intBitsToFloat((int) (j >> 32));
}
/* renamed from: getSecond-impl, reason: not valid java name */
public static final float m18getSecondimpl(long j) {
return Float.intBitsToFloat((int) (j & 4294967295L));
}
/* renamed from: constructor-impl, reason: not valid java name */
public static long m13constructorimpl(float f, float f2) {
return m14constructorimpl((Float.floatToRawIntBits(f2) & 4294967295L) | (Float.floatToRawIntBits(f) << 32));
}
private /* synthetic */ FloatFloatPair(long j) {
this.packedValue = j;
}
/* renamed from: toString-impl, reason: not valid java name */
public static String m20toStringimpl(long j) {
return '(' + Float.intBitsToFloat((int) (j >> 32)) + ", " + Float.intBitsToFloat((int) (j & 4294967295L)) + ')';
}
public String toString() {
return m20toStringimpl(this.packedValue);
}
}