Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,114 @@
package androidx.room.util;
import androidx.annotation.RestrictTo;
import androidx.collection.ArrayMap;
import androidx.collection.LongSparseArray;
import java.util.HashMap;
import java.util.Map;
import kotlin.jvm.functions.Function1;
import kotlin.jvm.internal.Intrinsics;
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
/* loaded from: classes.dex */
public final class RelationUtil {
public static final <K, V> void recursiveFetchHashMap(HashMap<K, V> map, boolean z, Function1 fetchBlock) {
int i;
Intrinsics.checkNotNullParameter(map, "map");
Intrinsics.checkNotNullParameter(fetchBlock, "fetchBlock");
HashMap hashMap = new HashMap(999);
loop0: while (true) {
i = 0;
for (K key : map.keySet()) {
if (z) {
Intrinsics.checkNotNullExpressionValue(key, "key");
hashMap.put(key, map.get(key));
} else {
Intrinsics.checkNotNullExpressionValue(key, "key");
hashMap.put(key, null);
}
i++;
if (i == 999) {
fetchBlock.invoke(hashMap);
if (!z) {
map.putAll(hashMap);
}
hashMap.clear();
}
}
break loop0;
}
if (i > 0) {
fetchBlock.invoke(hashMap);
if (z) {
return;
}
map.putAll(hashMap);
}
}
public static final <V> void recursiveFetchLongSparseArray(LongSparseArray<V> map, boolean z, Function1 fetchBlock) {
Intrinsics.checkNotNullParameter(map, "map");
Intrinsics.checkNotNullParameter(fetchBlock, "fetchBlock");
LongSparseArray<? extends V> longSparseArray = new LongSparseArray<>(999);
int size = map.size();
int i = 0;
int i2 = 0;
while (i < size) {
if (z) {
longSparseArray.put(map.keyAt(i), map.valueAt(i));
} else {
longSparseArray.put(map.keyAt(i), null);
}
i++;
i2++;
if (i2 == 999) {
fetchBlock.invoke(longSparseArray);
if (!z) {
map.putAll(longSparseArray);
}
longSparseArray.clear();
i2 = 0;
}
}
if (i2 > 0) {
fetchBlock.invoke(longSparseArray);
if (z) {
return;
}
map.putAll(longSparseArray);
}
}
public static final <K, V> void recursiveFetchArrayMap(ArrayMap<K, V> map, boolean z, Function1 fetchBlock) {
Intrinsics.checkNotNullParameter(map, "map");
Intrinsics.checkNotNullParameter(fetchBlock, "fetchBlock");
ArrayMap arrayMap = new ArrayMap(999);
int size = map.size();
int i = 0;
int i2 = 0;
while (i < size) {
if (z) {
arrayMap.put(map.keyAt(i), map.valueAt(i));
} else {
arrayMap.put(map.keyAt(i), null);
}
i++;
i2++;
if (i2 == 999) {
fetchBlock.invoke(arrayMap);
if (!z) {
map.putAll((Map) arrayMap);
}
arrayMap.clear();
i2 = 0;
}
}
if (i2 > 0) {
fetchBlock.invoke(arrayMap);
if (z) {
return;
}
map.putAll((Map) arrayMap);
}
}
}