Lines Matching defs:eps
648 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds
654 const int minRes = int(roundEven(in0-eps));
655 const int maxRes = int(roundEven(in0+eps));
1100 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds
1106 const int minRes = int(deFloatFloor(in0-eps));
1107 const int maxRes = int(deFloatFloor(in0+eps));
1208 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds
1214 const int minRes = int(in0-eps);
1215 const int maxRes = int(in0+eps);
1336 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds
1342 const int minRes = int(roundEven(in0-eps));
1343 const int maxRes = int(roundEven(in0+eps));
1434 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds
1440 const int minRes = int(deFloatCeil(in0-eps));
1441 const int maxRes = int(deFloatCeil(in0+eps));
1551 const float eps = getEpsFromBits(1.0f, mantissaBits); // epsilon for rounding bounds
1558 if (int(deFloatFloor(in0-eps)) == int(deFloatFloor(in0+eps)))