fvalue           1129 ext/standard/math.c 		double fvalue = floor(Z_DVAL_P(arg)); /* floor it just in case */
fvalue           1134 ext/standard/math.c 		if (fvalue == HUGE_VAL || fvalue == -HUGE_VAL) {
fvalue           1143 ext/standard/math.c 			*--ptr = digits[(int) fmod(fvalue, base)];
fvalue           1144 ext/standard/math.c 			fvalue /= base;
fvalue           1145 ext/standard/math.c 		} while (ptr > buf && fabs(fvalue) >= 1);