Lines Matching refs:valMask
774 const deUint32 valMask = (bits == 32 ? ~0u : ((1u<<bits)-1u));775 const deUint32 baseVal = (offset == 32) ? (0) : ((value >> offset) & valMask);776 const deUint32 ref = baseVal | ((isSigned && (baseVal & (1<<(bits-1)))) ? ~valMask : 0u);