Searched refs:heap_limit (Results 1 – 13 of 13) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_intmodedep.h | 589 uint32_t heap_limit; member 848 PCRE2_SIZE heap_limit; /* As it says */ member 899 PCRE2_SIZE heap_limit; /* As it says */ member
|
D | pcre2_dfa_match.c | 423 (((1024/sizeof(int))*mb->heap_limit - mb->heap_used)); in more_workspace() 3361 mb->heap_limit = PRIV(default_match_context).heap_limit; in pcre2_dfa_match() 3376 mb->heap_limit = mcontext->heap_limit; in pcre2_dfa_match() 3385 if (mb->heap_limit > re->limit_heap) in pcre2_dfa_match() 3386 mb->heap_limit = re->limit_heap; in pcre2_dfa_match()
|
D | pcre2_context.c | 409 mcontext->heap_limit = limit; in pcre2_set_heap_limit()
|
D | pcre2_match.c | 637 if ((newsize / 1024) > mb->heap_limit) in match() 639 PCRE2_SIZE maxsize = ((mb->heap_limit * 1024)/frame_size) * frame_size; in match() 6282 mb->heap_limit = (mcontext->heap_limit < re->limit_heap)? in pcre2_match() 6283 mcontext->heap_limit : re->limit_heap; in pcre2_match() 6304 if ((mb->frame_vector_size / 1024) > mb->heap_limit) in pcre2_match() 6306 if (frame_size > mb->heap_limit * 1024) return PCRE2_ERROR_HEAPLIMIT; in pcre2_match() 6307 mb->frame_vector_size = ((mb->heap_limit * 1024)/frame_size) * frame_size; in pcre2_match()
|
D | pcre2grep.c | 231 static PCRE2_SIZE heap_limit = PCRE2_UNSET; variable 419 …{ OP_SIZE, N_H_LIMIT, &heap_limit, "heap-limit=number", "set PCRE2 heap limit option (… 3986 if (heap_limit != PCRE2_UNSET) pcre2_set_heap_limit(match_context, heap_limit); in main()
|
D | pcre2test.c | 637 { "heap_limit", MOD_CTM, MOD_INT, 0, MO(heap_limit) }, 4336 depth_limit, heap_limit, match_limit, minlength, nameentrysize, namecount, in show_pattern_info() local 4346 switch(pattern_info(PCRE2_INFO_HEAPLIMIT, &heap_limit, TRUE)) in show_pattern_info() 4419 fprintf(outfile, "Heap limit = %u\n", heap_limit); in show_pattern_info()
|
/external/v8/src/heap/ |
D | heap.h | 648 size_t heap_limit); 723 void RestoreHeapLimit(size_t heap_limit) { in RestoreHeapLimit() argument 727 Min(max_old_generation_size_, Max(heap_limit, min_limit)); in RestoreHeapLimit()
|
D | heap.cc | 3638 size_t heap_limit) { in RemoveNearHeapLimitCallback() argument 3642 if (heap_limit) { in RemoveNearHeapLimitCallback() 3643 RestoreHeapLimit(heap_limit); in RemoveNearHeapLimitCallback() 3657 size_t heap_limit = callback(data, max_old_generation_size_, in InvokeNearHeapLimitCallback() local 3659 if (heap_limit > max_old_generation_size_) { in InvokeNearHeapLimitCallback() 3660 max_old_generation_size_ = heap_limit; in InvokeNearHeapLimitCallback()
|
/external/v8/src/ |
D | isolate.h | 1355 size_t heap_limit);
|
D | api.cc | 8865 size_t heap_limit) { in RemoveNearHeapLimitCallback() argument 8867 isolate->heap()->RemoveNearHeapLimitCallback(callback, heap_limit); in RemoveNearHeapLimitCallback()
|
/external/pcre/dist2/doc/ |
D | pcre2test.txt | 1076 heap_limit=<n> set a limit on heap memory (Kbytes) 1285 The heap_limit, match_limit, and depth_limit modifiers set the appro- 1320 For both kinds of matching, the heap_limit number, which is in
|
D | pcre2.txt | 973 The heap_limit parameter specifies, in units of kibibytes (1024 bytes),
|
/external/v8/include/ |
D | v8.h | 8231 size_t heap_limit);
|