Searched refs:match_options (Results 1 – 2 of 2) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_fuzzsupport.c | 60 uint32_t match_options; in LLVMFuzzerTestOneInput() local 94 match_options = in LLVMFuzzerTestOneInput() 100 if (((compile_options|match_options) & PCRE2_ENDANCHORED) != 0) in LLVMFuzzerTestOneInput() 101 match_options &= ~(PCRE2_PARTIAL_HARD|PCRE2_PARTIAL_SOFT); in LLVMFuzzerTestOneInput() 152 uint32_t save_match_options = match_options; in LLVMFuzzerTestOneInput() 190 printf("Match options %.8x", match_options); in LLVMFuzzerTestOneInput() 192 ((match_options & PCRE2_ANCHORED) != 0)? ",anchored" : "", in LLVMFuzzerTestOneInput() 193 ((match_options & PCRE2_ENDANCHORED) != 0)? ",endanchored" : "", in LLVMFuzzerTestOneInput() 194 ((match_options & PCRE2_NO_JIT) != 0)? ",no_jit" : "", in LLVMFuzzerTestOneInput() 195 ((match_options & PCRE2_NO_UTF_CHECK) != 0)? ",no_utf_check" : "", in LLVMFuzzerTestOneInput() [all …]
|
D | pcre2_jit_test.c | 147 int match_options; member 1215 if (current->match_options & PCRE2_PARTIAL_SOFT) in regression_tests() 1217 else if (current->match_options & PCRE2_PARTIAL_HARD) in regression_tests() 1336 current->start_offset & OFFSET_MASK, current->match_options, mdata8_2, mcontext8); in regression_tests() 1343 current->start_offset & OFFSET_MASK, current->match_options, mdata8_1, mcontext8); in regression_tests() 1347 current->start_offset & OFFSET_MASK, current->match_options, mdata8_1, mcontext8); in regression_tests() 1381 current->start_offset & OFFSET_MASK, current->match_options, mdata16_2, mcontext16); in regression_tests() 1388 current->start_offset & OFFSET_MASK, current->match_options, mdata16_1, mcontext16); in regression_tests() 1392 current->start_offset & OFFSET_MASK, current->match_options, mdata16_1, mcontext16); in regression_tests() 1426 current->start_offset & OFFSET_MASK, current->match_options, mdata32_2, mcontext32); in regression_tests() [all …]
|