Home
last modified time | relevance | path

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

/PHP-5.6/ext/mbstring/
H A Dmbstring.c3529 int n, to_enc_len, argc, stack_level, stack_max; in PHP_FUNCTION() local
3574 stack_max = PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()
3575 stack = (zval ***)safe_emalloc(stack_max, sizeof(zval **), 0); in PHP_FUNCTION()
3604 if (stack_level >= stack_max) { in PHP_FUNCTION()
3605 stack_max += PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()
3606 ptmp = erealloc(stack, sizeof(zval **)*stack_max); in PHP_FUNCTION()
3676 stack_max = PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()
3677 stack = (zval ***)safe_emalloc(stack_max, sizeof(zval **), 0); in PHP_FUNCTION()
3704 if (stack_level >= stack_max) { in PHP_FUNCTION()
3705 stack_max += PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()
[all …]

Completed in 17 milliseconds