Lines Matching defs:eps
723 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds
729 const int minRes = int(roundEven(in0-eps));
730 const int maxRes = int(roundEven(in0+eps));
1180 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds
1186 const int minRes = int(deFloatFloor(in0-eps));
1187 const int maxRes = int(deFloatFloor(in0+eps));
1288 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds
1294 const int minRes = int(in0-eps);
1295 const int maxRes = int(in0+eps);
1416 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds
1422 const int minRes = int(roundEven(in0-eps));
1423 const int maxRes = int(roundEven(in0+eps));
1514 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds
1520 const int minRes = int(deFloatCeil(in0-eps));
1521 const int maxRes = int(deFloatCeil(in0+eps));
1631 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds
1638 if (int(deFloatFloor(in0-eps)) == int(deFloatFloor(in0+eps)))