HomeSort by: relevance | last modified time | path
    Searched refs:Files (Results 1 - 21 of 21) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerDataFlowTrace.cpp 27 Vector<SizedFile> Files;
28 GetSizedFilesFromDir(DirPath, &Files);
40 if (!NumFunctions || FocusFuncIdx == SIZE_MAX || Files.size() <= 1)
45 for (auto &SF : Files) {
84 assert(NumTraceFiles == Files.size() - 1);
85 Printf("INFO: DataFlowTrace: %zd trace files, %zd functions, "
FuzzerMerge.cpp 69 Files.resize(NumFiles);
71 if (!std::getline(IS, Files[i].Name, '\n'))
89 ISS1 >> Files[ExpectedStartMarker].Size;
91 assert(ExpectedStartMarker < Files.size());
104 Files[CurrentFileIdx].Features = TmpFeatures;
111 LastFailure = Files[LastSeenStartMarker].Name;
119 for (const auto &F: Files)
124 // Decides which files need to be merged (add thost to NewFiles).
129 assert(NumFilesInFirstCorpus <= Files.size());
134 auto &Cur = Files[i].Features
    [all...]
FuzzerIO.cpp 74 Vector<std::string> Files;
75 ListFilesInDirRecursive(Path, Epoch, &Files, /*TopDir*/true);
77 for (size_t i = 0; i < Files.size(); i++) {
78 auto &X = Files[i];
82 Printf("Loaded %zd/%zd files from %s\n", NumLoaded, Files.size(), Path);
91 Vector<std::string> Files;
92 ListFilesInDirRecursive(Dir, 0, &Files, /*TopDir*/true);
93 for (auto &File : Files)
FuzzerMerge.h 17 // The outter process collects the set of files and writes their names
33 // reads the control files and does the merge based entirely on the contents
59 Vector<MergeFileInfo> Files;
  /src/usr.bin/make/unit-tests/
suff-clear-regular.mk 21 # XXX: .a belongs to "Files that are only sources".
22 # XXX: .a.b belongs to "Files that are only sources".
23 # XXX: .b.a belongs to "Files that are only sources".
suff-add-later.mk 28 # XXX: .c.d is listed as "Files that are only sources".
29 # XXX: .d.e is listed as "Files that are only sources".
suff-transform-endless.mk 27 # XXX: .c.d is listed as "Files that are only sources".
28 # XXX: .d.e is listed as "Files that are only sources".
  /src/sys/external/bsd/acpica/dist/compiler/
aslfiles.c 188 * other miscellaneous files that are associated for a single
214 AslGbl_Files = NewFileNode->Files;
260 if (!strcmp (Filename, Current->Files[ASL_FILE_INPUT].Filename))
289 char *PrevFilename = Current->Files[ASL_FILE_INPUT].Filename;
294 if (!strcmp(Current->Files[ASL_FILE_INPUT].Filename, InputFilename))
296 AslGbl_Files = Current->Files;
349 if (!strcmp (Current->Files[InFileId].Filename, Filename))
351 return (Current->Files[OutFileId].Handle);
389 if (!strcmp (Current->Files[FileId].Filename, Filename))
838 * the file so that include files can be opened in the sam
    [all...]
asltypes.h 312 /* Name suffixes used to create filenames for output files */
358 * occurred. This is useful for errors that occur inside of include files.
359 * Since include files aren't recorded as a part of the global files list,
416 /* An entry in the listing file stack (for include files) */
526 struct asl_file_info Files[ASL_NUM_FILES];
aslcompile.c 208 Event = UtBeginEvent ("Open input and output files");
520 Event = UtBeginEvent ("Generate AML code and write output files");
532 * different files. If they belong in the same file, there is
559 Event = UtBeginEvent ("Write optional output files");
650 * DESCRIPTION: Header used at the beginning of output files
775 * DESCRIPTION: Create all "listing" type files
784 /* Create listings and hex files */
871 * DESCRIPTION: Close all open files and exit the compiler
941 * Return -1 as a status of the compiler if no AML files are generated. If
955 /* Close all open files */
    [all...]
aslutils.c 644 /* Summary of main input and output files */
692 /* Display summary of any optional files */
723 * appearance of listing files.
740 * DESCRIPTION: Display compilation statistics for all input files
776 "\nNo AML files were generated due to syntax error(s)\n");
782 "\nNo AML files were generated due to compiler error(s)\n");
807 * DESCRIPTION: Display compilation statistics for all input files
820 switch (FlSwitchFileSet(Current->Files[ASL_FILE_INPUT].Filename))
aslerror.c 286 * including all include files.)
650 * Only listing files have a header, and remarks/optimizations
892 FileNode->Files[ASL_FILE_SOURCE_OUTPUT].Filename;
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/tests/
FuzzerUnittest.cpp 658 EXPECT_EQ(M.Files.size(), 1U);
660 EXPECT_EQ(M.Files[0].Name, "AA");
665 EXPECT_EQ(M.Files.size(), 2U);
667 EXPECT_EQ(M.Files[0].Name, "AA");
668 EXPECT_EQ(M.Files[1].Name, "BB");
679 EXPECT_EQ(M.Files.size(), 3U);
681 EXPECT_EQ(M.Files[0].Name, "AA");
682 EXPECT_EQ(M.Files[0].Size, 1000U);
683 EXPECT_EQ(M.Files[1].Name, "BB");
684 EXPECT_EQ(M.Files[1].Size, 1001U)
    [all...]
  /src/share/locale/ctype/
