Lines Matching +full:all +full:- +full:inputs
1 //===- FuzzerMerge.h - merging corpa ----------------------------*- C++ -* ===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 // Take the existing corpus (possibly empty) and merge new inputs into
12 // it so that only inputs with new coverage ('features') are added.
18 // process until all inputs are processed.
21 // The inner process reads the control file and sees a) list of all the inputs
22 // and b) the last processed input. Then it starts processing the inputs one
32 // Once all inputs are processed by the inner process(es) the outer process
35 // It uses a single pass greedy algorithm choosing first the smallest inputs
36 // within the same size the inputs that have more new features.
38 //===----------------------------------------------------------------------===//