reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
 3678   if ((min <= x && x <= max)) {
 3678   if ((min <= x && x <= max)) {
 3679    double fx = floor(x);
 3680    double cx = ceil(x);
 3681    double rd =  ((x - fx) < 0.5) ? fx : cx; /* simple rint */
 3686      if (rd < x) {
 3687        diff = x - rd;
 3688      } else if (rd > x) {
 3689        diff = rd - x;
 3693      summ = rd + x;