Home
last modified time | relevance | path

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

12345678910>>...47

/freebsd/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/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/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStub.cpp403 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->getObjCConstraint(); in NormalizedTBD()
413 if (!File->isApplicationExtensionSafe()) in NormalizedTBD()
416 if (!File->isTwoLevelNamespace()) in NormalizedTBD()
[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->getArray(Keys[TBDKey::ParentUmbrella]); in getUmbrellaSection()
[all …]
/freebsd/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 in isPdbFpm1()
[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 in mark()
[all...]
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DFile.cpp1 //===-- File.cpp ----------------------------------------------------------===//
9 #include "lldb/Host/File.h"
45 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 in GetStreamOpenModeFromOptions()
[all...]
/freebsd/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingFile.c104 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() argument
242 if (getProfileFileSizeForMerging(File, &FileSize)) in mmapForContinuousMode()
245 int Fileno = fileno(File); in mmapForContinuousMode()
275 static int mmapForContinuousMode(uint64_t CurrentFileOffset, FILE *File) { in mmapForContinuousMode() argument
287 static void setProfileFile(FILE *File) { ProfileFile = File; } in setProfileFile() argument
299 FILE *File = (FILE *)This->WriterCtx; in fileWriter() local
303 if (fwrite(IOVecs[I].Data, IOVecs[I].ElmSize, IOVecs[I].NumElm, File) != in fileWriter()
311 if (fwrite(Zeroes, sizeof(uint8_t), PartialWriteLen, File) != in fileWriter()
[all …]
/freebsd/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()
286 Filename, File, GetOnlyAmlTables, &Table); in AcGetAllTablesFromFile()
355 fclose(File); in AcGetAllTablesFromFile()
382 FILE *File, in AcGetOneTableFromFile() argument
411 Status = AcValidateTableHeader (File, TableOffset); in AcGetOneTableFromFile()
[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()
442 FILE *File, in AdDisassembleOneTable() argument
469 if (File) in AdDisassembleOneTable()
[all …]
/freebsd/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, &Invalid); in text()
266 SourceRange(SM.getComposedLoc(File, Begin), SM.getComposedLoc(File, End)), in toCharRange()
[all …]
/freebsd/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()
259 formatFromFileName(LinePrinter & Printer,StringRef File,bool Append) const formatFromFileName() argument
486 SymbolGroupIterator(InputFile & File) SymbolGroupIterator() argument
[all...]
/freebsd/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/sys/contrib/dev/acpica/components/utilities/
H A Dutbuffer.c369 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, "%08X", Temp32); in AcpiUtDumpBufferToFile()
439 fprintf (File, "%08X ", Temp32); in AcpiUtDumpBufferToFile()
450 fprintf (File, " "); in AcpiUtDumpBufferToFile()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinkerParallel/
H A DDWARFLinkerImpl.h
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp446 auto File = getFileMgr().getFileRef(FileName, OpenFile, CacheFailures); in getFileAndSuggestModule() local
447 if (!File) { in getFileAndSuggestModule()
450 std::error_code EC = llvm::errorToErrorCode(File.takeError()); in getFileAndSuggestModule()
462 *File, Dir ? Dir : File->getFileEntry().getDir(), RequestingModule, in getFileAndSuggestModule()
466 return *File; in getFileAndSuggestModule()
517 [&](FileEntryRef File) -> OptionalFileEntryRef { in LookupFile() argument
527 if (!HS.findUsableModuleForHeader(File, File.getFileEntry().getDir(), in LookupFile()
532 return File; in LookupFile()
698 auto File = in DoFrameworkLookup() local
700 if (!File) { in DoFrameworkLookup()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinker.h
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageReport.cpp218 void CoverageReport::render(const FileCoverageSummary &File, in render() argument
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.RegionCoverage.getNumRegions()) in render()
[all …]
/freebsd/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/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() local
121 if (File) { in DetectDistro()
[all …]
/freebsd/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(File), Line(Line), Scope(Scope),
670 : Tag(N->getTag()), Name(N->getRawName()), File(N->getRawFile()),
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h378 LLVMMetadataRef File, unsigned LineNo, LLVMMetadataRef Ty,
392 LLVMMetadataRef File, unsigned Line, unsigned Column);
404 LLVMMetadataRef File,
419 LLVMMetadataRef File,
435 LLVMMetadataRef ImportedEntity, LLVMMetadataRef File, unsigned Line,
450 LLVMMetadataRef File, unsigned Line, LLVMMetadataRef *Elements,
470 LLVMMetadataRef File, unsigned Line, const char *Name, size_t NameLen,
535 const char *LLVMDIFileGetDirectory(LLVMMetadataRef File, unsigned *Len);
544 const char *LLVMDIFileGetFilename(LLVMMetadataRef File, unsigned *Len);
553 const char *LLVMDIFileGetSource(LLVMMetadataRef File, unsigned *Len);
[all …]
/freebsd/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