Here you can find the source of roundUp(int groupSize, int globalSize)
public static final int roundUp(int groupSize, int globalSize)
//package com.java2s; public class Main { public static final int roundUp(int groupSize, int globalSize) { int r = globalSize % groupSize; if (r == 0) { return globalSize; } else {//from w ww . ja v a 2s . co m return globalSize + groupSize - r; } } }