gen_ctype_utf8.pl 61 * a copy of the Unicode data files and any associated documentation
62 * (the "Data Files") or Unicode software and any associated documentation
63 * (the "Software") to deal in the Data Files or Software
66 * the Data Files or Software, and to permit persons to whom the Data Files
69 * of the Data Files or Software, or
73 * THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
82 * PERFORMANCE OF THE DATA FILES OR SOFTWARE.
86 * use or other dealings in these Data Files or Software without prior
437 We don't directly use the files from the Unicode Consortium instead we us
    [all...]
  /src/share/mk/
bsd.clean.mk 7 # clean: Delete files listed in ${CLEANFILES}.
8 # cleandir: Delete files listed in ${CLEANFILES} and ${CLEANDIRFILES}.
12 # CLEANFILES Files to remove for both the clean and cleandir targets.
14 # CLEANDIRFILES Files to remove for the cleandir target, but not for
23 # The files listed in CLEANFILES and CLEANDIRFILES must not be
42 # files to delete. (We pass the variable name, e.g. CLEANFILES,
47 # If the list of files is empty, then the commands
73 echo "Failed to remove the following files from ${_d}:" ; \
82 # Don't automatically load ".depend" files during "make clean"
  /src/sys/arch/m68k/060sp/dist/
readme 38 Files in this directory:
  /src/usr.sbin/syslogd/
sign.c 83 sign_global_init(struct filed *Files)
136 if (!sign_sg_init(Files))
290 sign_sg_init(struct filed *Files)
322 STAILQ_INIT(&(x)->files); \
331 STAILQ_INSERT_TAIL(&newsg->files, fq, entries); \
336 /* one SG, linked to all files */
339 for (f = Files; f; f = f->f_next)
354 for (f = Files; f; f = f->f_next)
410 for (f = Files; f; f = f->f_next) {
430 for (f = Files; f; f = f->f_next)
    [all...]
syslogd.c 168 struct filed *Files = NULL;
596 * All files are open, we can drop privileges and chroot.
1897 * Log a message to the appropriate log files, users, etc. based on
1945 for (f = Files; f; f = f->f_next) {
2003 /* don't output marks to recently written files */
2541 /* Problem with files: We cannot check beforehand if
2760 for (f = Files; f != NULL; f = f->f_next) {
2849 for (f = Files; f; f = f->f_next) {
3009 for (f = Files; f != NULL; f = f->f_next) {
3024 * Close all open log files
    [all...]
  /src/distrib/syspkg/mk/
bsd.syspkg.mk 155 # Files to create for versioning and build information
159 # Files containing size of pkg w/o and w/ all required pkgs
502 # Stat all the files of one pkg and sum the sizes up.
507 @${SHCOMMENT} "This pkg's files" ; \
548 ${ECHO} "** Missing package files for ${PKGNAME} - installation not recorded."; \
563 files=""; \
566 files="$$files $$f"; \
569 ${GREP} '\$$NetBSD' $$files | ${SED} -e 's|^${PKGSRCDIR}/||' > ${BUILD_VERSION_FILE};
  /src/sys/external/isc/libsodium/dist/m4/
libtool.m4 643 -d, --debug don't remove temporary files
987 [Tool to manipulate archived DWARF debug symbol files on Mac OS X])
2109 # Check to see if we can do hard links to lock some files if needed
2133 _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?])
2152 [The name of the directory that contains temporary libtool files])dnl
2421 # Using Import Files as archive members, it is possible to support
2464 # We do not specify a path in Import Files, so LIBPATH fires.
2473 # We do not specify a path in Import Files, so LIBPATH fires.
2607 # common. (e.g. "Program Files" -> "PROGRA~1")
3358 [AC_CACHE_CHECK([for $LD option to reload object files],
    [all...]
  /src/sys/external/isc/libsodium/dist/
configure 1337 # Find the source files, if location was not specified.
1420 -n, --no-create do not create output files
1424 --prefix=PREFIX install architecture-independent files in PREFIX
1426 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
1429 By default, \`make install' will install all the files in
1444 --includedir=DIR C header files [PREFIX/include]
1445 --oldincludedir=DIR C header files for non-gcc [/usr/include]
1760 # the include files in INCLUDES and setting the cache variable VAR
1892 # Tests whether HEADER exists and can be compiled using the include files in
2146 # When interrupted or exit'd, cleanup temporary files, and complet
    [all...]

Completed in 31 milliseconds