Home
last modified time | relevance | path

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

/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTMisc.cpp377 unsigned int PVRTGetPOTHigher(unsigned int uiOriginalValue, int iTimesHigher) in PVRTGetPOTHigher() argument
379 if(uiOriginalValue == 0 || iTimesHigher < 0) in PVRTGetPOTHigher()
385 while (uiSize < uiOriginalValue) uiSize *= 2; in PVRTGetPOTHigher()
407 unsigned int PVRTGetPOTLower(unsigned int uiOriginalValue, int iTimesLower) in PVRTGetPOTLower() argument
409 if(uiOriginalValue == 0 || iTimesLower < 0) in PVRTGetPOTLower()
413 unsigned int uiSize = PVRTGetPOTHigher(uiOriginalValue,1); in PVRTGetPOTLower()
DPVRTMisc.h82 unsigned int PVRTGetPOTHigher(unsigned int uiOriginalValue, int iTimesHigher);
93 unsigned int PVRTGetPOTLower(unsigned int uiOriginalValue, int iTimesLower);