Home
last modified time | relevance | path

Searched refs:stage_max (Results 1 – 13 of 13) sorted by relevance

/dports/security/afl++/AFLplusplus-3.14c/src/
H A Dafl-fuzz-one.c837 afl->stage_max = len; in fuzz_one_original()
930 --afl->stage_max; in fuzz_one_original()
973 --afl->stage_max; in fuzz_one_original()
1055 --afl->stage_max; in fuzz_one_original()
1076 --afl->stage_max; in fuzz_one_original()
1801 if (afl->stage_max < HAVOC_MIN) { afl->stage_max = HAVOC_MIN; } in fuzz_one_original()
1967 if (afl->stage_max < HAVOC_MIN) { afl->stage_max = HAVOC_MIN; } in fuzz_one_original()
3343 afl->stage_max = len; in mopt_common_fuzzing()
3435 --afl->stage_max; in mopt_common_fuzzing()
3477 --afl->stage_max; in mopt_common_fuzzing()
[all …]
H A Dafl-fuzz-run.c299 s32 old_sc = afl->stage_cur, old_sm = afl->stage_max; in calibrate_case()
317 afl->stage_max = afl->afl_env.afl_cal_fast ? 3 : CAL_CYCLES; in calibrate_case()
427 afl->stage_max = in calibrate_case()
454 afl->total_cal_cycles += afl->stage_max; in calibrate_case()
459 if (unlikely(!afl->stage_max)) { in calibrate_case()
466 q->exec_us = diff_us / afl->stage_max; in calibrate_case()
512 afl->stage_max = old_sm; in calibrate_case()
532 afl->stage_max = afl->stage_cur = 0; in sync_fuzzers()
624 afl->stage_max = 0; in sync_fuzzers()
801 afl->stage_max = q->len / remove_len; in trim_case()
[all …]
H A Dafl-fuzz-mutators.c331 afl->stage_max = retval; in trim_case_custom()
337 SAYF("[Custom Trimming] START: Max %u iterations, %u bytes", afl->stage_max, in trim_case_custom()
342 while (afl->stage_cur < afl->stage_max) { in trim_case_custom()
429 afl->stage_cur, afl->stage_max, out_len); in trim_case_custom()
450 afl->stage_max); in trim_case_custom()
H A Dafl-fuzz-stats.c816 if (!afl->stage_max) {
823 u_stringify_int(IB(1), afl->stage_max),
824 ((double)afl->stage_cur) * 100 / afl->stage_max);
H A Dafl-fuzz-redqueen.c261 afl->stage_max = (len << 1); in colorization()
295 afl->stage_cur < afl->stage_max) { in colorization()
2600 afl->stage_max = 0;
2633 afl->stage_max +=
2638 afl->stage_max +=
H A Dafl-fuzz-init.c547 afl->stage_max = 0;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/afl/src/
H A Dafl-fuzz.c2672 stage_max = old_sm; in calibrate_case()
4133 if (!stage_max) { in show_stats()
5287 stage_max = len; in fuzz_one()
5367 stage_max--; in fuzz_one()
5404 stage_max--; in fuzz_one()
5718 stage_max--; in fuzz_one()
5918 stage_max--; in fuzz_one()
5960 stage_max--; in fuzz_one()
6018 stage_max--; in fuzz_one()
6081 if (stage_max < HAVOC_MIN) stage_max = HAVOC_MIN; in fuzz_one()
[all …]
/dports/security/afl/afl-2.52b/
H A Dafl-fuzz.c2669 stage_max = old_sm; in calibrate_case()
4129 if (!stage_max) { in show_stats()
5283 stage_max = len; in fuzz_one()
5363 stage_max--; in fuzz_one()
5400 stage_max--; in fuzz_one()
5714 stage_max--; in fuzz_one()
5914 stage_max--; in fuzz_one()
5956 stage_max--; in fuzz_one()
6014 stage_max--; in fuzz_one()
6077 if (stage_max < HAVOC_MIN) stage_max = HAVOC_MIN; in fuzz_one()
[all …]
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/code/mission/
H A Dmissionbriefcommon.h292 void brief_blit_stage_num(int stage_num, int stage_max);
H A Dmissionbriefcommon.cpp1184 void brief_blit_stage_num(int stage_num, int stage_max) in brief_blit_stage_num() argument
1190 sprintf(buf, XSTR( "Stage %d of %d", 394), stage_num + 1, stage_max); in brief_blit_stage_num()
/dports/games/fs2open/fs2open.github.com-release_21_4_1/code/mission/
H A Dmissionbriefcommon.h306 void brief_blit_stage_num(int stage_num, int stage_max);
H A Dmissionbriefcommon.cpp1254 void brief_blit_stage_num(int stage_num, int stage_max) in brief_blit_stage_num() argument
1260 sprintf(buf, XSTR( "Stage %d of %d", 394), stage_num + 1, stage_max); in brief_blit_stage_num()
/dports/security/afl++/AFLplusplus-3.14c/include/
H A Dafl-fuzz.h589 u32 stage_cur, stage_max; /* Stage progression */ member