Searched refs:executable_jit (Results 1 – 10 of 10) sorted by relevance
/external/pcre/dist2/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() 215 PRIV(jit_get_size)(void *executable_jit) in PRIV() 218 (void)executable_jit; in PRIV() 221 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 | 104 executable_functions *functions = (executable_functions *)re->executable_jit; in pcre2_jit_match()
|
D | pcre2_intmodedep.h | 620 void *executable_jit; /* Pointer to JIT code */ member
|
D | pcre2_compile.c | 1122 newcode->executable_jit = NULL; in pcre2_code_copy() 1157 newcode->executable_jit = NULL; in pcre2_code_copy_with_tables() 1188 if (code->executable_jit != NULL) in pcre2_code_free() 1189 PRIV(jit_free)(code->executable_jit, &code->memctl); in pcre2_code_free() 9612 re->executable_jit = NULL; in pcre2_compile()
|
D | pcre2test.c | 4597 if (FLD(compiled_code, executable_jit) != NULL) in show_pattern_info() 6872 FLD(compiled_code, executable_jit) != NULL) in process_data() 7202 if (FLD(compiled_code, executable_jit) == NULL || in process_data() 7211 if (FLD(compiled_code, executable_jit) == NULL || in process_data()
|
D | pcre2_jit_compile.c | 12597 if (re->executable_jit != NULL) in jit_compile() 12598 functions = (executable_functions *)re->executable_jit; in jit_compile() 12613 re->executable_jit = functions; in jit_compile() 12672 functions = (executable_functions *)re->executable_jit; in pcre2_jit_compile()
|
D | pcre2_match.c | 6168 if (re->executable_jit != NULL && (options & ~PUBLIC_JIT_MATCH_OPTIONS) == 0) in pcre2_match()
|
/external/pcre/dist2/ |
D | ChangeLog | 158 34. When serializing a pattern, set the memctl, executable_jit, and tables
|