Home
last modified time | relevance | path

Searched refs:File (Results 1 – 25 of 1162) sorted by relevance

12345678910>>...47

/freebsd-src/sys/contrib/dev/iwlwififw/
H A DWHENCE3 File: iwlwifi-3945-2.ucode
6 File: iwlwifi-4965-2.ucode
9 File: iwlwifi-5000-1.ucode
12 File: iwlwifi-5000-2.ucode
15 File: iwlwifi-5000-5.ucode
18 File: iwlwifi-5150-2.ucode
21 File: iwlwifi-1000-3.ucode
24 File: iwlwifi-1000-5.ucode
27 File: iwlwifi-6000-4.ucode
30 File: iwlwifi-6050-4.ucode
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp117 static LocationDescriptor layout(BlobAllocator &File, yaml::BinaryRef Data) { in layout() argument
119 support::ulittle32_t(File.allocateBytes(Data))}; in layout()
122 static size_t layout(BlobAllocator &File, MinidumpYAML::ExceptionStream &S) { in layout() argument
123 File.allocateObject(S.MDExceptionStream); in layout()
125 size_t DataEnd = File.tell(); in layout()
134 S.MDExceptionStream.ThreadContext = layout(File, S.ThreadContext); in layout()
139 static void layout(BlobAllocator &File, MemoryListStream::entry_type &Range) { in layout() argument
140 Range.Entry.Memory = layout(File, Range.Content); in layout()
143 static void layout(BlobAllocator &File, ModuleListStream::entry_type &M) { in layout() argument
144 M.Entry.ModuleNameRVA = File.allocateString(M.Name); in layout()
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStub.cpp280 "File type is not set in YAML context"); in mapping()
302 "File type is not set in YAML context"); in mapping()
403 NormalizedTBD(IO &IO, const InterfaceFile *&File) { in NormalizedTBD()
404 Architectures = File->getArchitectures(); in NormalizedTBD()
405 Platforms = File->getPlatforms(); in NormalizedTBD()
406 InstallName = File->getInstallName(); in NormalizedTBD()
407 CurrentVersion = PackedVersion(File->getCurrentVersion()); in NormalizedTBD()
408 CompatibilityVersion = PackedVersion(File->getCompatibilityVersion()); in NormalizedTBD()
409 SwiftABIVersion = File->getSwiftABIVersion(); in NormalizedTBD()
410 ObjCConstraint = File in NormalizedTBD()
577 auto *File = new InterfaceFile; denormalize() local
866 auto *File = new InterfaceFile; denormalize() local
1061 auto *File = static_cast<TextAPIContext *>(Context); DiagHandler() local
1124 auto File = std::unique_ptr<InterfaceFile>( get() local
1137 writeToStream(raw_ostream & OS,const InterfaceFile & File,const FileType FileKind,bool Compact) writeToStream() argument
[all...]
H A DRecordsSlice.cpp319 auto File = std::make_unique<InterfaceFile>(std::move(Symbols));
320 File->setInstallName(InstallName);
329 File->addTarget(Targ); in convertToInterfaceFile()
330 File->setFromBinaryAttrs(BA, Targ); in convertToInterfaceFile()
333 return File; in convertToInterfaceFile()
338 std::unique_ptr<InterfaceFile> File; in convertToInterfaceFile()
340 return File;
350 File = createInterfaceFile(Slices, *InstallNames.begin());
352 File->addDocument(createInterfaceFile(Slices, IN));
354 return File;
282 auto File = std::make_unique<InterfaceFile>(std::move(Symbols)); createInterfaceFile() local
322 std::unique_ptr<InterfaceFile> File; convertToInterfaceFile() local
[all...]
H A DTextStubV5.cpp240 Expected<FileType> getVersion(const Object *File) { in getVersion() argument
242 TBDKey::TBDVersion, File, &Object::getInteger, in getVersion()
366 Expected<StringRef> getNameSection(const Object *File) { in getNameSection() argument
367 const Array *Section = File->getArray(Keys[TBDKey::InstallName]); in getNameSection()
380 Expected<TargetsToSymbols> getSymbolSection(const Object *File, TBDKey Key, in getSymbolSection() argument
383 const Array *Section = File->getArray(Keys[Key]); in getSymbolSection()
440 Expected<AttrToTargets> getLibSection(const Object *File, TBDKey Key, in getLibSection() argument
443 auto *Section = File->getArray(Keys[Key]); in getLibSection()
472 Expected<AttrToTargets> getUmbrellaSection(const Object *File, in getUmbrellaSection() argument
474 const auto *Umbrella = File in getUmbrellaSection()
504 getSwiftVersion(const Object * File) getSwiftVersion() argument
522 getPackedVersion(const Object * File,TBDKey Key) getPackedVersion() argument
548 getFlags(const Object * File) getFlags() argument
584 parseToInterfaceFile(const Object * File) parseToInterfaceFile() argument
689 getInlinedLibs(const Object * File) getInlinedLibs() argument
922 serializeFlags(const InterfaceFile * File) serializeFlags() argument
936 serializeIF(const InterfaceFile * File) serializeIF() argument
996 getJSON(const InterfaceFile * File,const FileType FileKind) getJSON() argument
1020 serializeInterfaceFileToJSON(raw_ostream & OS,const InterfaceFile & File,const FileType FileKind,bool Compact) serializeInterfaceFileToJSON() argument
[all...]
/freebsd-src/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DBytesOutputStyle.cpp85 BytesOutputStyle::BytesOutputStyle(PDBFile &File) in BytesOutputStyle() argument
86 : File(File), P(2, false, outs(), opts::Filters) {} in BytesOutputStyle()
98 if (Max >= File.getBlockCount()) in dump()
109 uint32_t Max = R.Max.value_or(File.getFileSize()); in dump()
114 if (Max >= File.getFileSize()) in dump()
201 auto &InfoS = Err(File.getPDBInfoStream()); in dumpNameMap()
203 auto Layout = File.getStreamLayout(StreamPDB); in dumpNameMap()
204 P.formatMsfStreamData("Named Stream Map", File, Layout, NS); in dumpNameMap()
213 Base *= File.getBlockSize(); in dumpBlockRanges()
215 auto ExpectedData = File.getBlockData(I, File.getBlockSize()); in dumpBlockRanges()
[all …]
H A DExplainOutputStyle.cpp34 ExplainOutputStyle::ExplainOutputStyle(InputFile &File, uint64_t FileOffset) in ExplainOutputStyle() argument
35 : File(File), FileOffset(FileOffset), P(2, false, outs(), opts::Filters) {} in ExplainOutputStyle()
39 File.getFilePath()); in dump()
41 if (File.isPdb()) in dump()
70 File.unknown().getBuffer(), llvm::endianness::little); in explainBinaryFile()
93 return FileOffset / File.pdb().getBlockSize(); in pdbBlockIndex()
97 uint64_t BlockStart = pdbBlockIndex() * File.pdb().getBlockSize(); in pdbBlockOffset()
107 return ((pdbBlockIndex() - 1) % File.pdb().getBlockSize() == 0); in isPdbFpm1()
110 return ((pdbBlockIndex() - 2) % File.pdb().getBlockSize() == 0); in isPdbFpm2()
118 return pdbBlockIndex() == File.pdb().getBlockMapIndex(); in isPdbBlockMapBlock()
[all …]
H A DYAMLOutputStyle.cpp40 YAMLOutputStyle::YAMLOutputStyle(PDBFile &File) in YAMLOutputStyle() argument
41 : File(File), Out(outs()), Obj(File.getAllocator()) { in YAMLOutputStyle()
87 Obj.Headers->SuperBlock.NumBlocks = File.getBlockCount(); in dumpFileHeaders()
88 Obj.Headers->SuperBlock.BlockMapAddr = File.getBlockMapIndex(); in dumpFileHeaders()
89 Obj.Headers->SuperBlock.BlockSize = File.getBlockSize(); in dumpFileHeaders()
90 auto Blocks = File.getDirectoryBlockArray(); in dumpFileHeaders()
92 Obj.Headers->NumDirectoryBlocks = File.getNumDirectoryBlocks(); in dumpFileHeaders()
93 Obj.Headers->SuperBlock.NumDirectoryBytes = File.getNumDirectoryBytes(); in dumpFileHeaders()
95 opts::pdb2yaml::StreamMetadata ? File.getNumStreams() : 0; in dumpFileHeaders()
96 Obj.Headers->SuperBlock.FreeBlockMapBlock = File.getFreeBlockMapBlock(); in dumpFileHeaders()
[all …]
H A DTypeReferenceTracker.cpp33 TypeReferenceTracker::TypeReferenceTracker(InputFile &File) in TypeReferenceTracker() argument
34 : File(File), Types(File.types()), in TypeReferenceTracker()
35 Ids(File.isPdb() ? &File.ids() : nullptr) { in TypeReferenceTracker()
47 if (File.isPdb()) { in TypeReferenceTracker()
48 Tpi = &cantFail(File.pdb().getPDBTpiStream()); in TypeReferenceTracker()
58 for (const SymbolGroup &SG : File.symbol_groups()) { in mark()
59 if (File.isObj()) { in mark()
79 if (File.isPdb() && File.pdb().hasPDBGlobalsStream()) { in mark()
80 SymbolStream &SymStream = cantFail(File.pdb().getPDBSymbolStream()); in mark()
81 GlobalsStream &GS = cantFail(File.pdb().getPDBGlobalsStream()); in mark()
/freebsd-src/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingFile.c69 /* File name string possibly with %p or %h specifiers. */
104 static int mmapForContinuousMode(uint64_t CurrentFileOffset, FILE *File) { in mmapForContinuousMode() argument
141 int Fileno = fileno(File); in mmapForContinuousMode()
230 static int mmapForContinuousMode(uint64_t CurrentFileOffset, FILE *File) { in mmapForContinuousMode()
242 if (getProfileFileSizeForMerging(File, &FileSize)) in mmapForContinuousMode()
245 int Fileno = fileno(File); in mmapForContinuousMode()
275 static int mmapForContinuousMode(uint64_t CurrentFileOffset, FILE *File) {
287 static void setProfileFile(FILE *File) { ProfileFile = File; } in doMerging()
299 FILE *File in fileWriter()
228 mmapForContinuousMode(uint64_t CurrentFileOffset,FILE * File) mmapForContinuousMode() argument
271 mmapForContinuousMode(uint64_t CurrentFileOffset,FILE * File) mmapForContinuousMode() argument
283 setProfileFile(FILE * File) setProfileFile() argument
295 FILE *File = (FILE *)This->WriterCtx; fileWriter() local
323 orderFileWriter(FILE * File,const uint32_t * DataStart) orderFileWriter() argument
330 initFileWriter(ProfDataWriter * This,FILE * File) initFileWriter() argument
336 lprofCreateBufferIOInternal(void * File,uint32_t BufferSz) lprofCreateBufferIOInternal() argument
496 FILE *File; getFileObject() local
564 FILE *File; truncateCurrentFile() local
602 writeProfileWithFileObject(const char * Filename,FILE * File) writeProfileWithFileObject() argument
633 FILE *File = NULL; initializeProfileForContinuousMode() local
1225 __llvm_profile_set_file_object(FILE * File,int EnableMerge) __llvm_profile_set_file_object() argument
[all...]
/freebsd-src/sys/contrib/dev/acpica/common/
H A Dacfileio.c167 FILE *File,
229 FILE *File; in AcGetAllTablesFromFile() local
235 File = fopen (Filename, "rb"); in AcGetAllTablesFromFile()
236 if (!File) in AcGetAllTablesFromFile()
249 FileSize = CmGetFileSize (File); in AcGetAllTablesFromFile()
270 if (!AcIsFileBinary (File)) in AcGetAllTablesFromFile()
273 " %s: File does not appear to contain a valid AML table\n", in AcGetAllTablesFromFile()
286 Filename, File, GetOnlyAmlTables, &Table); in AcGetAllTablesFromFile()
355 fclose(File); in AcGetAllTablesFromFile()
364 * PARAMETERS: Filename - File wher
382 AcGetOneTableFromFile(char * Filename,FILE * File,UINT8 GetOnlyAmlTables,ACPI_TABLE_HEADER ** ReturnTable) AcGetOneTableFromFile() argument
526 AcIsFileBinary(FILE * File) AcIsFileBinary() argument
575 AcValidateTableHeader(FILE * File,long TableOffset) AcValidateTableHeader() argument
[all...]
H A Dadisasm.c174 FILE *File,
181 FILE *File,
301 FILE *File = NULL; in AdAmlDisassemble() local
375 File = fopen (DisasmFilename, "w+"); in AdAmlDisassemble()
376 if (!File) in AdAmlDisassemble()
392 File, Filename, DisasmFilename); in AdAmlDisassemble()
412 if (File) in AdAmlDisassemble()
414 fclose (File); in AdAmlDisassemble()
429 * File - Pointer for the input file
442 FILE *File, in AdDisassembleOneTable() argument
626 AdReparseOneTable(ACPI_TABLE_HEADER * Table,FILE * File,ACPI_OWNER_ID OwnerId) AdReparseOneTable() argument
[all...]
/freebsd-src/contrib/llvm-project/lldb/source/Host/common/
H A DFile.cpp45 File::GetStreamOpenModeFromOptions(File::OpenOptions options) { in GetStreamOpenModeFromOptions()
46 File::OpenOptions rw = in GetStreamOpenModeFromOptions()
47 options & (File::eOpenOptionReadOnly | File::eOpenOptionWriteOnly | in GetStreamOpenModeFromOptions()
48 File::eOpenOptionReadWrite); in GetStreamOpenModeFromOptions()
50 if (options & File::eOpenOptionAppend) { in GetStreamOpenModeFromOptions()
51 if (rw == File::eOpenOptionReadWrite) { in GetStreamOpenModeFromOptions()
52 if (options & File::eOpenOptionCanCreateNewOnly) in GetStreamOpenModeFromOptions()
56 } else if (rw == File::eOpenOptionWriteOnly) { in GetStreamOpenModeFromOptions()
57 if (options & File::eOpenOptionCanCreateNewOnly) in GetStreamOpenModeFromOptions()
62 } else if (rw == File::eOpenOptionReadWrite) { in GetStreamOpenModeFromOptions()
[all …]
/freebsd-src/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DTokens.cpp163 FileID File; in range() local
165 std::tie(File, StartOffset) = SM.getDecomposedLoc(location()); in range()
166 return FileRange(File, StartOffset, StartOffset + length()); in range()
184 FileRange::FileRange(FileID File, unsigned BeginOffset, unsigned EndOffset) in FileRange() argument
185 : File(File), Begin(BeginOffset), End(EndOffset) { in FileRange()
186 assert(File.isValid()); in FileRange()
195 std::tie(File, Begin) = SM.getDecomposedLoc(BeginLoc); in FileRange()
207 std::tie(File, Begin) = SM.getDecomposedLoc(BeginLoc); in FileRange()
220 StringRef Text = SM.getBufferData(File, in text()
280 const MarkedFile &File = FileIt->second; spelledForExpandedToken() local
326 const auto &File = fileForSpelled(Spelled); expandedForSpelled() local
424 const MarkedFile &File = Files.find(FID)->second; spelledForExpanded() local
476 const auto &File = FileIt->second; fileForSpelled() local
492 const auto &File = fileForSpelled(*Spelled); expansionStartingAt() local
507 const auto &File = fileForSpelled(Spelled); expansionsOverlapping() local
563 auto &File = FileIt->second; macroExpansions() local
738 for (const auto &File : Result.Files) build() local
767 FileID File = SM.getFileID(Target); discard() local
813 FileID File = SM.getFileID(Expansion); advance() local
873 TokenBuffer::MarkedFile &File = It.first->second; buildSpelledTokens() local
948 const MarkedFile &File = Files.find(ID)->second; dumpForTests() local
[all...]
/freebsd-src/sys/contrib/dev/acpica/components/utilities/
H A Dutbuffer.c351 * PARAMETERS: File - File descriptor
369 ACPI_FILE File, in AcpiUtDumpBufferToFile() argument
383 fprintf (File, "Null Buffer Pointer in DumpBuffer!\n"); in AcpiUtDumpBufferToFile()
398 fprintf (File, "%8.4X: ", (BaseOffset + i)); in AcpiUtDumpBufferToFile()
408 fprintf (File, "%*s", ((Display * 2) + 1), " "); in AcpiUtDumpBufferToFile()
418 fprintf (File, "%02X ", Buffer[(ACPI_SIZE) i + j]); in AcpiUtDumpBufferToFile()
424 fprintf (File, "%04X ", Temp32); in AcpiUtDumpBufferToFile()
430 fprintf (File, "%08X ", Temp32); in AcpiUtDumpBufferToFile()
436 fprintf (File, " in AcpiUtDumpBufferToFile()
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DInputFile.cpp39 llvm::pdb::getModuleDebugStream(PDBFile &File, StringRef &ModuleName, in getModuleDebugStream() argument
41 Expected<DbiStream &> DbiOrErr = File.getPDBDbiStream(); in getModuleDebugStream()
59 auto ModStreamData = File.createIndexedStream(ModiStream); in getModuleDebugStream()
69 Expected<ModuleDebugStreamRef> llvm::pdb::getModuleDebugStream(PDBFile &File, in getModuleDebugStream() argument
71 Expected<DbiStream &> DbiOrErr = File.getPDBDbiStream(); in getModuleDebugStream()
83 auto ModStreamData = File.createIndexedStream(ModiStream); in getModuleDebugStream()
157 SymbolGroup::SymbolGroup(InputFile *File, uint32_t GroupIndex) : File(File) { in SymbolGroup() argument
158 if (!File) in SymbolGroup()
161 if (File->isPdb()) in SymbolGroup()
166 for (const auto &S : File->obj().sections()) { in SymbolGroup()
[all …]
/freebsd-src/tools/regression/usr.bin/env/
H A Dregress-sb.rb96 rdata = File.open(fname)
136 symres = File.symlink(fnames[0], fnames[1])
138 return false unless File.symlink?(fnames[1])
148 if File.symlink?(fnames[1])
149 if File.delete(fnames[1]) != 1
164 File.delete(@stderr) if File.exists?(@stderr)
165 File.delete(@stdout) if File.exists?(@stdout)
197 tscript = File.open($scriptfile, "w")
203 File.chmod(0755, $scriptfile)
285 if not File.exists?(fname)
[all …]
/freebsd-src/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp1 //===- HeaderSearch.cpp - Resolve Header File Locations -------------------===//
425 // File lookup within a DirectoryLookup scope in getFileAndSuggestModule()
446 auto File = getFileMgr().getFileRef(FileName, OpenFile, CacheFailures);
447 if (!File) { in LookupFile()
450 std::error_code EC = llvm::errorToErrorCode(File.takeError()); in LookupFile()
462 *File, Dir ? Dir : File->getFileEntry().getDir(), RequestingModule, in LookupFile()
466 return *File; in LookupFile()
517 [&](FileEntryRef File) -> OptionalFileEntryRef { in LookupFile()
527 if (!HS.findUsableModuleForHeader(File, Fil in LookupFile()
422 auto File = getFileMgr().getFileRef(FileName, OpenFile, CacheFailures); getFileAndSuggestModule() local
493 __anonb8b67f430202(FileEntryRef File) LookupFile() argument
674 auto File = DoFrameworkLookup() local
1049 OptionalFileEntryRef File = It->LookupFile( LookupFile() local
1142 OptionalFileEntryRef File = LookupFile( LookupFile() local
1249 auto File = FileMgr.getOptionalFileRef(HeadersFilename, /*OpenFile=*/true); LookupSubframeworkHeader() local
1401 ShouldEnterIncludeFile(Preprocessor & PP,FileEntryRef File,bool isImport,bool ModulesEnabled,Module * M,bool & IsFirstIncludeOfFile) ShouldEnterIncludeFile() argument
1555 findModuleForHeader(FileEntryRef File,bool AllowTextual,bool AllowExcluded) const findModuleForHeader() argument
1585 suggestModule(HeaderSearch & HS,FileEntryRef File,Module * RequestingModule,ModuleMap::KnownHeader * SuggestedModule) suggestModule() argument
1621 findUsableModuleForHeader(FileEntryRef File,const DirectoryEntry * Root,Module * RequestingModule,ModuleMap::KnownHeader * SuggestedModule,bool IsSystemHeaderDir) findUsableModuleForHeader() argument
1632 findUsableModuleForFrameworkHeader(FileEntryRef File,StringRef FrameworkName,Module * RequestingModule,ModuleMap::KnownHeader * SuggestedModule,bool IsSystemFramework) findUsableModuleForFrameworkHeader() argument
1658 getPrivateModuleMap(FileEntryRef File,FileManager & FileMgr,DiagnosticsEngine & Diags) getPrivateModuleMap() argument
1679 loadModuleMapFile(FileEntryRef File,bool IsSystem,FileID ID,unsigned * Offset,StringRef OriginalModuleMapFile) loadModuleMapFile() argument
1727 loadModuleMapFileImpl(FileEntryRef File,bool IsSystem,DirectoryEntryRef Dir,FileID ID,unsigned * Offset) loadModuleMapFileImpl() argument
1933 suggestPathToFileForDiagnostics(FileEntryRef File,llvm::StringRef MainFile,bool * IsAngled) const suggestPathToFileForDiagnostics() argument
1939 suggestPathToFileForDiagnostics(llvm::StringRef File,llvm::StringRef WorkingDir,llvm::StringRef MainFile,bool * IsAngled) const suggestPathToFileForDiagnostics() argument
[all...]
/freebsd-src/contrib/llvm-project/clang/lib/Driver/
H A DDistro.cpp24 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> File = in DetectOsRelease() local
26 if (!File) in DetectOsRelease()
27 File = VFS.getBufferForFile("/usr/lib/os-release"); in DetectOsRelease()
28 if (!File) in DetectOsRelease()
32 File.get()->getBuffer().split(Lines, "\n"); in DetectOsRelease()
52 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> File = in DetectLsbRelease() local
54 if (!File) in DetectLsbRelease()
58 File.get()->getBuffer().split(Lines, "\n"); in DetectLsbRelease()
118 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> File = in DetectDistro()
121 if (File) { in DetectDistro()
117 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> File = DetectDistro() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Support/FileSystem/
H A DUniqueID.h28 uint64_t File; variable
32 UniqueID(uint64_t Device, uint64_t File) : Device(Device), File(File) {} in UniqueID() argument
35 return Device == Other.Device && File == Other.File;
44 return File < Other.File;
48 uint64_t getFile() const { return File; } in getFile()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFLinker.h237 DWARFFile &File, ObjFileLoaderTy Loader = nullptr,
380 void verifyInput(const DWARFFile &File);
385 void reportWarning(const Twine &Warning, const DWARFFile &File,
388 WarningHandler(Warning, File.FileName, DIE);
391 void reportError(const Twine &Warning, const DWARFFile &File,
394 ErrorHandler(Warning, File.FileName, DIE);
402 RefModuleUnit(DWARFFile &File, std::unique_ptr<CompileUnit> Unit) in RefModuleUnit()
403 : File(File), Unit(std::move(Unit)) {} in RefModuleUnit()
405 : File(Other.File), Unit(std::move(Other.Unit)) {} in RefModuleUnit()
408 DWARFFile &File; member
[all …]
/freebsd-src/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageReport.cpp218 void CoverageReport::render(const FileCoverageSummary &File, in render()
221 determineCoveragePercentageColor(File.RegionCoverage); in render()
223 determineCoveragePercentageColor(File.FunctionCoverage); in render()
225 determineCoveragePercentageColor(File.InstantiationCoverage); in render()
226 auto LineCoverageColor = determineCoveragePercentageColor(File.LineCoverage); in render()
227 SmallString<256> FileName = File.Name; in render()
240 (unsigned)File.RegionCoverage.getNumRegions()); in render()
243 (unsigned)(File.RegionCoverage.getNumRegions() - in render()
244 File.RegionCoverage.getCovered())); in render()
245 if (File in render()
201 render(const FileCoverageSummary & File,raw_ostream & OS) const render() argument
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELF.cpp40 if (auto File = llvm::object::ELF64LEFile::create(Buffer)) { in readTargetMachineArch() local
41 return File->getHeader().e_machine; in readTargetMachineArch()
43 return File.takeError(); in readTargetMachineArch()
46 if (auto File = llvm::object::ELF32LEFile::create(Buffer)) { in readTargetMachineArch() local
47 return File->getHeader().e_machine; in readTargetMachineArch()
49 return File.takeError(); in readTargetMachineArch()
56 if (auto File = llvm::object::ELF64BEFile::create(Buffer)) { in readTargetMachineArch() local
57 return File->getHeader().e_machine; in readTargetMachineArch()
59 return File.takeError(); in readTargetMachineArch()
62 if (auto File = llvm::object::ELF32BEFile::create(Buffer)) { in readTargetMachineArch() local
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h536 Metadata *File;
549 MDNodeKeyImpl(unsigned Tag, MDString *Name, Metadata *File, unsigned Line,
555 : Tag(Tag), Name(Name), File(File), Line(Line), Scope(Scope),
561 : Tag(N->getTag()), Name(N->getRawName()), File(N->getRawFile()),
571 File == RHS->getRawFile() && Line == RHS->getLine() &&
595 return hash_combine(Tag, Name, File, Line, Scope, BaseType, Flags);
633 Metadata *File;
653 MDNodeKeyImpl(unsigned Tag, MDString *Name, Metadata *File, unsigned Line,
661 : Tag(Tag), Name(Name), File(Fil
[all...]
/freebsd-src/crypto/openssl/test/recipes/
H A D15-test_out_option.t13 use File::Spec;
33 my $path = File::Spec->canonpath('./');
40 my $path = File::Spec->canonpath('randomname.bin');
52 } while (-d File::Spec->catdir('.', $rand_path));
55 my $path = File::Spec->canonpath($rand_path);
65 my $path = File::Spec->canonpath(File::Spec->devnull());

12345678910>>...47