Home
last modified time | relevance | path

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

/external/deqp/modules/gles31/functional/
Des31fShaderIntegerFunctionTests.cpp1040 static deUint32 toPrecision (deUint32 value, int numIntegerBits) in toPrecision() argument
1042 return value & getLowBitMask(numIntegerBits); in toPrecision()
1045 static deInt32 toPrecision (deInt32 value, int numIntegerBits) in toPrecision() argument
1047 return (deInt32)extendSignTo32((deUint32)value & getLowBitMask(numIntegerBits), numIntegerBits); in toPrecision()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderIntegerFunctionTests.cpp266 static deUint32 toPrecision (deUint32 value, int numIntegerBits) in toPrecision() argument
268 return value & getLowBitMask(numIntegerBits); in toPrecision()
271 static deInt32 toPrecision (deInt32 value, int numIntegerBits) in toPrecision() argument
273 return (deInt32)extendSignTo32((deUint32)value & getLowBitMask(numIntegerBits), numIntegerBits); in toPrecision()