Home
last modified time | relevance | path

Searched refs:ZEND_STRTOL (Results 1 – 15 of 15) sorted by relevance

/php-src/Zend/
H A Dzend_long.h66 # define ZEND_STRTOL(s0, s1, base) _strtoi64((s0), (s1), (base)) macro
78 # define ZEND_STRTOL(s0, s1, base) strtoll((s0), (s1), (base)) macro
85 # define ZEND_STRTOL(s0, s1, base) strtol((s0), (s1), (base)) macro
H A Dzend_vm_trace_handlers.h105 ZVAL_LONG(&tmp, ZEND_STRTOL(buf + len, NULL, 10)); in zend_vm_trace_init()
H A Dzend_language_scanner.l1003 *t++ = (char) ZEND_STRTOL(hex_buf, NULL, 16); in zend_scan_escape_string()
1105 *t++ = (char) ZEND_STRTOL(octal_buf, NULL, 8); in zend_scan_escape_string()
1967 ZVAL_LONG(zendlval, ZEND_STRTOL(bin, &end, 2));
2009 ZVAL_LONG(zendlval, ZEND_STRTOL(octal, &end, 8));
2071 ZVAL_LONG(zendlval, ZEND_STRTOL(lnum, &end, is_octal ? 8 : 10));
2075 ZVAL_LONG(zendlval, ZEND_STRTOL(lnum, &end, 0));
2122 ZVAL_LONG(zendlval, ZEND_STRTOL(hex, &end, 16));
2144 ZVAL_LONG(zendlval, ZEND_STRTOL(yytext, &end, 10));
H A Dzend_ini.c453 return (ini_entry->orig_value ? ZEND_STRTOL(ZSTR_VAL(ini_entry->orig_value), NULL, 0) : 0); in zend_ini_long()
455 return (ini_entry->value ? ZEND_STRTOL(ZSTR_VAL(ini_entry->value), NULL, 0) : 0); in zend_ini_long()
H A Dzend_operators.c200 zend_ulong retval = (zend_ulong) ZEND_STRTOL(str, NULL, 0); in zend_atol_internal()
/php-src/ext/standard/
H A Dtype.c190 RETVAL_LONG(ZEND_STRTOL(tmpval, NULL, 2)); in PHP_FUNCTION()
197 RETVAL_LONG(ZEND_STRTOL(Z_STRVAL_P(num), NULL, base)); in PHP_FUNCTION()
H A Dphp_fopen_wrapper.c198 max_memory = ZEND_STRTOL(path, NULL, 10); in php_stream_url_wrap_php()
313 fildes_ori = ZEND_STRTOL(start, &end, 10); in php_stream_url_wrap_php()
H A Durl.c198 port = ZEND_STRTOL(port_buf, &end, 10); in php_url_parse_ex2()
264 port = ZEND_STRTOL(port_buf, &end, 10); in php_url_parse_ex2()
H A Dformatted_print.c358 zend_long num = ZEND_STRTOL(*buffer, &endptr, 10); in php_sprintf_getnumber()
H A Dhtml.c690 code_l = ZEND_STRTOL(*buf, &endptr, hexadecimal ? 16 : 10); in process_numeric_entity()
/php-src/ext/session/
H A Dmod_files.c395 dirdepth = (size_t) ZEND_STRTOL(argv[0], NULL, 10); in PS_OPEN_FUNC()
404 filemode = (int)ZEND_STRTOL(argv[1], NULL, 8); in PS_OPEN_FUNC()
H A Dsession.c748 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
768 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
/php-src/ext/json/
H A Djson_scanner.re184 ZVAL_LONG(&s->value, ZEND_STRTOL((char *) s->token, NULL, 10));
/php-src/ext/mysqlnd/
H A Dmysqlnd_connection.c1271 major = ZEND_STRTOL(p, &p, 10);
1273 minor = ZEND_STRTOL(p, &p, 10);
1275 patch = ZEND_STRTOL(p, &p, 10);
/php-src/ext/opcache/jit/
H A Dzend_jit.c3363 zend_long num = ZEND_STRTOL(ZSTR_VAL(jit), &end, 10); in zend_jit_config()

Completed in 96 milliseconds