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

* commit '77d28ca25378530f92d409fbd72a38a1e256b59f':
  Move FieldPacker over to use large objects on 64-bit.
This commit is contained in:
Tim Murray
2014-06-12 23:05:16 +00:00
committed by Android Git Automerger

View File

@@ -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);
}