Searched refs:heap_limit (Results 1 – 13 of 13) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_intmodedep.h | 591 uint32_t heap_limit; member 851 PCRE2_SIZE heap_limit; /* As it says */ member 902 PCRE2_SIZE heap_limit; /* As it says */ member
|
D | pcre2_dfa_match.c | 428 if (newsizeK + mb->heap_used > mb->heap_limit) in more_workspace() 429 newsizeK = (uint32_t)(mb->heap_limit - mb->heap_used); in more_workspace() 3374 mb->heap_limit = PRIV(default_match_context).heap_limit; in pcre2_dfa_match() 3389 mb->heap_limit = mcontext->heap_limit; in pcre2_dfa_match() 3398 if (mb->heap_limit > re->limit_heap) in pcre2_dfa_match() 3399 mb->heap_limit = re->limit_heap; in pcre2_dfa_match()
|
D | pcre2_context.c | 421 mcontext->heap_limit = limit; in pcre2_set_heap_limit()
|
D | pcre2_match.c | 638 if ((newsize / 1024) > mb->heap_limit) in match() 640 PCRE2_SIZE maxsize = ((mb->heap_limit * 1024)/frame_size) * frame_size; in match() 6321 mb->heap_limit = (mcontext->heap_limit < re->limit_heap)? in pcre2_match() 6322 mcontext->heap_limit : re->limit_heap; in pcre2_match() 6343 if ((mb->frame_vector_size / 1024) > mb->heap_limit) in pcre2_match() 6345 if (frame_size > mb->heap_limit * 1024) return PCRE2_ERROR_HEAPLIMIT; in pcre2_match() 6346 mb->frame_vector_size = ((mb->heap_limit * 1024)/frame_size) * frame_size; in pcre2_match()
|
D | pcre2grep.c | 237 static PCRE2_SIZE heap_limit = PCRE2_UNSET; variable 425 …{ OP_SIZE, N_H_LIMIT, &heap_limit, "heap-limit=number", "set PCRE2 heap limit option (… 4026 if (heap_limit != PCRE2_UNSET) pcre2_set_heap_limit(match_context, heap_limit); in main()
|
D | pcre2test.c | 657 { "heap_limit", MOD_CTM, MOD_INT, 0, MO(heap_limit) }, 4395 depth_limit, heap_limit, match_limit, minlength, nameentrysize, namecount, in show_pattern_info() local 4405 switch(pattern_info(PCRE2_INFO_HEAPLIMIT, &heap_limit, TRUE)) in show_pattern_info() 4478 fprintf(outfile, "Heap limit = %u\n", heap_limit); in show_pattern_info()
|
/external/v8/src/heap/ |
D | heap.h | 692 v8::NearHeapLimitCallback callback, size_t heap_limit); 782 void RestoreHeapLimit(size_t heap_limit) { in RestoreHeapLimit() argument 786 Min(max_old_generation_size(), Max(heap_limit, min_limit))); in RestoreHeapLimit()
|
D | heap.cc | 3761 size_t heap_limit) { in RemoveNearHeapLimitCallback() argument 3765 if (heap_limit) { in RemoveNearHeapLimitCallback() 3766 RestoreHeapLimit(heap_limit); in RemoveNearHeapLimitCallback() 3790 size_t heap_limit = callback(data, max_old_generation_size(), in InvokeNearHeapLimitCallback() local 3792 if (heap_limit > max_old_generation_size()) { in InvokeNearHeapLimitCallback() 3794 Min(heap_limit, AllocatorLimitOnMaxOldGenerationSize())); in InvokeNearHeapLimitCallback()
|
/external/v8/src/execution/ |
D | isolate.h | 1353 size_t heap_limit);
|
/external/pcre/dist2/doc/ |
D | pcre2test.txt | 1083 heap_limit=<n> set a limit on heap memory (Kbytes) 1357 The heap_limit, match_limit, and depth_limit modifiers set the appro- 1392 For both kinds of matching, the heap_limit number, which is in
|
D | pcre2.txt | 986 The heap_limit parameter specifies, in units of kibibytes (1024 bytes),
|
/external/v8/include/ |
D | v8.h | 9475 size_t heap_limit);
|
/external/v8/src/api/ |
D | api.cc | 9106 size_t heap_limit) { in RemoveNearHeapLimitCallback() argument 9108 isolate->heap()->RemoveNearHeapLimitCallback(callback, heap_limit); in RemoveNearHeapLimitCallback()
|