/PHP-5.5/ext/intl/formatter/ |
H A D | formatter_format.c | 94 int64_t value = (Z_TYPE_PP(number) == IS_DOUBLE)?(int64_t)Z_DVAL_PP(number):Z_LVAL_PP(number); in PHP_FUNCTION() 110 …formatted_len = unum_formatDouble(FORMATTER_OBJECT(nfo), Z_DVAL_PP(number), formatted, formatted_l… in PHP_FUNCTION() 114 …unum_formatDouble(FORMATTER_OBJECT(nfo), Z_DVAL_PP(number), formatted, formatted_len, NULL, &INTL_… in PHP_FUNCTION()
|
H A D | formatter_attr.c | 190 unum_setDoubleAttribute(FORMATTER_OBJECT(nfo), attribute, Z_DVAL_PP(value)); in PHP_FUNCTION()
|
/PHP-5.5/ext/intl/msgformat/ |
H A D | msgformat_helpers.cpp | 478 d = Z_DVAL_PP(elem); in umsg_format_helper() 485 ? Z_DVAL_PP(elem) in umsg_format_helper() 496 if (Z_DVAL_PP(elem) > (double)INT32_MAX || in umsg_format_helper() 497 Z_DVAL_PP(elem) < (double)INT32_MIN) { in umsg_format_helper() 502 tInt32 = (int32_t)Z_DVAL_PP(elem); in umsg_format_helper() 526 if (Z_DVAL_PP(elem) > (double)U_INT64_MAX || in umsg_format_helper() 527 Z_DVAL_PP(elem) < (double)U_INT64_MIN) { in umsg_format_helper() 532 tInt64 = (int64_t)Z_DVAL_PP(elem); in umsg_format_helper() 576 formattable.setDouble(Z_DVAL_PP(elem)); in umsg_format_helper()
|
/PHP-5.5/ext/standard/ |
H A D | math.c | 287 RETURN_DOUBLE(fabs(Z_DVAL_PP(value))); in PHP_FUNCTION() 311 RETURN_DOUBLE(ceil(Z_DVAL_PP(value))); in PHP_FUNCTION() 314 RETURN_DOUBLE(Z_DVAL_PP(value)); in PHP_FUNCTION() 332 RETURN_DOUBLE(floor(Z_DVAL_PP(value))); in PHP_FUNCTION() 335 RETURN_DOUBLE(Z_DVAL_PP(value)); in PHP_FUNCTION() 369 return_val = (Z_TYPE_PP(value) == IS_LONG) ? (double)Z_LVAL_PP(value) : Z_DVAL_PP(value); in PHP_FUNCTION()
|
H A D | http.c | 184 ekey_len = spprintf(&ekey, 0, "%.*G", (int) EG(precision), Z_DVAL_PP(zdata)); in php_url_encode_hash_ex()
|
H A D | pack.c | 446 v = (float) Z_DVAL_PP(val); in PHP_FUNCTION() 459 v = (double) Z_DVAL_PP(val); in PHP_FUNCTION()
|
H A D | http_fopen_wrapper.c | 200 timeout.tv_sec = (time_t) Z_DVAL_PP(tmpzval); in php_stream_url_wrap_http_ex() 201 timeout.tv_usec = (size_t) ((Z_DVAL_PP(tmpzval) - timeout.tv_sec) * 1000000); in php_stream_url_wrap_http_ex() 366 protocol_version_len = spprintf(&protocol_version, 0, "%.1F", Z_DVAL_PP(tmpzval)); in php_stream_url_wrap_http_ex()
|
H A D | var.c | 110 php_printf("%sfloat(%.*G)\n", COMMON, (int) EG(precision), Z_DVAL_PP(struc)); in php_var_dump() 265 …php_printf("%sdouble(%.*G) refcount(%u)\n", COMMON, (int) EG(precision), Z_DVAL_PP(struc), Z_REFCO… in php_debug_zval_dump() 439 tmp_len = spprintf(&tmp_str, 0,"%.*H", PG(serialize_precision), Z_DVAL_PP(struc)); in php_var_export_ex()
|
H A D | string.c | 1184 str_len = spprintf(&stmp, 0, "%.*G", (int) EG(precision), Z_DVAL_PP(tmp)); in php_implode() 3284 Z_DVAL_PP(percent) = 0; 3293 Z_DVAL_PP(percent) = sim * 200.0 / (t1_len + t2_len);
|
/PHP-5.5/ext/mysqlnd/ |
H A D | mysqlnd_bt.c | 110 double dval = Z_DVAL_PP(arg); in mysqlnd_build_trace_args()
|
/PHP-5.5/ext/intl/timezone/ |
H A D | timezone_methods.cpp | 185 Z_DVAL_PP(arg) = dval; in PHP_FUNCTION()
|
/PHP-5.5/ext/gd/ |
H A D | gd.c | 3853 strex.linespacing = Z_DVAL_PP(item); in php_imagettftext_common() 4888 matrix[i][j] = (float)Z_DVAL_PP(var2); in PHP_FUNCTION() 5177 affine[i] = Z_DVAL_PP(zval_affine_elem); in PHP_FUNCTION() 5308 x = Z_DVAL_PP(tmp); in PHP_FUNCTION() 5323 y = Z_DVAL_PP(tmp); in PHP_FUNCTION() 5405 m1[i] = Z_DVAL_PP(tmp); in PHP_FUNCTION() 5427 m2[i] = Z_DVAL_PP(tmp); in PHP_FUNCTION()
|
/PHP-5.5/ext/pgsql/ |
H A D | pgsql.c | 5579 ZVAL_DOUBLE(new_val, Z_DVAL_PP(val)); 5630 ZVAL_DOUBLE(new_val, Z_DVAL_PP(val)); 5674 ZVAL_DOUBLE(new_val, Z_DVAL_PP(val)); 5712 ZVAL_DOUBLE(new_val, Z_DVAL_PP(val)); 5974 ZVAL_DOUBLE(new_val, Z_DVAL_PP(val)); 6238 smart_str_appendl(&querystr, buf, snprintf(buf, sizeof(buf), "%F", Z_DVAL_PP(val))); 6347 …smart_str_appendl(querystr, buf, MIN(snprintf(buf, sizeof(buf), "%F", Z_DVAL_PP(val)), sizeof(buf)…
|
/PHP-5.5/Zend/ |
H A D | zend_exceptions.c | 504 double dval = Z_DVAL_PP(arg); in _build_trace_args()
|
H A D | zend_operators.h | 472 #define Z_DVAL_PP(zval_pp) Z_DVAL(**zval_pp) macro
|
H A D | zend_API.c | 360 if (Z_DVAL_PP(arg) > LONG_MAX) { in zend_parse_arg_impl() 363 } else if (Z_DVAL_PP(arg) < LONG_MIN) { in zend_parse_arg_impl() 412 *p = Z_DVAL_PP(arg); in zend_parse_arg_impl()
|
/PHP-5.5/ext/soap/ |
H A D | php_http.c | 538 Z_DVAL_PP(tmp) == 1.0) { in make_http_soap_request()
|
/PHP-5.5/ext/oci8/ |
H A D | oci8_statement.c | 1638 ((double *)bind->array.elements)[i] = (double) Z_DVAL_PP(entry); in php_oci_bind_array_helper_double()
|
/PHP-5.5/ext/mssql/ |
H A D | php_mssql.c | 2063 value=(LPBYTE)(&Z_DVAL_PP(var));
|
/PHP-5.5/ext/mysqli/ |
H A D | mysqli_api.c | 211 bind[ofs].buffer = &Z_DVAL_PP(args[i]); in mysqli_stmt_bind_param_do_bind()
|
/PHP-5.5/ext/date/ |
H A D | php_date.c | 4180 (*intobj)->diff->member = (timelib_sll)Z_DVAL_PP(z_arg); \ in php_date_interval_initialize_from_hash()
|