Searched refs:is_numeric_string_ex (Results 1 – 5 of 5) sorted by relevance
/PHP-8.3/Zend/ |
H A D | zend_ini_parser.y | 298 if ((type = is_numeric_string_ex(str, str_len, &lval, &dval, 0, &overflow, NULL)) != 0) { in convert_to_number()
|
H A D | zend_operators.h | 161 static zend_always_inline uint8_t is_numeric_string_ex(const char *str, size_t length, zend_long *l… in is_numeric_string_ex() function 171 return is_numeric_string_ex(str, length, lval, dval, allow_errors, NULL, NULL); in is_numeric_string()
|
H A D | zend_operators.c | 339 if (0 == (Z_TYPE_INFO_P(holder) = is_numeric_string_ex(Z_STRVAL_P(op), Z_STRLEN_P(op), in _zendi_try_convert_scalar_to_number() 406 type = is_numeric_string_ex(Z_STRVAL_P(op), Z_STRLEN_P(op), &lval, &dval, in zendi_try_get_long() 3282 if ((ret1 = is_numeric_string_ex(s1->val, s1->len, &lval1, &dval1, false, &oflow1, NULL)) && 3283 (ret2 = is_numeric_string_ex(s2->val, s2->len, &lval2, &dval2, false, &oflow2, NULL))) { 3330 if ((ret1 = is_numeric_string_ex(s1->val, s1->len, &lval1, &dval1, false, &oflow1, NULL)) && 3331 (ret2 = is_numeric_string_ex(s2->val, s2->len, &lval2, &dval2, false, &oflow2, NULL))) {
|
H A D | zend_execute.c | 1650 if (IS_LONG == is_numeric_string_ex(Z_STRVAL_P(dim), Z_STRLEN_P(dim), &offset, NULL, in zend_check_string_offset() 2757 if (IS_LONG == is_numeric_string_ex(Z_STRVAL_P(dim), Z_STRLEN_P(dim), &offset, in zend_fetch_dimension_address_read()
|
/PHP-8.3/ext/opcache/jit/ |
H A D | zend_jit_helpers.c | 1032 if (IS_LONG == is_numeric_string_ex(Z_STRVAL_P(dim), Z_STRLEN_P(dim), &offset, NULL, in zend_check_string_offset()
|
Completed in 54 milliseconds