public class android.renderscript.Long3
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.renderscript.Long3
  super_class: java.lang.Object
{
  public long x;
    descriptor: J
    flags: (0x0001) ACC_PUBLIC

  public long y;
    descriptor: J
    flags: (0x0001) ACC_PUBLIC

  public long z;
    descriptor: J
    flags: (0x0001) ACC_PUBLIC

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.renderscript.Long3 this
         0: .line 28
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 29
            return
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/renderscript/Long3;

  public void <init>(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // long i
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            lload 1 /* i */
            dup2_x1
            putfield android.renderscript.Long3.z:J
            dup2_x1
            putfield android.renderscript.Long3.y:J
            putfield android.renderscript.Long3.x:J
         2: .line 34
            return
        end local 1 // long i
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/renderscript/Long3;
            0    3     1     i  J
    MethodParameters:
      Name  Flags
      i     

  public void <init>(long, long, long);
    descriptor: (JJJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=4
        start local 0 // android.renderscript.Long3 this
        start local 1 // long x
        start local 3 // long y
        start local 5 // long z
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 0 /* this */
            lload 1 /* x */
            putfield android.renderscript.Long3.x:J
         2: .line 38
            aload 0 /* this */
            lload 3 /* y */
            putfield android.renderscript.Long3.y:J
         3: .line 39
            aload 0 /* this */
            lload 5 /* z */
            putfield android.renderscript.Long3.z:J
         4: .line 40
            return
        end local 5 // long z
        end local 3 // long y
        end local 1 // long x
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Landroid/renderscript/Long3;
            0    5     1     x  J
            0    5     3     y  J
            0    5     5     z  J
    MethodParameters:
      Name  Flags
      x     
      y     
      z     

  public void <init>(android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // android.renderscript.Long3 source
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 0 /* this */
            aload 1 /* source */
            getfield android.renderscript.Long3.x:J
            putfield android.renderscript.Long3.x:J
         2: .line 45
            aload 0 /* this */
            aload 1 /* source */
            getfield android.renderscript.Long3.y:J
            putfield android.renderscript.Long3.y:J
         3: .line 46
            aload 0 /* this */
            aload 1 /* source */
            getfield android.renderscript.Long3.z:J
            putfield android.renderscript.Long3.z:J
         4: .line 47
            return
        end local 1 // android.renderscript.Long3 source
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Landroid/renderscript/Long3;
            0    5     1  source  Landroid/renderscript/Long3;
    MethodParameters:
        Name  Flags
      source  

  public void add(android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // android.renderscript.Long3 a
         0: .line 55
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.x:J
            aload 1 /* a */
            getfield android.renderscript.Long3.x:J
            ladd
            putfield android.renderscript.Long3.x:J
         1: .line 56
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.y:J
            aload 1 /* a */
            getfield android.renderscript.Long3.y:J
            ladd
            putfield android.renderscript.Long3.y:J
         2: .line 57
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.z:J
            aload 1 /* a */
            getfield android.renderscript.Long3.z:J
            ladd
            putfield android.renderscript.Long3.z:J
         3: .line 58
            return
        end local 1 // android.renderscript.Long3 a
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/renderscript/Long3;
            0    4     1     a  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     

  public static android.renderscript.Long3 add(android.renderscript.Long3, android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;Landroid/renderscript/Long3;)Landroid/renderscript/Long3;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // android.renderscript.Long3 a
        start local 1 // android.renderscript.Long3 b
         0: .line 68
            new android.renderscript.Long3
            dup
            invokespecial android.renderscript.Long3.<init>:()V
            astore 2 /* result */
        start local 2 // android.renderscript.Long3 result
         1: .line 69
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.x:J
            aload 1 /* b */
            getfield android.renderscript.Long3.x:J
            ladd
            putfield android.renderscript.Long3.x:J
         2: .line 70
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.y:J
            aload 1 /* b */
            getfield android.renderscript.Long3.y:J
            ladd
            putfield android.renderscript.Long3.y:J
         3: .line 71
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.z:J
            aload 1 /* b */
            getfield android.renderscript.Long3.z:J
            ladd
            putfield android.renderscript.Long3.z:J
         4: .line 73
            aload 2 /* result */
            areturn
        end local 2 // android.renderscript.Long3 result
        end local 1 // android.renderscript.Long3 b
        end local 0 // android.renderscript.Long3 a
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0       a  Landroid/renderscript/Long3;
            0    5     1       b  Landroid/renderscript/Long3;
            1    5     2  result  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     
      b     

  public void add(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // long value
         0: .line 82
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.x:J
            lload 1 /* value */
            ladd
            putfield android.renderscript.Long3.x:J
         1: .line 83
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.y:J
            lload 1 /* value */
            ladd
            putfield android.renderscript.Long3.y:J
         2: .line 84
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.z:J
            lload 1 /* value */
            ladd
            putfield android.renderscript.Long3.z:J
         3: .line 85
            return
        end local 1 // long value
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Landroid/renderscript/Long3;
            0    4     1  value  J
    MethodParameters:
       Name  Flags
      value  

  public static android.renderscript.Long3 add(android.renderscript.Long3, long);
    descriptor: (Landroid/renderscript/Long3;J)Landroid/renderscript/Long3;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // android.renderscript.Long3 a
        start local 1 // long b
         0: .line 95
            new android.renderscript.Long3
            dup
            invokespecial android.renderscript.Long3.<init>:()V
            astore 3 /* result */
        start local 3 // android.renderscript.Long3 result
         1: .line 96
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.x:J
            lload 1 /* b */
            ladd
            putfield android.renderscript.Long3.x:J
         2: .line 97
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.y:J
            lload 1 /* b */
            ladd
            putfield android.renderscript.Long3.y:J
         3: .line 98
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.z:J
            lload 1 /* b */
            ladd
            putfield android.renderscript.Long3.z:J
         4: .line 100
            aload 3 /* result */
            areturn
        end local 3 // android.renderscript.Long3 result
        end local 1 // long b
        end local 0 // android.renderscript.Long3 a
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0       a  Landroid/renderscript/Long3;
            0    5     1       b  J
            1    5     3  result  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     
      b     

  public void sub(android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // android.renderscript.Long3 a
         0: .line 109
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.x:J
            aload 1 /* a */
            getfield android.renderscript.Long3.x:J
            lsub
            putfield android.renderscript.Long3.x:J
         1: .line 110
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.y:J
            aload 1 /* a */
            getfield android.renderscript.Long3.y:J
            lsub
            putfield android.renderscript.Long3.y:J
         2: .line 111
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.z:J
            aload 1 /* a */
            getfield android.renderscript.Long3.z:J
            lsub
            putfield android.renderscript.Long3.z:J
         3: .line 112
            return
        end local 1 // android.renderscript.Long3 a
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/renderscript/Long3;
            0    4     1     a  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     

  public static android.renderscript.Long3 sub(android.renderscript.Long3, android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;Landroid/renderscript/Long3;)Landroid/renderscript/Long3;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // android.renderscript.Long3 a
        start local 1 // android.renderscript.Long3 b
         0: .line 122
            new android.renderscript.Long3
            dup
            invokespecial android.renderscript.Long3.<init>:()V
            astore 2 /* result */
        start local 2 // android.renderscript.Long3 result
         1: .line 123
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.x:J
            aload 1 /* b */
            getfield android.renderscript.Long3.x:J
            lsub
            putfield android.renderscript.Long3.x:J
         2: .line 124
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.y:J
            aload 1 /* b */
            getfield android.renderscript.Long3.y:J
            lsub
            putfield android.renderscript.Long3.y:J
         3: .line 125
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.z:J
            aload 1 /* b */
            getfield android.renderscript.Long3.z:J
            lsub
            putfield android.renderscript.Long3.z:J
         4: .line 127
            aload 2 /* result */
            areturn
        end local 2 // android.renderscript.Long3 result
        end local 1 // android.renderscript.Long3 b
        end local 0 // android.renderscript.Long3 a
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0       a  Landroid/renderscript/Long3;
            0    5     1       b  Landroid/renderscript/Long3;
            1    5     2  result  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     
      b     

  public void sub(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // long value
         0: .line 136
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.x:J
            lload 1 /* value */
            lsub
            putfield android.renderscript.Long3.x:J
         1: .line 137
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.y:J
            lload 1 /* value */
            lsub
            putfield android.renderscript.Long3.y:J
         2: .line 138
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.z:J
            lload 1 /* value */
            lsub
            putfield android.renderscript.Long3.z:J
         3: .line 139
            return
        end local 1 // long value
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Landroid/renderscript/Long3;
            0    4     1  value  J
    MethodParameters:
       Name  Flags
      value  

  public static android.renderscript.Long3 sub(android.renderscript.Long3, long);
    descriptor: (Landroid/renderscript/Long3;J)Landroid/renderscript/Long3;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // android.renderscript.Long3 a
        start local 1 // long b
         0: .line 149
            new android.renderscript.Long3
            dup
            invokespecial android.renderscript.Long3.<init>:()V
            astore 3 /* result */
        start local 3 // android.renderscript.Long3 result
         1: .line 150
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.x:J
            lload 1 /* b */
            lsub
            putfield android.renderscript.Long3.x:J
         2: .line 151
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.y:J
            lload 1 /* b */
            lsub
            putfield android.renderscript.Long3.y:J
         3: .line 152
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.z:J
            lload 1 /* b */
            lsub
            putfield android.renderscript.Long3.z:J
         4: .line 154
            aload 3 /* result */
            areturn
        end local 3 // android.renderscript.Long3 result
        end local 1 // long b
        end local 0 // android.renderscript.Long3 a
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0       a  Landroid/renderscript/Long3;
            0    5     1       b  J
            1    5     3  result  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     
      b     

  public void mul(android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // android.renderscript.Long3 a
         0: .line 163
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.x:J
            aload 1 /* a */
            getfield android.renderscript.Long3.x:J
            lmul
            putfield android.renderscript.Long3.x:J
         1: .line 164
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.y:J
            aload 1 /* a */
            getfield android.renderscript.Long3.y:J
            lmul
            putfield android.renderscript.Long3.y:J
         2: .line 165
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.z:J
            aload 1 /* a */
            getfield android.renderscript.Long3.z:J
            lmul
            putfield android.renderscript.Long3.z:J
         3: .line 166
            return
        end local 1 // android.renderscript.Long3 a
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/renderscript/Long3;
            0    4     1     a  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     

  public static android.renderscript.Long3 mul(android.renderscript.Long3, android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;Landroid/renderscript/Long3;)Landroid/renderscript/Long3;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // android.renderscript.Long3 a
        start local 1 // android.renderscript.Long3 b
         0: .line 176
            new android.renderscript.Long3
            dup
            invokespecial android.renderscript.Long3.<init>:()V
            astore 2 /* result */
        start local 2 // android.renderscript.Long3 result
         1: .line 177
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.x:J
            aload 1 /* b */
            getfield android.renderscript.Long3.x:J
            lmul
            putfield android.renderscript.Long3.x:J
         2: .line 178
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.y:J
            aload 1 /* b */
            getfield android.renderscript.Long3.y:J
            lmul
            putfield android.renderscript.Long3.y:J
         3: .line 179
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.z:J
            aload 1 /* b */
            getfield android.renderscript.Long3.z:J
            lmul
            putfield android.renderscript.Long3.z:J
         4: .line 181
            aload 2 /* result */
            areturn
        end local 2 // android.renderscript.Long3 result
        end local 1 // android.renderscript.Long3 b
        end local 0 // android.renderscript.Long3 a
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0       a  Landroid/renderscript/Long3;
            0    5     1       b  Landroid/renderscript/Long3;
            1    5     2  result  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     
      b     

  public void mul(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // long value
         0: .line 190
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.x:J
            lload 1 /* value */
            lmul
            putfield android.renderscript.Long3.x:J
         1: .line 191
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.y:J
            lload 1 /* value */
            lmul
            putfield android.renderscript.Long3.y:J
         2: .line 192
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.z:J
            lload 1 /* value */
            lmul
            putfield android.renderscript.Long3.z:J
         3: .line 193
            return
        end local 1 // long value
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Landroid/renderscript/Long3;
            0    4     1  value  J
    MethodParameters:
       Name  Flags
      value  

  public static android.renderscript.Long3 mul(android.renderscript.Long3, long);
    descriptor: (Landroid/renderscript/Long3;J)Landroid/renderscript/Long3;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // android.renderscript.Long3 a
        start local 1 // long b
         0: .line 203
            new android.renderscript.Long3
            dup
            invokespecial android.renderscript.Long3.<init>:()V
            astore 3 /* result */
        start local 3 // android.renderscript.Long3 result
         1: .line 204
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.x:J
            lload 1 /* b */
            lmul
            putfield android.renderscript.Long3.x:J
         2: .line 205
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.y:J
            lload 1 /* b */
            lmul
            putfield android.renderscript.Long3.y:J
         3: .line 206
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.z:J
            lload 1 /* b */
            lmul
            putfield android.renderscript.Long3.z:J
         4: .line 208
            aload 3 /* result */
            areturn
        end local 3 // android.renderscript.Long3 result
        end local 1 // long b
        end local 0 // android.renderscript.Long3 a
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0       a  Landroid/renderscript/Long3;
            0    5     1       b  J
            1    5     3  result  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     
      b     

  public void div(android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // android.renderscript.Long3 a
         0: .line 217
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.x:J
            aload 1 /* a */
            getfield android.renderscript.Long3.x:J
            ldiv
            putfield android.renderscript.Long3.x:J
         1: .line 218
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.y:J
            aload 1 /* a */
            getfield android.renderscript.Long3.y:J
            ldiv
            putfield android.renderscript.Long3.y:J
         2: .line 219
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.z:J
            aload 1 /* a */
            getfield android.renderscript.Long3.z:J
            ldiv
            putfield android.renderscript.Long3.z:J
         3: .line 220
            return
        end local 1 // android.renderscript.Long3 a
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/renderscript/Long3;
            0    4     1     a  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     

  public static android.renderscript.Long3 div(android.renderscript.Long3, android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;Landroid/renderscript/Long3;)Landroid/renderscript/Long3;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // android.renderscript.Long3 a
        start local 1 // android.renderscript.Long3 b
         0: .line 230
            new android.renderscript.Long3
            dup
            invokespecial android.renderscript.Long3.<init>:()V
            astore 2 /* result */
        start local 2 // android.renderscript.Long3 result
         1: .line 231
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.x:J
            aload 1 /* b */
            getfield android.renderscript.Long3.x:J
            ldiv
            putfield android.renderscript.Long3.x:J
         2: .line 232
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.y:J
            aload 1 /* b */
            getfield android.renderscript.Long3.y:J
            ldiv
            putfield android.renderscript.Long3.y:J
         3: .line 233
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.z:J
            aload 1 /* b */
            getfield android.renderscript.Long3.z:J
            ldiv
            putfield android.renderscript.Long3.z:J
         4: .line 235
            aload 2 /* result */
            areturn
        end local 2 // android.renderscript.Long3 result
        end local 1 // android.renderscript.Long3 b
        end local 0 // android.renderscript.Long3 a
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0       a  Landroid/renderscript/Long3;
            0    5     1       b  Landroid/renderscript/Long3;
            1    5     2  result  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     
      b     

  public void div(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // long value
         0: .line 244
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.x:J
            lload 1 /* value */
            ldiv
            putfield android.renderscript.Long3.x:J
         1: .line 245
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.y:J
            lload 1 /* value */
            ldiv
            putfield android.renderscript.Long3.y:J
         2: .line 246
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.z:J
            lload 1 /* value */
            ldiv
            putfield android.renderscript.Long3.z:J
         3: .line 247
            return
        end local 1 // long value
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Landroid/renderscript/Long3;
            0    4     1  value  J
    MethodParameters:
       Name  Flags
      value  

  public static android.renderscript.Long3 div(android.renderscript.Long3, long);
    descriptor: (Landroid/renderscript/Long3;J)Landroid/renderscript/Long3;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // android.renderscript.Long3 a
        start local 1 // long b
         0: .line 257
            new android.renderscript.Long3
            dup
            invokespecial android.renderscript.Long3.<init>:()V
            astore 3 /* result */
        start local 3 // android.renderscript.Long3 result
         1: .line 258
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.x:J
            lload 1 /* b */
            ldiv
            putfield android.renderscript.Long3.x:J
         2: .line 259
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.y:J
            lload 1 /* b */
            ldiv
            putfield android.renderscript.Long3.y:J
         3: .line 260
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.z:J
            lload 1 /* b */
            ldiv
            putfield android.renderscript.Long3.z:J
         4: .line 262
            aload 3 /* result */
            areturn
        end local 3 // android.renderscript.Long3 result
        end local 1 // long b
        end local 0 // android.renderscript.Long3 a
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0       a  Landroid/renderscript/Long3;
            0    5     1       b  J
            1    5     3  result  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     
      b     

  public void mod(android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // android.renderscript.Long3 a
         0: .line 271
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.x:J
            aload 1 /* a */
            getfield android.renderscript.Long3.x:J
            lrem
            putfield android.renderscript.Long3.x:J
         1: .line 272
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.y:J
            aload 1 /* a */
            getfield android.renderscript.Long3.y:J
            lrem
            putfield android.renderscript.Long3.y:J
         2: .line 273
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.z:J
            aload 1 /* a */
            getfield android.renderscript.Long3.z:J
            lrem
            putfield android.renderscript.Long3.z:J
         3: .line 274
            return
        end local 1 // android.renderscript.Long3 a
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/renderscript/Long3;
            0    4     1     a  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     

  public static android.renderscript.Long3 mod(android.renderscript.Long3, android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;Landroid/renderscript/Long3;)Landroid/renderscript/Long3;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // android.renderscript.Long3 a
        start local 1 // android.renderscript.Long3 b
         0: .line 284
            new android.renderscript.Long3
            dup
            invokespecial android.renderscript.Long3.<init>:()V
            astore 2 /* result */
        start local 2 // android.renderscript.Long3 result
         1: .line 285
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.x:J
            aload 1 /* b */
            getfield android.renderscript.Long3.x:J
            lrem
            putfield android.renderscript.Long3.x:J
         2: .line 286
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.y:J
            aload 1 /* b */
            getfield android.renderscript.Long3.y:J
            lrem
            putfield android.renderscript.Long3.y:J
         3: .line 287
            aload 2 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.z:J
            aload 1 /* b */
            getfield android.renderscript.Long3.z:J
            lrem
            putfield android.renderscript.Long3.z:J
         4: .line 289
            aload 2 /* result */
            areturn
        end local 2 // android.renderscript.Long3 result
        end local 1 // android.renderscript.Long3 b
        end local 0 // android.renderscript.Long3 a
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0       a  Landroid/renderscript/Long3;
            0    5     1       b  Landroid/renderscript/Long3;
            1    5     2  result  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     
      b     

  public void mod(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // long value
         0: .line 298
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.x:J
            lload 1 /* value */
            lrem
            putfield android.renderscript.Long3.x:J
         1: .line 299
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.y:J
            lload 1 /* value */
            lrem
            putfield android.renderscript.Long3.y:J
         2: .line 300
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.z:J
            lload 1 /* value */
            lrem
            putfield android.renderscript.Long3.z:J
         3: .line 301
            return
        end local 1 // long value
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Landroid/renderscript/Long3;
            0    4     1  value  J
    MethodParameters:
       Name  Flags
      value  

  public static android.renderscript.Long3 mod(android.renderscript.Long3, long);
    descriptor: (Landroid/renderscript/Long3;J)Landroid/renderscript/Long3;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // android.renderscript.Long3 a
        start local 1 // long b
         0: .line 311
            new android.renderscript.Long3
            dup
            invokespecial android.renderscript.Long3.<init>:()V
            astore 3 /* result */
        start local 3 // android.renderscript.Long3 result
         1: .line 312
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.x:J
            lload 1 /* b */
            lrem
            putfield android.renderscript.Long3.x:J
         2: .line 313
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.y:J
            lload 1 /* b */
            lrem
            putfield android.renderscript.Long3.y:J
         3: .line 314
            aload 3 /* result */
            aload 0 /* a */
            getfield android.renderscript.Long3.z:J
            lload 1 /* b */
            lrem
            putfield android.renderscript.Long3.z:J
         4: .line 316
            aload 3 /* result */
            areturn
        end local 3 // android.renderscript.Long3 result
        end local 1 // long b
        end local 0 // android.renderscript.Long3 a
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0       a  Landroid/renderscript/Long3;
            0    5     1       b  J
            1    5     3  result  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     
      b     

  public long length();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.renderscript.Long3 this
         0: .line 325
            ldc 3
            lreturn
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/renderscript/Long3;

  public void negate();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.renderscript.Long3 this
         0: .line 332
            aload 0 /* this */
            aload 0 /* this */
            getfield android.renderscript.Long3.x:J
            lneg
            putfield android.renderscript.Long3.x:J
         1: .line 333
            aload 0 /* this */
            aload 0 /* this */
            getfield android.renderscript.Long3.y:J
            lneg
            putfield android.renderscript.Long3.y:J
         2: .line 334
            aload 0 /* this */
            aload 0 /* this */
            getfield android.renderscript.Long3.z:J
            lneg
            putfield android.renderscript.Long3.z:J
         3: .line 335
            return
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/renderscript/Long3;

  public long dotProduct(android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // android.renderscript.Long3 a
         0: .line 344
            aload 0 /* this */
            getfield android.renderscript.Long3.x:J
            aload 1 /* a */
            getfield android.renderscript.Long3.x:J
            lmul
            aload 0 /* this */
            getfield android.renderscript.Long3.y:J
            aload 1 /* a */
            getfield android.renderscript.Long3.y:J
            lmul
            ladd
            aload 0 /* this */
            getfield android.renderscript.Long3.z:J
            aload 1 /* a */
            getfield android.renderscript.Long3.z:J
            lmul
            ladd
            lreturn
        end local 1 // android.renderscript.Long3 a
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/renderscript/Long3;
            0    1     1     a  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     

  public static long dotProduct(android.renderscript.Long3, android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;Landroid/renderscript/Long3;)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // android.renderscript.Long3 a
        start local 1 // android.renderscript.Long3 b
         0: .line 355
            aload 1 /* b */
            getfield android.renderscript.Long3.x:J
            aload 0 /* a */
            getfield android.renderscript.Long3.x:J
            lmul
            aload 1 /* b */
            getfield android.renderscript.Long3.y:J
            aload 0 /* a */
            getfield android.renderscript.Long3.y:J
            lmul
            ladd
            aload 1 /* b */
            getfield android.renderscript.Long3.z:J
            aload 0 /* a */
            getfield android.renderscript.Long3.z:J
            lmul
            ladd
            lreturn
        end local 1 // android.renderscript.Long3 b
        end local 0 // android.renderscript.Long3 a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     a  Landroid/renderscript/Long3;
            0    1     1     b  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     
      b     

  public void addMultiple(android.renderscript.Long3, long);
    descriptor: (Landroid/renderscript/Long3;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // android.renderscript.Long3 this
        start local 1 // android.renderscript.Long3 a
        start local 2 // long factor
         0: .line 365
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.x:J
            aload 1 /* a */
            getfield android.renderscript.Long3.x:J
            lload 2 /* factor */
            lmul
            ladd
            putfield android.renderscript.Long3.x:J
         1: .line 366
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.y:J
            aload 1 /* a */
            getfield android.renderscript.Long3.y:J
            lload 2 /* factor */
            lmul
            ladd
            putfield android.renderscript.Long3.y:J
         2: .line 367
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.z:J
            aload 1 /* a */
            getfield android.renderscript.Long3.z:J
            lload 2 /* factor */
            lmul
            ladd
            putfield android.renderscript.Long3.z:J
         3: .line 368
            return
        end local 2 // long factor
        end local 1 // android.renderscript.Long3 a
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Landroid/renderscript/Long3;
            0    4     1       a  Landroid/renderscript/Long3;
            0    4     2  factor  J
    MethodParameters:
        Name  Flags
      a       
      factor  

  public void set(android.renderscript.Long3);
    descriptor: (Landroid/renderscript/Long3;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // android.renderscript.Long3 a
         0: .line 376
            aload 0 /* this */
            aload 1 /* a */
            getfield android.renderscript.Long3.x:J
            putfield android.renderscript.Long3.x:J
         1: .line 377
            aload 0 /* this */
            aload 1 /* a */
            getfield android.renderscript.Long3.y:J
            putfield android.renderscript.Long3.y:J
         2: .line 378
            aload 0 /* this */
            aload 1 /* a */
            getfield android.renderscript.Long3.z:J
            putfield android.renderscript.Long3.z:J
         3: .line 379
            return
        end local 1 // android.renderscript.Long3 a
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/renderscript/Long3;
            0    4     1     a  Landroid/renderscript/Long3;
    MethodParameters:
      Name  Flags
      a     

  public void setValues(long, long, long);
    descriptor: (JJJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=4
        start local 0 // android.renderscript.Long3 this
        start local 1 // long a
        start local 3 // long b
        start local 5 // long c
         0: .line 389
            aload 0 /* this */
            lload 1 /* a */
            putfield android.renderscript.Long3.x:J
         1: .line 390
            aload 0 /* this */
            lload 3 /* b */
            putfield android.renderscript.Long3.y:J
         2: .line 391
            aload 0 /* this */
            lload 5 /* c */
            putfield android.renderscript.Long3.z:J
         3: .line 392
            return
        end local 5 // long c
        end local 3 // long b
        end local 1 // long a
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/renderscript/Long3;
            0    4     1     a  J
            0    4     3     b  J
            0    4     5     c  J
    MethodParameters:
      Name  Flags
      a     
      b     
      c     

  public long elementSum();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // android.renderscript.Long3 this
         0: .line 400
            aload 0 /* this */
            getfield android.renderscript.Long3.x:J
            aload 0 /* this */
            getfield android.renderscript.Long3.y:J
            ladd
            aload 0 /* this */
            getfield android.renderscript.Long3.z:J
            ladd
            lreturn
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/renderscript/Long3;

  public long get(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.renderscript.Long3 this
        start local 1 // int i
         0: .line 410
            iload 1 /* i */
            tableswitch { // 0 - 2
                    0: 1
                    1: 2
                    2: 3
              default: 4
          }
         1: .line 412
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.renderscript.Long3.x:J
            lreturn
         2: .line 414
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.renderscript.Long3.y:J
            lreturn
         3: .line 416
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.renderscript.Long3.z:J
            lreturn
         4: .line 418
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            ldc "Index: i"
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // int i
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Landroid/renderscript/Long3;
            0    5     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public void setAt(int, long);
    descriptor: (IJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // android.renderscript.Long3 this
        start local 1 // int i
        start local 2 // long value
         0: .line 429
            iload 1 /* i */
            tableswitch { // 0 - 2
                    0: 1
                    1: 3
                    2: 5
              default: 7
          }
         1: .line 431
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 2 /* value */
            putfield android.renderscript.Long3.x:J
         2: .line 432
            return
         3: .line 434
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 2 /* value */
            putfield android.renderscript.Long3.y:J
         4: .line 435
            return
         5: .line 437
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 2 /* value */
            putfield android.renderscript.Long3.z:J
         6: .line 438
            return
         7: .line 440
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            ldc "Index: i"
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // long value
        end local 1 // int i
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Landroid/renderscript/Long3;
            0    8     1      i  I
            0    8     2  value  J
    MethodParameters:
       Name  Flags
      i      
      value  

  public void addAt(int, long);
    descriptor: (IJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // android.renderscript.Long3 this
        start local 1 // int i
        start local 2 // long value
         0: .line 451
            iload 1 /* i */
            tableswitch { // 0 - 2
                    0: 1
                    1: 3
                    2: 5
              default: 7
          }
         1: .line 453
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.x:J
            lload 2 /* value */
            ladd
            putfield android.renderscript.Long3.x:J
         2: .line 454
            return
         3: .line 456
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.y:J
            lload 2 /* value */
            ladd
            putfield android.renderscript.Long3.y:J
         4: .line 457
            return
         5: .line 459
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield android.renderscript.Long3.z:J
            lload 2 /* value */
            ladd
            putfield android.renderscript.Long3.z:J
         6: .line 460
            return
         7: .line 462
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            ldc "Index: i"
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // long value
        end local 1 // int i
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Landroid/renderscript/Long3;
            0    8     1      i  I
            0    8     2  value  J
    MethodParameters:
       Name  Flags
      i      
      value  

  public void copyTo(long[], int);
    descriptor: ([JI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // android.renderscript.Long3 this
        start local 1 // long[] data
        start local 2 // int offset
         0: .line 473
            aload 1 /* data */
            iload 2 /* offset */
            aload 0 /* this */
            getfield android.renderscript.Long3.x:J
            lastore
         1: .line 474
            aload 1 /* data */
            iload 2 /* offset */
            iconst_1
            iadd
            aload 0 /* this */
            getfield android.renderscript.Long3.y:J
            lastore
         2: .line 475
            aload 1 /* data */
            iload 2 /* offset */
            iconst_2
            iadd
            aload 0 /* this */
            getfield android.renderscript.Long3.z:J
            lastore
         3: .line 476
            return
        end local 2 // int offset
        end local 1 // long[] data
        end local 0 // android.renderscript.Long3 this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Landroid/renderscript/Long3;
            0    4     1    data  [J
            0    4     2  offset  I
    MethodParameters:
        Name  Flags
      data    
      offset  
}
SourceFile: "Long3.java"