Home | History | Annotate | Download | only in functional

Lines Matching defs:findMSB

1022 static int findMSB (deInt32 value)
1032 static int findMSB (deUint32 value)
1054 : IntegerFunctionCase(context, getIntegerFuncCaseName(baseType, precision, shaderType).c_str(), "findMSB", shaderType)
1061 m_spec.source = "msb = findMSB(value);";
1086 const int minRef = isSigned ? findMSB(toPrecision(deInt32(value), integerLength)) : findMSB(toPrecision(value, integerLength));
1087 const int maxRef = isSigned ? findMSB(deInt32(value)) : findMSB(value);
1169 addFunctionCases<FindMSBCase> (this, "findmsb", true, true, true, ALL_SHADERS);