Searched refs:ceilPow2 (Results 1 – 7 of 7) sorted by relevance
/external/swiftshader/src/OpenGL/libGL/ |
D | mathutil.h | 37 inline unsigned int ceilPow2(unsigned int x) in ceilPow2() function
|
/external/swiftshader/src/OpenGL/libGLES_CM/ |
D | mathutil.h | 37 inline unsigned int ceilPow2(unsigned int x) in ceilPow2() function
|
/external/swiftshader/src/OpenGL/libGLESv2/ |
D | mathutil.h | 37 inline unsigned int ceilPow2(unsigned int x) in ceilPow2() function
|
/external/swiftshader/src/Renderer/ |
D | LRUCache.hpp | 53 size = ceilPow2(n); in LRUCache()
|
D | Renderer.cpp | 1950 unitCount = ceilPow2(threadCount); in initializeThreads() 1951 clusterCount = ceilPow2(threadCount); in initializeThreads()
|
/external/swiftshader/src/Common/ |
D | Math.hpp | 186 inline int ceilPow2(int x) in ceilPow2() function
|
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/ |
D | DexMakerTest.java | 1230 Method ceilPow2 = getMethod(); in testWhileLoop() local 1231 assertEquals(1, ceilPow2.invoke(null, 1)); in testWhileLoop() 1232 assertEquals(2, ceilPow2.invoke(null, 2)); in testWhileLoop() 1233 assertEquals(4, ceilPow2.invoke(null, 3)); in testWhileLoop() 1234 assertEquals(16, ceilPow2.invoke(null, 10)); in testWhileLoop() 1235 assertEquals(128, ceilPow2.invoke(null, 100)); in testWhileLoop() 1236 assertEquals(1024, ceilPow2.invoke(null, 1000)); in testWhileLoop()
|