Searched refs:executable_jit (Results 1 – 15 of 15) sorted by relevance
/third_party/pcre2/pcre2/src/ |
D | pcre2_jit_misc.c | 78 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()
|
D | pcre2_serialize.c | 146 (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()
|
D | pcre2_pattern_info.c | 191 *((size_t *)where) = (re->executable_jit != NULL)? in pcre2_pattern_info() 192 PRIV(jit_get_size)(re->executable_jit) : 0; in pcre2_pattern_info()
|
D | pcre2_jit_match.c | 103 executable_functions *functions = (executable_functions *)re->executable_jit; in pcre2_jit_match()
|
D | pcre2_intmodedep.h | 621 void *executable_jit; /* Pointer to JIT code */ member
|
D | pcre2_compile.c | 1201 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()
|
D | pcre2test.c | 4740 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()
|
D | pcre2_jit_compile.c | 14169 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()
|
D | pcre2_match.c | 6222 use_jit = (re->executable_jit != NULL && in pcre2_match()
|
/third_party/glib/glib/pcre/ |
D | pcre_fullinfo.c | 116 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()
|
D | pcre.h | 319 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
|
D | pcre_study.c | 1479 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()
|
D | pcre_jit_compile.c | 7267 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()
|
D | pcre_exec.c | 6459 && extra_data->executable_jit != NULL in pcre_exec()
|
/third_party/pcre2/pcre2/ |
D | ChangeLog | 900 34. When serializing a pattern, set the memctl, executable_jit, and tables
|