HomeSort by: relevance | last modified time | path
    Searched defs:Merge (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/scripts/
merge_data_flow.py 10 # Merge several data flow traces into one.
18 def Merge(a, b):
29 D[F] = Merge(D[F], BV)
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerMerge.h 12 // Take the existing corpus (possibly empty) and merge new inputs into
33 // reads the control files and does the merge based entirely on the contents
69 size_t Merge(const Set<uint32_t> &InitialFeatures,
71 size_t Merge(Vector<std::string> *NewFiles) {
72 return Merge(Set<uint32_t>{}, NewFiles);
FuzzerMerge.cpp 33 Printf("MERGE: failed to parse the control file (unexpected error)\n");
126 size_t Merger::Merge(const Set<uint32_t> &InitialFeatures,
210 Printf("MERGE-INNER: using the control file '%s'\n", CFPath.c_str());
216 Printf("MERGE-INNER: '%s' caused a failure at the previous merge step\n",
219 Printf("MERGE-INNER: %zd total files;"
272 Printf("MERGE-OUTER: failed to write to the control file: %s\n",
285 Printf("Merge requires two or more corpus dirs\n");
296 Printf("MERGE-OUTER: non-empty control file provided: '%s'\n",
301 Printf("MERGE-OUTER: control file ok, %zd files total,
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
sancov.py 2 # Merge or print the coverage data collected by asan's coverage.
4 # We need to merge these integers into a set and then
19 " " + prog_name + " merge FILE [FILE...] > OUTPUT\n" \
79 def Merge(files):
90 s = Merge(files)
100 s = Merge(files)
244 elif sys.argv[1] == "merge":
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/tests/
FuzzerUnittest.cpp 611 TEST(Merge, Bad) {
641 static void Merge(const std::string &Input,
649 EXPECT_EQ(NumNewFeatures, M.Merge(&NewFiles));
654 TEST(Merge, Good) {
707 EXPECT_EQ(0U, M.Merge(&NewFiles));
718 EXPECT_EQ(3U, M.Merge(&NewFiles));
732 EXPECT_EQ(3U, M.Merge(InitialFeatures, &NewFiles));
736 TEST(Merge, Merge) {
738 Merge("3\n1\nA\nB\nC\n
    [all...]

Completed in 68 milliseconds