public class org.eclipse.jdt.internal.core.nd.util.MathUtils
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jdt.internal.core.nd.util.MathUtils
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.nd.util.MathUtils this
         0: .line 16
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.eclipse.jdt.internal.core.nd.util.MathUtils this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/nd/util/MathUtils;

  public static int roundUpToNearestMultiple(int, int);
    descriptor: (II)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // int numberToRound
        start local 1 // int toMultipleOfThis
         0: .line 26
            iload 0 /* numberToRound */
            iload 1 /* toMultipleOfThis */
            iadd
            iconst_1
            isub
            iload 1 /* toMultipleOfThis */
            idiv
            iload 1 /* toMultipleOfThis */
            imul
            ireturn
        end local 1 // int toMultipleOfThis
        end local 0 // int numberToRound
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0     numberToRound  I
            0    1     1  toMultipleOfThis  I
    MethodParameters:
                  Name  Flags
      numberToRound     
      toMultipleOfThis  

  public static int roundUpToNearestMultipleOfPowerOfTwo(int, int);
    descriptor: (II)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // int numberToRound
        start local 1 // int aPowerOfTwo
         0: .line 39
            iload 0 /* numberToRound */
            iload 1 /* aPowerOfTwo */
            iadd
            iconst_1
            isub
            iload 1 /* aPowerOfTwo */
            iconst_1
            isub
            iconst_m1
            ixor
            iand
            ireturn
        end local 1 // int aPowerOfTwo
        end local 0 // int numberToRound
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0  numberToRound  I
            0    1     1    aPowerOfTwo  I
    MethodParameters:
               Name  Flags
      numberToRound  
      aPowerOfTwo    
}
SourceFile: "MathUtils.java"