Searched refs:ceilPow2 (Results 1 – 2 of 2) sorted by relevance
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/ |
D | mathutil.h | 28 inline unsigned int ceilPow2(unsigned int x) in ceilPow2() function
|
/external/dexmaker/src/test/java/com/google/dexmaker/ |
D | DexMakerTest.java | 1178 Method ceilPow2 = getMethod(); in testWhileLoop() local 1179 assertEquals(1, ceilPow2.invoke(null, 1)); in testWhileLoop() 1180 assertEquals(2, ceilPow2.invoke(null, 2)); in testWhileLoop() 1181 assertEquals(4, ceilPow2.invoke(null, 3)); in testWhileLoop() 1182 assertEquals(16, ceilPow2.invoke(null, 10)); in testWhileLoop() 1183 assertEquals(128, ceilPow2.invoke(null, 100)); in testWhileLoop() 1184 assertEquals(1024, ceilPow2.invoke(null, 1000)); in testWhileLoop()
|