Lines Matching refs:int_result
2737 double int_result = floor(value); in FPRoundInt() local
2738 double error = value - int_result; in FPRoundInt()
2744 int_result = -0.0; in FPRoundInt()
2746 } else if ((error > 0.5) || ((error == 0.5) && (int_result >= 0.0))) { in FPRoundInt()
2749 int_result++; in FPRoundInt()
2757 int_result = -0.0; in FPRoundInt()
2762 ((error == 0.5) && (modulo(int_result, 2) != 0))) { in FPRoundInt()
2763 int_result++; in FPRoundInt()
2771 int_result = ceil(value); in FPRoundInt()
2780 int_result = ceil(value); in FPRoundInt()
2785 return int_result; in FPRoundInt()