Home
last modified time | relevance | path

Searched refs:executable_jit (Results 1 – 15 of 15) sorted by relevance

/third_party/pcre2/pcre2/src/
Dpcre2_jit_misc.c78 PRIV(jit_free)(void *executable_jit, pcre2_memctl *memctl) in PRIV()
81 (void)executable_jit; in PRIV()
85 executable_functions *functions = (executable_functions *)executable_jit; in PRIV()
220 PRIV(jit_get_size)(void *executable_jit) in PRIV()
223 (void)executable_jit; in PRIV()
226 sljit_uw *executable_sizes = ((executable_functions *)executable_jit)->executable_sizes; in PRIV()
Dpcre2_serialize.c146 (void)memset(dst_bytes + offsetof(pcre2_real_code, executable_jit), 0, in pcre2_serialize_encode()
243 dst_re->executable_jit = NULL; in pcre2_serialize_decode()
Dpcre2_pattern_info.c191 *((size_t *)where) = (re->executable_jit != NULL)? in pcre2_pattern_info()
192 PRIV(jit_get_size)(re->executable_jit) : 0; in pcre2_pattern_info()
Dpcre2_jit_match.c103 executable_functions *functions = (executable_functions *)re->executable_jit; in pcre2_jit_match()
Dpcre2_intmodedep.h621 void *executable_jit; /* Pointer to JIT code */ member
Dpcre2_compile.c1201 newcode->executable_jit = NULL; in pcre2_code_copy()
1236 newcode->executable_jit = NULL; in pcre2_code_copy_with_tables()
1267 if (code->executable_jit != NULL) in pcre2_code_free()
1268 PRIV(jit_free)(code->executable_jit, &code->memctl); in pcre2_code_free()
10174 re->executable_jit = NULL; in pcre2_compile()
Dpcre2test.c4740 if (FLD(compiled_code, executable_jit) != NULL) in show_pattern_info()
7189 FLD(compiled_code, executable_jit) != NULL) in process_data()
7559 if (FLD(compiled_code, executable_jit) == NULL || in process_data()
7568 if (FLD(compiled_code, executable_jit) == NULL || in process_data()
Dpcre2_jit_compile.c14169 if (re->executable_jit != NULL) in jit_compile()
14170 functions = (executable_functions *)re->executable_jit; in jit_compile()
14185 re->executable_jit = functions; in jit_compile()
14263 functions = (executable_functions *)re->executable_jit; in pcre2_jit_compile()
Dpcre2_match.c6222 use_jit = (re->executable_jit != NULL && in pcre2_match()
/third_party/glib/glib/pcre/
Dpcre_fullinfo.c116 extra_data->executable_jit != NULL)? in pcre_fullinfo()
117 PRIV(jit_get_size)(extra_data->executable_jit) : 0; in pcre_fullinfo()
155 extra_data->executable_jit != NULL; in pcre_fullinfo()
Dpcre.h319 void *executable_jit; /* Contains a pointer to a compiled jit code */ member
332 void *executable_jit; /* Contains a pointer to a compiled jit code */ member
Dpcre_study.c1479 extra->executable_jit = NULL; in pcre_study()
1526 extra->executable_jit != NULL) in pcre_free_study()
1527 PRIV(jit_free)(extra->executable_jit); in pcre_free_study()
Dpcre_jit_compile.c7267 if ((extra->flags & PCRE_EXTRA_EXECUTABLE_JIT) != 0 && extra->executable_jit != NULL) in PRIV()
7268 functions = (executable_functions *)extra->executable_jit; in PRIV()
7280 extra->executable_jit = functions; in PRIV()
7310 executable_functions *functions = (executable_functions *)extra_data->executable_jit; in PRIV()
7445 extra->executable_jit != NULL) in pcre_assign_jit_stack()
7447 functions = (executable_functions *)extra->executable_jit; in pcre_assign_jit_stack()
Dpcre_exec.c6459 && extra_data->executable_jit != NULL in pcre_exec()
/third_party/pcre2/pcre2/
DChangeLog900 34. When serializing a pattern, set the memctl, executable_jit, and tables