HomeSort by relevance Sort by last modified time
    Searched refs:gcontext (Results 1 - 6 of 6) sorted by null

  /external/pcre/dist2/src/
pcre2_match_data.c 57 pcre2_match_data_create(uint32_t oveccount, pcre2_general_context *gcontext)
63 (pcre2_memctl *)gcontext);
79 pcre2_general_context *gcontext)
81 if (gcontext == NULL) gcontext = (pcre2_general_context *)code;
83 gcontext);
pcre2_context.c 118 pcre2_general_context *gcontext; local
121 gcontext = private_malloc(sizeof(pcre2_real_general_context), memory_data);
122 if (gcontext == NULL) return NULL;
123 gcontext->memctl.malloc = private_malloc;
124 gcontext->memctl.free = private_free;
125 gcontext->memctl.memory_data = memory_data;
126 return gcontext;
145 override the default memory handling functions if a gcontext was provided. */
148 pcre2_compile_context_create(pcre2_general_context *gcontext)
151 sizeof(pcre2_real_compile_context), (pcre2_memctl *)gcontext);
    [all...]
pcre2_jit_misc.c 107 pcre2_jit_free_unused_memory(pcre2_general_context *gcontext)
110 (void)gcontext; /* Suppress warning */
112 SLJIT_UNUSED_ARG(gcontext);
125 pcre2_general_context *gcontext)
129 (void)gcontext;
145 jit_stack = PRIV(memctl_malloc)(sizeof(pcre2_real_jit_stack), (pcre2_memctl *)gcontext);
pcre2_maketables.c 80 pcre2_maketables(pcre2_general_context *gcontext)
82 uint8_t *yield = (uint8_t *)((gcontext != NULL)?
83 gcontext->memctl.malloc(tables_length, gcontext->memctl.memory_data) :
pcre2_serialize.c 74 pcre2_general_context *gcontext)
84 const pcre2_memctl *memctl = (gcontext != NULL) ?
85 &gcontext->memctl : &PRIV(default_compile_context).memctl;
164 const uint8_t *bytes, pcre2_general_context *gcontext)
167 const pcre2_memctl *memctl = (gcontext != NULL) ?
168 &gcontext->memctl : &PRIV(default_compile_context).memctl;
213 /* The allocator provided by gcontext replaces the original one. */
216 (pcre2_memctl *)gcontext);
pcre2_substitute.c 257 pcre2_general_context *gcontext = (mcontext == NULL)? local
260 match_data = pcre2_match_data_create_from_pattern(code, gcontext);

Completed in 77 milliseconds