Here you can find the source of ceilMaskPOT(int n)
public static int ceilMaskPOT(int n)
//package com.java2s; public class Main { public static int ceilMaskPOT(int n) { n |= n >>> 1;/*from ww w . j av a 2s .c om*/ n |= n >>> 2; n |= n >>> 4; n |= n >>> 8; n |= n >>> 16; return n; } }