Home
last modified time | relevance | path

Searched refs:ceilPow2 (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Dmathutil.h28 inline unsigned int ceilPow2(unsigned int x) in ceilPow2() function
/external/dexmaker/src/test/java/com/google/dexmaker/
DDexMakerTest.java1178 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()