Searched refs:ZEND_STRTOL (Results 1 – 15 of 15) sorted by relevance
/php-src/Zend/ |
H A D | zend_long.h | 66 # 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 D | zend_vm_trace_handlers.h | 105 ZVAL_LONG(&tmp, ZEND_STRTOL(buf + len, NULL, 10)); in zend_vm_trace_init()
|
H A D | zend_language_scanner.l | 1003 *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() 1973 ZVAL_LONG(zendlval, ZEND_STRTOL(bin, &end, 2)); 2015 ZVAL_LONG(zendlval, ZEND_STRTOL(octal, &end, 8)); 2077 ZVAL_LONG(zendlval, ZEND_STRTOL(lnum, &end, is_octal ? 8 : 10)); 2081 ZVAL_LONG(zendlval, ZEND_STRTOL(lnum, &end, 0)); 2128 ZVAL_LONG(zendlval, ZEND_STRTOL(hex, &end, 16)); 2150 ZVAL_LONG(zendlval, ZEND_STRTOL(yytext, &end, 10));
|
H A D | zend_ini.c | 454 return (ini_entry->orig_value ? ZEND_STRTOL(ZSTR_VAL(ini_entry->orig_value), NULL, 0) : 0); in zend_ini_long() 456 return (ini_entry->value ? ZEND_STRTOL(ZSTR_VAL(ini_entry->value), NULL, 0) : 0); in zend_ini_long()
|
H A D | zend_operators.c | 200 zend_ulong retval = (zend_ulong) ZEND_STRTOL(str, NULL, 0); in zend_atol_internal()
|
/php-src/ext/standard/ |
H A D | type.c | 189 RETVAL_LONG(ZEND_STRTOL(tmpval, NULL, 2)); in PHP_FUNCTION() 196 RETVAL_LONG(ZEND_STRTOL(Z_STRVAL_P(num), NULL, base)); in PHP_FUNCTION()
|
H A D | php_fopen_wrapper.c | 198 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 D | url.c | 186 port = ZEND_STRTOL(port_buf, &end, 10); in php_url_parse_ex2() 252 port = ZEND_STRTOL(port_buf, &end, 10); in php_url_parse_ex2()
|
H A D | formatted_print.c | 355 zend_long num = ZEND_STRTOL(*buffer, &endptr, 10); in php_sprintf_getnumber()
|
H A D | html.c | 686 code_l = ZEND_STRTOL(*buf, &endptr, hexadecimal ? 16 : 10); in process_numeric_entity()
|
/php-src/ext/session/ |
H A D | mod_files.c | 395 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 D | session.c | 785 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH() 808 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
|
/php-src/ext/json/ |
H A D | json_scanner.re | 184 ZVAL_LONG(&s->value, ZEND_STRTOL((char *) s->token, NULL, 10));
|
/php-src/ext/mysqlnd/ |
H A D | mysqlnd_connection.c | 1271 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 D | zend_jit.c | 3498 zend_long num = ZEND_STRTOL(ZSTR_VAL(jit), &end, 10); in zend_jit_config()
|
Completed in 81 milliseconds