Lines Matching refs:fp_num
194 double fp_num; in xbuf_format_converter() local
573 fp_num = (double) va_arg(ap, long double); in xbuf_format_converter()
576 fp_num = va_arg(ap, double); in xbuf_format_converter()
582 if (zend_isnan(fp_num)) { in xbuf_format_converter()
585 } else if (zend_isinf(fp_num)) { in xbuf_format_converter()
596 s = php_conv_fp((*fmt == 'f')?'F':*fmt, fp_num, alternate_form, in xbuf_format_converter()
616 fp_num = (double) va_arg(ap, long double); in xbuf_format_converter()
619 fp_num = va_arg(ap, double); in xbuf_format_converter()
625 if (zend_isnan(fp_num)) { in xbuf_format_converter()
629 } else if (zend_isinf(fp_num)) { in xbuf_format_converter()
630 if (fp_num > 0) { in xbuf_format_converter()
654 …s = zend_gcvt(fp_num, precision, (*fmt=='H' || *fmt == 'k') ? '.' : LCONV_DECIMAL_POINT, (*fmt == … in xbuf_format_converter()