Rabbit-R1/android (non root)/java/sources/androidx/emoji2/text/flatbuffer/ByteBufferUtil.java
2024-05-21 17:08:36 -04:00

16 lines
472 B
Java

package androidx.emoji2.text.flatbuffer;
import java.nio.ByteBuffer;
/* loaded from: classes2.dex */
public class ByteBufferUtil {
public static int getSizePrefix(ByteBuffer byteBuffer) {
return byteBuffer.getInt(byteBuffer.position());
}
public static ByteBuffer removeSizePrefix(ByteBuffer byteBuffer) {
ByteBuffer duplicate = byteBuffer.duplicate();
duplicate.position(duplicate.position() + 4);
return duplicate;
}
}