Home
last modified time | relevance | path

Searched refs:is_numeric_string (Results 1 – 22 of 22) sorted by relevance

/PHP-5.5/ext/sockets/
H A Dsockaddr_conv.c68 if (IS_LONG == is_numeric_string(scope, strlen(scope), &lval, &dval, 0)) { in php_set_inet6_addr()
H A Dconversions.c336 switch (is_numeric_string(Z_STRVAL(lzval), Z_STRLEN(lzval), &lval, &dval, 0)) { in from_zval_integer_common()
/PHP-5.5/ext/standard/
H A Dtype.c329 if (is_numeric_string(Z_STRVAL_PP(arg), Z_STRLEN_PP(arg), NULL, NULL, 0)) { in PHP_FUNCTION()
H A Darray.c1601 …(Z_TYPE_P(zstep) == IS_STRING && is_numeric_string(Z_STRVAL_P(zstep), Z_STRLEN_P(zstep), NULL, NUL… in PHP_FUNCTION()
1624 type1 = is_numeric_string(Z_STRVAL_P(zlow), Z_STRLEN_P(zlow), NULL, NULL, 0); in PHP_FUNCTION()
1625 type2 = is_numeric_string(Z_STRVAL_P(zhigh), Z_STRLEN_P(zhigh), NULL, NULL, 0); in PHP_FUNCTION()
H A Dbasic_functions.c4407 …if (!(optname_len > 1 && optname[0] == '0') && is_numeric_string(optname, optname_len, NULL, NULL,…
5906 …if (!(Z_STRLEN_P(arg1) > 1 && Z_STRVAL_P(arg1)[0] == '0') && is_numeric_string(Z_STRVAL_P(arg1), Z…
/PHP-5.5/ext/intl/common/
H A Dcommon_date.cpp189 type = is_numeric_string(Z_STRVAL_P(z), Z_STRLEN_P(z), &lv, &rv, 0);
/PHP-5.5/Zend/
H A Dzend_operators.c192 …if ((Z_TYPE_P(op)=is_numeric_string(strval, Z_STRLEN_P(op), &Z_LVAL_P(op), &Z_DVAL_P(op), 1)) == 0… in convert_scalar_to_number()
225 …if ((Z_TYPE(holder)=is_numeric_string(Z_STRVAL_P(op), Z_STRLEN_P(op), &Z_LVAL(holder), &Z_DVAL(hol…
1883 switch (is_numeric_string(Z_STRVAL_P(op1), Z_STRLEN_P(op1), &lval, &dval, 0)) { in increment_function()
1935 switch (is_numeric_string(Z_STRVAL_P(op1), Z_STRLEN_P(op1), &lval, &dval, 0)) { in decrement_function()
H A Dzend_execute.c1156 if (IS_LONG == is_numeric_string(Z_STRVAL_P(dim), Z_STRLEN_P(dim), NULL, NULL, -1)) { in zend_fetch_dimension_address()
1275 if (IS_LONG == is_numeric_string(Z_STRVAL_P(dim), Z_STRLEN_P(dim), NULL, NULL, -1)) { in zend_fetch_dimension_address_read()
H A Dzend_operators.h268 static inline zend_uchar is_numeric_string(const char *str, int length, long *lval, double *dval, i… in is_numeric_string() function
H A Dzend_API.c340 if ((type = is_numeric_string(Z_STRVAL_PP(arg), Z_STRLEN_PP(arg), p, &d, -1)) == 0) { in zend_parse_arg_impl()
399 if ((type = is_numeric_string(Z_STRVAL_PP(arg), Z_STRLEN_PP(arg), &l, p, -1)) == 0) { in zend_parse_arg_impl()
H A Dzend_vm_execute.h16144 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) { in zend_isset_isempty_dim_prop_obj_handler_SPEC_VAR_CONST()
18243 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) { in zend_isset_isempty_dim_prop_obj_handler_SPEC_VAR_TMP()
20724 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) { in zend_isset_isempty_dim_prop_obj_handler_SPEC_VAR_VAR()
24031 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) { in zend_isset_isempty_dim_prop_obj_handler_SPEC_VAR_CV()
25545 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) { in zend_isset_isempty_dim_prop_obj_handler_SPEC_UNUSED_CONST()
26871 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) { in zend_isset_isempty_dim_prop_obj_handler_SPEC_UNUSED_TMP()
28197 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) { in zend_isset_isempty_dim_prop_obj_handler_SPEC_UNUSED_VAR()
29949 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) { in zend_isset_isempty_dim_prop_obj_handler_SPEC_UNUSED_CV()
33450 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) { in zend_isset_isempty_dim_prop_obj_handler_SPEC_CV_CONST()
35413 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) { in zend_isset_isempty_dim_prop_obj_handler_SPEC_CV_TMP()
[all …]
H A Dzend_vm_def.h4558 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) {
/PHP-5.5/ext/filter/
H A Dlogical_filters.c388 switch (is_numeric_string(num, p - num, &lval, &dval, 0)) { in php_filter_float()
/PHP-5.5/ext/intl/timezone/
H A Dtimezone_methods.cpp180 switch (is_numeric_string(Z_STRVAL_PP(arg), Z_STRLEN_PP(arg), &lval, &dval, 0)) { in PHP_FUNCTION()
/PHP-5.5/ext/json/
H A Djson.c418 if ((type = is_numeric_string(s, len, &p, &d, 0)) != 0) { in json_escape_string()
/PHP-5.5/ext/xmlrpc/
H A Dxmlrpc-epi-php.c346 …if (!(id_len > 1 && id[0] == '0') && is_numeric_string((char *)id, id_len, NULL, NULL, 0) == IS_LO… in add_zval()
/PHP-5.5/ext/pcre/
H A Dphp_pcre.c215 …if (is_numeric_string(subpat_names[name_idx], strlen(subpat_names[name_idx]), NULL, NULL, 0) > 0) { in make_subpats_table()
/PHP-5.5/ext/soap/
H A Dphp_http.c439 …if (Z_TYPE_PP(tmp) != IS_STRING || !is_numeric_string(Z_STRVAL_PP(tmp), Z_STRLEN_PP(tmp), &redirec… in make_http_soap_request()
H A Dphp_encoding.c1041 …switch (is_numeric_string((char*)data->children->content, strlen((char*)data->children->content), … in to_zval_double()
1084 …switch ((Z_TYPE_P(ret) = is_numeric_string((char*)data->children->content, strlen((char*)data->chi… in to_zval_long()
/PHP-5.5/ext/pdo/
H A Dpdo_dbh.c284 …if (Z_TYPE_PP(v) == IS_STRING && !is_numeric_string(Z_STRVAL_PP(v), Z_STRLEN_PP(v), NULL, NULL, 0)… in PHP_METHOD()
/PHP-5.5/ext/session/
H A Dsession.c676 if ((!new_value_length || is_numeric_string(new_value, new_value_length, NULL, NULL, 0))) { in PHP_INI_MH()
/PHP-5.5/
H A DNEWS7809 - Optimized the internal is_numeric_string() function. (Matt,Ilia)

Completed in 327 milliseconds