Home
last modified time | relevance | path

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

/PHP-5.5/ext/mbstring/
H A Dmbstring.c3498 int n, to_enc_len, argc, stack_level, stack_max; in PHP_FUNCTION() local
3542 stack_max = PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()
3543 stack = (zval ***)safe_emalloc(stack_max, sizeof(zval **), 0); in PHP_FUNCTION()
3567 if (stack_level >= stack_max) { in PHP_FUNCTION()
3568 stack_max += PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()
3569 ptmp = erealloc(stack, sizeof(zval **)*stack_max); in PHP_FUNCTION()
3625 stack_max = PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()
3626 stack = (zval ***)safe_emalloc(stack_max, sizeof(zval **), 0); in PHP_FUNCTION()
3648 if (stack_level >= stack_max) { in PHP_FUNCTION()
3649 stack_max += PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()
[all …]

Completed in 15 milliseconds