Lines Matching refs:mantissaBits
464 const int mantissaBits = getMinMantissaBits(precision); in compare() local
465 const deUint32 maxUlpDiff = (1u<<(23-mantissaBits))-1u; in compare()
683 const int mantissaBits = getMinMantissaBits(precision); in compare() local
684 …const deUint32 maxUlpDiff = getMaxUlpDiffFromBits(mantissaBits); // ULP diff for rounded integer … in compare()
685 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds in compare()
754 const int mantissaBits = getMinMantissaBits(precision); in compare() local
766 const deUint32 maxUlpDiff = getMaxUlpDiffFromBits(de::max(mantissaBits - bitsLost, 0)); in compare()
806 const int mantissaBits = getMinMantissaBits(precision); in getInputValues() local
807 const deUint32 mantissaMask = ~getMaxUlpDiffFromBits(mantissaBits) & ((1u<<23)-1u); in getInputValues()
887 const int mantissaBits = getMinMantissaBits(precision); in getInputValues() local
888 const deUint32 mantissaMask = ~getMaxUlpDiffFromBits(mantissaBits) & ((1u<<23)-1u); in getInputValues()
984 const int mantissaBits = getMinMantissaBits(precision); in compare() local
985 const int maxUlpDiff = getMaxUlpDiffFromBits(mantissaBits); in compare()
1135 const int mantissaBits = getMinMantissaBits(precision); in compare() local
1136 …const deUint32 maxUlpDiff = getMaxUlpDiffFromBits(mantissaBits); // ULP diff for rounded integer … in compare()
1137 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds in compare()
1243 const int mantissaBits = getMinMantissaBits(precision); in compare() local
1244 …const deUint32 maxUlpDiff = getMaxUlpDiffFromBits(mantissaBits); // ULP diff for rounded integer … in compare()
1245 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds in compare()
1371 const int mantissaBits = getMinMantissaBits(precision); in compare() local
1372 …const deUint32 maxUlpDiff = getMaxUlpDiffFromBits(mantissaBits); // ULP diff for rounded integer … in compare()
1373 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds in compare()
1469 const int mantissaBits = getMinMantissaBits(precision); in compare() local
1470 …const deUint32 maxUlpDiff = getMaxUlpDiffFromBits(mantissaBits); // ULP diff for rounded integer … in compare()
1471 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds in compare()
1587 const int mantissaBits = getMinMantissaBits(precision); in compare() local
1588 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds in compare()
1599 …const deUint32 maxUlpDiff = getMaxUlpDiffFromBits(de::max(0, mantissaBits-bitsLost)); // ULP diff … in compare()