Home
last modified time | relevance | path

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

/PHP-5.3/ext/mbstring/
H A Dmbstring.c3317 int n, to_enc_len, argc, stack_level, stack_max, elistsz; in PHP_FUNCTION() local
3360 stack_max = PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()
3361 stack = (zval ***)safe_emalloc(stack_max, sizeof(zval **), 0); in PHP_FUNCTION()
3385 if (stack_level >= stack_max) { in PHP_FUNCTION()
3386 stack_max += PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()
3387 ptmp = erealloc(stack, sizeof(zval **)*stack_max); in PHP_FUNCTION()
3443 stack_max = PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()
3444 stack = (zval ***)safe_emalloc(stack_max, sizeof(zval **), 0); in PHP_FUNCTION()
3466 if (stack_level >= stack_max) { in PHP_FUNCTION()
3467 stack_max += PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()
[all …]

Completed in 25 milliseconds