Home | History | Annotate | Download | only in functional

Lines Matching full:issigned

376 		const bool				isSigned		= glu::isDataTypeIntOrIVec(type);
407 if (isSigned)
472 const bool isSigned = glu::isDataTypeIntOrIVec(type);
501 if (isSigned)
765 const bool isSigned = glu::isDataTypeIntOrIVec(type);
776 const deUint32 ref = baseVal | ((isSigned && (baseVal & (1<<(bits-1)))) ? ~valMask : 0u);
1078 const bool isSigned = glu::isDataTypeIntOrIVec(type);
1086 const int minRef = isSigned ? findMSB(toPrecision(deInt32(value), integerLength)) : findMSB(toPrecision(value, integerLength));
1087 const int maxRef = isSigned ? findMSB(deInt32(value)) : findMSB(value);