Lines Matching refs:compile_options

59 uint32_t compile_options;  in LLVMFuzzerTestOneInput()  local
90 compile_options = in LLVMFuzzerTestOneInput()
100 if (((compile_options|match_options) & PCRE2_ENDANCHORED) != 0) in LLVMFuzzerTestOneInput()
114 printf("Compile options %.8x never_backslash_c", compile_options); in LLVMFuzzerTestOneInput()
116 ((compile_options & PCRE2_ALT_BSUX) != 0)? ",alt_bsux" : "", in LLVMFuzzerTestOneInput()
117 ((compile_options & PCRE2_ALT_CIRCUMFLEX) != 0)? ",alt_circumflex" : "", in LLVMFuzzerTestOneInput()
118 ((compile_options & PCRE2_ALT_VERBNAMES) != 0)? ",alt_verbnames" : "", in LLVMFuzzerTestOneInput()
119 ((compile_options & PCRE2_ALLOW_EMPTY_CLASS) != 0)? ",allow_empty_class" : "", in LLVMFuzzerTestOneInput()
120 ((compile_options & PCRE2_ANCHORED) != 0)? ",anchored" : "", in LLVMFuzzerTestOneInput()
121 ((compile_options & PCRE2_AUTO_CALLOUT) != 0)? ",auto_callout" : "", in LLVMFuzzerTestOneInput()
122 ((compile_options & PCRE2_CASELESS) != 0)? ",caseless" : "", in LLVMFuzzerTestOneInput()
123 ((compile_options & PCRE2_DOLLAR_ENDONLY) != 0)? ",dollar_endonly" : "", in LLVMFuzzerTestOneInput()
124 ((compile_options & PCRE2_DOTALL) != 0)? ",dotall" : "", in LLVMFuzzerTestOneInput()
125 ((compile_options & PCRE2_DUPNAMES) != 0)? ",dupnames" : "", in LLVMFuzzerTestOneInput()
126 ((compile_options & PCRE2_ENDANCHORED) != 0)? ",endanchored" : "", in LLVMFuzzerTestOneInput()
127 ((compile_options & PCRE2_EXTENDED) != 0)? ",extended" : "", in LLVMFuzzerTestOneInput()
128 ((compile_options & PCRE2_FIRSTLINE) != 0)? ",firstline" : "", in LLVMFuzzerTestOneInput()
129 ((compile_options & PCRE2_MATCH_UNSET_BACKREF) != 0)? ",match_unset_backref" : "", in LLVMFuzzerTestOneInput()
130 ((compile_options & PCRE2_MULTILINE) != 0)? ",multiline" : "", in LLVMFuzzerTestOneInput()
131 ((compile_options & PCRE2_NEVER_UCP) != 0)? ",never_ucp" : "", in LLVMFuzzerTestOneInput()
132 ((compile_options & PCRE2_NEVER_UTF) != 0)? ",never_utf" : "", in LLVMFuzzerTestOneInput()
133 ((compile_options & PCRE2_NO_AUTO_CAPTURE) != 0)? ",no_auto_capture" : "", in LLVMFuzzerTestOneInput()
134 ((compile_options & PCRE2_NO_AUTO_POSSESS) != 0)? ",no_auto_possess" : "", in LLVMFuzzerTestOneInput()
135 ((compile_options & PCRE2_NO_DOTSTAR_ANCHOR) != 0)? ",no_dotstar_anchor" : "", in LLVMFuzzerTestOneInput()
136 ((compile_options & PCRE2_NO_UTF_CHECK) != 0)? ",no_utf_check" : "", in LLVMFuzzerTestOneInput()
137 ((compile_options & PCRE2_NO_START_OPTIMIZE) != 0)? ",no_start_optimize" : "", in LLVMFuzzerTestOneInput()
138 ((compile_options & PCRE2_UCP) != 0)? ",ucp" : "", in LLVMFuzzerTestOneInput()
139 ((compile_options & PCRE2_UNGREEDY) != 0)? ",ungreedy" : "", in LLVMFuzzerTestOneInput()
140 ((compile_options & PCRE2_USE_OFFSET_LIMIT) != 0)? ",use_offset_limit" : "", in LLVMFuzzerTestOneInput()
141 ((compile_options & PCRE2_UTF) != 0)? ",utf" : ""); in LLVMFuzzerTestOneInput()
144 code = pcre2_compile((PCRE2_SPTR)data, (PCRE2_SIZE)size, compile_options, in LLVMFuzzerTestOneInput()
274 compile_options = PCRE2_NEVER_BACKSLASH_C; /* For second time */ in LLVMFuzzerTestOneInput()