Searched refs:stack_max (Results 1 – 1 of 1) sorted by relevance
3699 int n, argc, stack_level, stack_max; in PHP_FUNCTION() local3745 stack_max = PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()3746 stack = (zval *)safe_emalloc(stack_max, sizeof(zval), 0); in PHP_FUNCTION()3783 if (stack_level >= stack_max) { in PHP_FUNCTION()3784 stack_max += PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()3785 ptmp = erealloc(stack, sizeof(zval) * stack_max); in PHP_FUNCTION()3856 stack_max = PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()3857 stack = (zval*)safe_emalloc(stack_max, sizeof(zval), 0); in PHP_FUNCTION()3893 if (stack_level >= stack_max) { in PHP_FUNCTION()3894 stack_max += PHP_MBSTR_STACK_BLOCK_SIZE; in PHP_FUNCTION()[all …]
Completed in 18 milliseconds