Home
last modified time | relevance | path

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

/external/swiftshader/src/OpenGL/libGLES_CM/
Dmathutil.h37 inline unsigned int ceilPow2(unsigned int x) in ceilPow2() function
/external/swiftshader/src/OpenGL/libGL/
Dmathutil.h37 inline unsigned int ceilPow2(unsigned int x) in ceilPow2() function
/external/swiftshader/src/OpenGL/libGLESv2/
Dmathutil.h38 inline unsigned int ceilPow2(unsigned int x) in ceilPow2() function
/external/swiftshader/src/Renderer/
DLRUCache.hpp53 size = ceilPow2(n); in LRUCache()
DRenderer.cpp1973 unitCount = ceilPow2(threadCount); in initializeThreads()
1974 clusterCount = ceilPow2(threadCount); in initializeThreads()
/external/swiftshader/src/Common/
DMath.hpp186 inline int ceilPow2(int x) in ceilPow2() function
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java1230 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()