Home
last modified time | relevance | path

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

/PHP-8.0/ext/filter/
H A Dlogical_filters.c95 zend_long ctx_value; in php_filter_parse_int() local
130 ctx_value = (ctx_value * 10) + digit; in php_filter_parse_int()
132 ctx_value = (ctx_value * 10) - digit; in php_filter_parse_int()
141 *ret = ctx_value; in php_filter_parse_int()
147 zend_ulong ctx_value = 0; in php_filter_parse_octal() local
155 ((ctx_value = ctx_value * 8) > ((zend_ulong)(~(zend_long)0)) - n)) { in php_filter_parse_octal()
158 ctx_value += n; in php_filter_parse_octal()
185 ((ctx_value = ctx_value * 16) > ((zend_ulong)(~(zend_long)0)) - n)) { in php_filter_parse_hex()
188 ctx_value += n; in php_filter_parse_hex()
204 zend_long ctx_value; in php_filter_int() local
[all …]

Completed in 7 milliseconds