Home
last modified time | relevance | path

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

/PHP-8.3/ext/pcre/pcre2lib/
H A Dpcre2_intmodedep.h590 uint32_t heap_limit; member
861 PCRE2_SIZE heap_limit; /* As it says */ member
914 PCRE2_SIZE heap_limit; /* As it says */ member
H A Dpcre2_dfa_match.c432 if (newsizeK + mb->heap_used > mb->heap_limit) in more_workspace()
433 newsizeK = (uint32_t)(mb->heap_limit - mb->heap_used); in more_workspace()
3452 mb->heap_limit = PRIV(default_match_context).heap_limit; in pcre2_dfa_match()
3467 mb->heap_limit = mcontext->heap_limit; in pcre2_dfa_match()
3476 if (mb->heap_limit > re->limit_heap) in pcre2_dfa_match()
3477 mb->heap_limit = re->limit_heap; in pcre2_dfa_match()
H A Dpcre2_context.c421 mcontext->heap_limit = limit; in pcre2_set_heap_limit()
H A Dpcre2_match.c670 if (newsize > mb->heap_limit) in match()
672 PCRE2_SIZE maxsize = (mb->heap_limit/frame_size) * frame_size; in match()
6818 mb->heap_limit = ((mcontext->heap_limit < re->limit_heap)? in pcre2_match()
6819 mcontext->heap_limit : re->limit_heap) * 1024; in pcre2_match()
6835 if (heapframes_size > mb->heap_limit) in pcre2_match()
6837 if (frame_size > mb->heap_limit ) return PCRE2_ERROR_HEAPLIMIT; in pcre2_match()
6838 heapframes_size = mb->heap_limit; in pcre2_match()

Completed in 42 milliseconds