Home
last modified time | relevance | path

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

/external/pcre/dist2/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()
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()
Dpcre2_pattern_info.c169 *((size_t *)where) = (re->executable_jit != NULL)? in pcre2_pattern_info()
170 PRIV(jit_get_size)(re->executable_jit) : 0; in pcre2_pattern_info()
Dpcre2_jit_match.c104 executable_functions *functions = (executable_functions *)re->executable_jit; in pcre2_jit_match()
Dpcre2_serialize.c222 dst_re->executable_jit = NULL; in pcre2_serialize_decode()
Dpcre2_intmodedep.h607 void *executable_jit; /* Pointer to JIT code */ member
Dpcre2_compile.c749 newcode->executable_jit = NULL; in pcre2_code_copy()
776 if (code->executable_jit != NULL) in pcre2_code_free()
777 PRIV(jit_free)(code->executable_jit, &code->memctl); in pcre2_code_free()
8685 re->executable_jit = NULL; in pcre2_compile()
Dpcre2test.c4098 if (FLD(compiled_code, executable_jit) != NULL) in show_pattern_info()
6020 FLD(compiled_code, executable_jit) != NULL) in process_data()
6344 if (FLD(compiled_code, executable_jit) == NULL) in process_data()
Dpcre2_jit_compile.c11390 if (re->executable_jit != NULL) in jit_compile()
11391 functions = (executable_functions *)re->executable_jit; in jit_compile()
11406 re->executable_jit = functions; in jit_compile()
11465 functions = (executable_functions *)re->executable_jit; in pcre2_jit_compile()
Dpcre2_match.c6609 if (re->executable_jit != NULL && (options & ~PUBLIC_JIT_MATCH_OPTIONS) == 0) in pcre2_match()