Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 604ea0e4 authored by Tim Murray's avatar Tim Murray Committed by Android Git Automerger
Browse files

am b1c9430c: am 77d28ca2: Merge "Move FieldPacker over to use large objects on 64-bit."

* commit 'b1c9430c':
  Move FieldPacker over to use large objects on 64-bit.
parents 50ece5ec b1c9430c
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -234,6 +234,9 @@ public class FieldPacker {
        if (obj != null) {
            if (RenderScript.sPointerSize == 8) {
                addI64(obj.getID(null));
                addI64(0);
                addI64(0);
                addI64(0);
            }
            else {
                addI32((int)obj.getID(null));
@@ -241,6 +244,9 @@ public class FieldPacker {
        } else {
            if (RenderScript.sPointerSize == 8) {
                addI64(0);
                addI64(0);
                addI64(0);
                addI64(0);
            } else {
                addI32(0);
            }