Home
last modified time | relevance | path

Searched refs:ceilPow2 (Results 1 – 9 of 9) 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/libGLESv2/
Dmathutil.h38 inline unsigned int ceilPow2(unsigned int x) in ceilPow2() function
/external/swiftshader/src/Device/
DLRUCache.hpp53 size = ceilPow2(n); in LRUCache()
DRenderer.cpp1658 unitCount = ceilPow2(threadCount); in initializeThreads()
1659 clusterCount = ceilPow2(threadCount); in initializeThreads()
/external/swiftshader/src/Renderer/
DLRUCache.hpp53 size = ceilPow2(n); in LRUCache()
DRenderer.cpp2036 unitCount = ceilPow2(threadCount); in initializeThreads()
2037 clusterCount = ceilPow2(threadCount); in initializeThreads()
/external/swiftshader/src/System/
DMath.hpp219 inline int ceilPow2(int x) in ceilPow2() function
/external/swiftshader/src/Common/
DMath.hpp219 inline int ceilPow2(int x) in ceilPow2() function
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java1374 Method ceilPow2 = getMethod(); in testWhileLoop() local
1375 assertEquals(1, ceilPow2.invoke(null, 1)); in testWhileLoop()
1376 assertEquals(2, ceilPow2.invoke(null, 2)); in testWhileLoop()
1377 assertEquals(4, ceilPow2.invoke(null, 3)); in testWhileLoop()
1378 assertEquals(16, ceilPow2.invoke(null, 10)); in testWhileLoop()
1379 assertEquals(128, ceilPow2.invoke(null, 100)); in testWhileLoop()
1380 assertEquals(1024, ceilPow2.invoke(null, 1000)); in testWhileLoop()