Home
last modified time | relevance | path

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

/php-src/ext/sockets/
H A Dsockaddr_conv.c70 if (IS_LONG == is_numeric_string(scope, strlen(scope), &lval, &dval, 0)) { in php_set_inet6_addr()
H A Dconversions.c341 switch (is_numeric_string(Z_STRVAL(lzval), Z_STRLEN(lzval), &lval, &dval, 0)) { in from_zval_integer_common()
/php-src/ext/intl/common/
H A Dcommon_date.cpp179 type = is_numeric_string(Z_STRVAL_P(z), Z_STRLEN_P(z), &lv, &rv, 0); in intl_zval_to_millis()
/php-src/ext/standard/
H A Dtype.c354 if (is_numeric_string(Z_STRVAL_P(arg), Z_STRLEN_P(arg), NULL, NULL, 0)) { in _zend_is_numeric()
H A Dbasic_functions.c1067 …if (!(optname_len > 1 && optname[0] == '0') && is_numeric_string(optname, optname_len, NULL, NULL,…
2424 …if (!(Z_STRLEN_P(arg1) > 1 && Z_STRVAL_P(arg1)[0] == '0') && is_numeric_string(Z_STRVAL_P(arg1), Z…
/php-src/ext/json/
H A Djson_encoder.c336 if ((type = is_numeric_string(s, len, &p, &d, 0)) != 0) { in php_json_escape_string()
/php-src/Zend/
H A Dzend_operators.c254 …if ((Z_TYPE_INFO_P(op)=is_numeric_string(ZSTR_VAL(str), ZSTR_LEN(str), &Z_LVAL_P(op), &Z_DVAL_P(op… in convert_scalar_to_number()
303 …if ((Z_TYPE_INFO_P(holder) = is_numeric_string(Z_STRVAL_P(op), Z_STRLEN_P(op), &Z_LVAL_P(holder), … in _zendi_convert_scalar_to_number_silent()
932 if (0 == (type = is_numeric_string(Z_STRVAL_P(op), Z_STRLEN_P(op), &lval, &dval, true))) { in zval_get_long_func()
2198 uint8_t type = is_numeric_string(ZSTR_VAL(str), ZSTR_LEN(str), &str_lval, &str_dval, 0); in compare_long_to_string()
2220 uint8_t type = is_numeric_string(ZSTR_VAL(str), ZSTR_LEN(str), &str_lval, &str_dval, 0); in compare_double_to_string()
3503 return is_numeric_string(ZSTR_VAL(str), ZSTR_LEN(str), lval, dval, false);
H A Dzend_operators.h157 static zend_always_inline uint8_t is_numeric_string(const char *str, size_t length, zend_long *lval… in is_numeric_string() function
H A Dzend_compile.c4391 || is_numeric_string(Z_STRVAL_P(val), Z_STRLEN_P(val), NULL, NULL, 0)) { in zend_compile_func_in_array()
5877 && is_numeric_string(Z_STRVAL_P(cond_zv), Z_STRLEN_P(cond_zv), NULL, NULL, 0)) { in determine_switch_jumptable_type()
8967 && !is_numeric_string(Z_STRVAL_P(op1), Z_STRLEN_P(op1), NULL, NULL, 0)) { in zend_binary_op_produces_error()
8972 && !is_numeric_string(Z_STRVAL_P(op2), Z_STRLEN_P(op2), NULL, NULL, 0)) { in zend_binary_op_produces_error()
11122 …} else if (Z_TYPE_P(dim) != IS_STRING || is_numeric_string(Z_STRVAL_P(dim), Z_STRLEN_P(dim), &offs… in zend_eval_const_expr()
H A Dzend_execute.c2964 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) { in zend_isset_dim_slow()
3003 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, 0))) { in zend_isempty_dim_slow()
/php-src/ext/intl/timezone/
H A Dtimezone_methods.cpp169 switch (is_numeric_string(Z_STRVAL_P(arg), Z_STRLEN_P(arg), &lval, &dval, 0)) { in PHP_FUNCTION()
/php-src/ext/filter/
H A Dlogical_filters.c445 switch (is_numeric_string(num, p - num, &lval, &dval, 0)) { in php_filter_float()
/php-src/ext/pdo_firebird/
H A Dfirebird_statement.c684 switch (is_numeric_string(Z_STRVAL_P(parameter), Z_STRLEN_P(parameter), &lval, &dval, 0)) { in pdo_firebird_stmt_param_hook()
/php-src/ext/pdo/
H A Dpdo_dbh.c367 !is_numeric_string(Z_STRVAL_P(v), Z_STRLEN_P(v), NULL, NULL, 0) && Z_STRLEN_P(v) > 0) { in internal_construct()
/php-src/ext/soap/
H A Dphp_http.c436 …if (Z_TYPE_P(tmp) != IS_STRING || !is_numeric_string(Z_STRVAL_P(tmp), Z_STRLEN_P(tmp), &redirect_m… in make_http_soap_request()
H A Dphp_encoding.c993 …switch (is_numeric_string((char*)data->children->content, strlen((char*)data->children->content), … in to_zval_double()
1033 …switch (is_numeric_string((char*)data->children->content, strlen((char*)data->children->content), … in to_zval_long()
/php-src/ext/opcache/jit/
H A Dzend_jit_helpers.c1126 if (IS_LONG == is_numeric_string(Z_STRVAL_P(dim), Z_STRLEN_P(dim), NULL, NULL, false)) { in zend_jit_fetch_dim_str_is_helper()
1759 && IS_LONG == is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), NULL, NULL, false))) { in zend_jit_isset_dim_helper()
/php-src/Zend/Optimizer/
H A Dsccp.c349 if (IS_LONG == is_numeric_string( in zval_to_string_offset()
/php-src/ext/pcre/
H A Dphp_pcre.c556 …if (is_numeric_string(ZSTR_VAL(subpat_names[name_idx]), ZSTR_LEN(subpat_names[name_idx]), NULL, NU… in make_subpats_table()
/php-src/ext/session/
H A Dsession.c680 …if ((!ZSTR_LEN(new_value) || is_numeric_string(ZSTR_VAL(new_value), ZSTR_LEN(new_value), NULL, NUL… in PHP_INI_MH()
/php-src/ext/dom/
H A Dphp_dom.c2154 …if (0 == (is_numeric_string_type = is_numeric_string(Z_STRVAL_P(offset), Z_STRLEN_P(offset), lval,… in dom_nodemap_or_nodelist_process_offset_as_named()

Completed in 145 milliseconds