/PHP-7.1/Zend/ |
H A D | zend_long.h | 68 # define ZEND_STRTOL(s0, s1, base) _strtoi64((s0), (s1), (base)) macro 80 # define ZEND_STRTOL(s0, s1, base) strtoll((s0), (s1), (base)) macro 87 # define ZEND_STRTOL(s0, s1, base) strtol((s0), (s1), (base)) macro
|
H A D | zend_language_scanner.l | 945 *t++ = (char) ZEND_STRTOL(hex_buf, NULL, 16); in zend_scan_escape_string() 1059 *t++ = (char) ZEND_STRTOL(octal_buf, NULL, 8); in zend_scan_escape_string() 1635 ZVAL_LONG(zendlval, ZEND_STRTOL(bin, &end, 2)); 1651 ZVAL_LONG(zendlval, ZEND_STRTOL(yytext, &end, 0)); 1662 ZVAL_LONG(zendlval, ZEND_STRTOL(yytext, &end, 0)); 1706 ZVAL_LONG(zendlval, ZEND_STRTOL(hex, &end, 16)); 1722 ZVAL_LONG(zendlval, ZEND_STRTOL(yytext, &end, 10));
|
H A D | zend_ini.c | 428 return (ini_entry->orig_value ? ZEND_STRTOL(ZSTR_VAL(ini_entry->orig_value), NULL, 0) : 0); in zend_ini_long() 430 return (ini_entry->value ? ZEND_STRTOL(ZSTR_VAL(ini_entry->value), NULL, 0) : 0); in zend_ini_long()
|
H A D | zend_language_scanner.c | 947 *t++ = (char) ZEND_STRTOL(hex_buf, NULL, 16); in zend_scan_escape_string() 1061 *t++ = (char) ZEND_STRTOL(octal_buf, NULL, 8); in zend_scan_escape_string() 2513 ZVAL_LONG(zendlval, ZEND_STRTOL(yytext, &end, 0)); in lex_scan() 2524 ZVAL_LONG(zendlval, ZEND_STRTOL(yytext, &end, 0)); in lex_scan() 4037 ZVAL_LONG(zendlval, ZEND_STRTOL(bin, &end, 2)); in lex_scan() 4091 ZVAL_LONG(zendlval, ZEND_STRTOL(hex, &end, 16)); in lex_scan() 7649 ZVAL_LONG(zendlval, ZEND_STRTOL(yytext, &end, 10)); in lex_scan()
|
H A D | zend_operators.c | 90 retval = ZEND_STRTOL(str, NULL, 0); in zend_atoi() 118 retval = ZEND_STRTOL(str, NULL, 0); in zend_atol() 332 ZVAL_LONG(op, ZEND_STRTOL(ZSTR_VAL(str), NULL, base)); in convert_to_long_base()
|
/PHP-7.1/ext/standard/ |
H A D | type.c | 187 RETVAL_LONG(ZEND_STRTOL(tmpval, NULL, 2)); in PHP_FUNCTION() 194 RETVAL_LONG(ZEND_STRTOL(Z_STRVAL_P(num), NULL, base)); in PHP_FUNCTION()
|
H A D | php_fopen_wrapper.c | 200 max_memory = ZEND_STRTOL(path, NULL, 10); in php_stream_url_wrap_php() 323 fildes_ori = ZEND_STRTOL(start, &end, 10); in php_stream_url_wrap_php()
|
H A D | url.c | 189 port = ZEND_STRTOL(port_buf, NULL, 10); in php_url_parse_ex() 268 port = ZEND_STRTOL(port_buf, NULL, 10); in php_url_parse_ex()
|
H A D | formatted_print.c | 344 register zend_long num = ZEND_STRTOL(&buffer[*pos], &endptr, 10); in php_sprintf_getnumber()
|
H A D | var_unserializer.c | 330 result = ZEND_STRTOL((const char*)p, &end, 0); in parse_iv2()
|
H A D | html.c | 808 code_l = ZEND_STRTOL(*buf, &endptr, hexadecimal ? 16 : 10); in process_numeric_entity()
|
H A D | var_unserializer.re | 334 result = ZEND_STRTOL((const char*)p, &end, 0);
|
/PHP-7.1/ext/session/ |
H A D | mod_files.c | 403 dirdepth = (size_t) ZEND_STRTOL(argv[0], NULL, 10); in PS_OPEN_FUNC() 412 filemode = (int)ZEND_STRTOL(argv[1], NULL, 8); in PS_OPEN_FUNC()
|
H A D | session.c | 654 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH() 672 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
|
/PHP-7.1/ext/json/ |
H A D | json_scanner.re | 174 ZVAL_LONG(&s->value, ZEND_STRTOL((char *) s->token, NULL, 10));
|
H A D | json_scanner.c | 315 ZVAL_LONG(&s->value, ZEND_STRTOL((char *) s->token, NULL, 10)); in php_json_scan()
|
/PHP-7.1/ext/mysqlnd/ |
H A D | mysqlnd_connection.c | 1487 major = ZEND_STRTOL(p, &p, 10); 1489 minor = ZEND_STRTOL(p, &p, 10); 1491 patch = ZEND_STRTOL(p, &p, 10);
|