| /freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
| H A D | Frontend.cpp | 77 InstallAPIContext::findAndRecordFile(const FileEntry *FE, in findAndRecordFile() argument 79 if (!FE) in findAndRecordFile() 84 auto It = KnownFiles.find(FE); in findAndRecordFile() 95 StringRef IncludeName = PP.getHeaderSearchInfo().getIncludeNameForHeader(FE); in findAndRecordFile() 98 KnownFiles[FE] = BackupIt->second; in findAndRecordFile() 104 KnownFiles.insert({FE, HeaderType::Unknown}); in findAndRecordFile() 109 auto FE = FM->getOptionalFileRef(H.getPath()); in addKnownHeader() local 110 if (!FE) in addKnownHeader() 112 KnownFiles[*FE] = H.getType(); in addKnownHeader()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaConcept.cpp | 293 Sema &S, const CXXFoldExpr *FE, const NamedDecl *Template, in EvaluateFoldExpandedConstraintSize() argument 300 Expr *Pattern = FE->getPattern(); in EvaluateFoldExpandedConstraintSize() 307 UnsignedOrNone NumExpansions = FE->getNumExpansions(); in EvaluateFoldExpandedConstraintSize() 309 FE->getEllipsisLoc(), Pattern->getSourceRange(), Unexpanded, MLTAL, in EvaluateFoldExpandedConstraintSize() 315 S.Diag(FE->getEllipsisLoc(), in EvaluateFoldExpandedConstraintSize() 318 << FE->getSourceRange(); in EvaluateFoldExpandedConstraintSize() 319 S.Diag(FE->getEllipsisLoc(), diag::note_bracket_depth); in EvaluateFoldExpandedConstraintSize() 395 Sema &S, const CXXFoldExpr *FE, const NamedDecl *Template, in calculateConstraintSatisfaction() argument 398 bool Conjunction = FE->getOperator() == BinaryOperatorKind::BO_LAnd; in calculateConstraintSatisfaction() 402 if (FE->isLeftFold() && FE->getInit()) { in calculateConstraintSatisfaction() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | XCore.cpp | 334 static bool extractFieldType(SmallVectorImpl<FieldEncoding> &FE, in extractFieldType() argument 354 FE.emplace_back(!Field->getName().empty(), Enc); in extractFieldType() 387 SmallVector<FieldEncoding, 16> FE; in appendRecordType() local 391 if (!extractFieldType(FE, RD, CGM, TSC)) { in appendRecordType() 399 llvm::sort(FE); in appendRecordType() 401 unsigned E = FE.size(); in appendRecordType() 405 Enc += FE[I].str(); in appendRecordType() 432 SmallVector<FieldEncoding, 16> FE; in appendEnumType() local 441 FE.push_back(FieldEncoding(!I->getName().empty(), EnumEnc)); in appendEnumType() 443 llvm::sort(FE); in appendEnumType() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | HeaderSearch.cpp | 174 const HeaderMap *HeaderSearch::CreateHeaderMap(FileEntryRef FE) { in CreateHeaderMap() argument 181 if (HeaderMaps[i].first == FE) in CreateHeaderMap() 185 if (std::unique_ptr<HeaderMap> HM = HeaderMap::Create(FE, FileMgr)) { in CreateHeaderMap() 186 HeaderMaps.emplace_back(FE, std::move(HM)); in CreateHeaderMap() 788 const FileEntry *FE, in checkMSVCHeaderSearch() argument 790 if (MSFE && FE != *MSFE) { in checkMSVCHeaderSearch() 964 if (OptionalFileEntryRef FE = getFileAndSuggestModule( in LookupFile() local 969 return FE; in LookupFile() 982 HeaderFileInfo &ToHFI = getFileInfo(*FE); in LookupFile() 997 *FE); in LookupFile() [all …]
|
| H A D | HeaderMap.cpp | 48 std::unique_ptr<HeaderMap> HeaderMap::Create(FileEntryRef FE, FileManager &FM) { in Create() argument 50 unsigned FileSize = FE.getSize(); in Create() 54 FM.getBufferForFile(FE, /*IsVolatile=*/false, in Create()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCSubtargetInfo.cpp | 43 for (const SubtargetFeatureKV &FE : FeatureTable) in SetImpliedBits() local 44 if (Implies.test(FE.Value)) in SetImpliedBits() 45 SetImpliedBits(Bits, FE.Implies.getAsBitset(), FeatureTable); in SetImpliedBits() 52 for (const SubtargetFeatureKV &FE : FeatureTable) { in ClearImpliedBits() local 53 if (FE.Implies.getAsBitset().test(Value)) { in ClearImpliedBits() 54 Bits.reset(FE.Value); in ClearImpliedBits() 55 ClearImpliedBits(Bits, FE.Value, FeatureTable); in ClearImpliedBits()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Basic/ |
| H A D | DirectiveEmitter.cpp | 52 StringRef getFESpelling(Frontend FE) { in getFESpelling() argument 53 switch (FE) { in getFESpelling() 67 Frontend FE = Frontend::LLVM) { in getQualifier() argument 68 return (Twine(getFESpelling(FE)) + "::" + DirLang.getCppNamespace().str() + in getQualifier() 928 const DirectiveLanguage &DirLang, Frontend FE) { in generateClauseSet() argument 938 if (FE == Frontend::Flang) { in generateClauseSet() 941 assert(FE == Frontend::Clang); in generateClauseSet() 951 Frontend FE, raw_ostream &OS) { in generateDirectiveClauseSets() argument 954 IfDefName += getFESpelling(FE).upper(); in generateDirectiveClauseSets() 959 getFESpelling(FE == Frontend::Flang ? Frontend::LLVM : FE); in generateDirectiveClauseSets() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | LogDiagnosticPrinter.cpp | 118 if (OptionalFileEntryRef FE = SM.getFileEntryRefForID(FID)) in HandleDiagnostic() local 119 MainFilename = std::string(FE->getName()); in HandleDiagnostic() 148 if (OptionalFileEntryRef FE = SM.getFileEntryRefForID(FID)) in HandleDiagnostic() local 149 DE.Filename = std::string(FE->getName()); in HandleDiagnostic()
|
| H A D | VerifyDiagnosticConsumer.cpp | 759 auto FE = SrcManager->getFileEntryRefForID(FID); in HandleDiagnostic() local 760 if (FE && CurrentPreprocessor && SrcManager->isLoadedFileID(FID)) { in HandleDiagnostic() 764 if (HS.findModuleForHeader(*FE)) in HandleDiagnostic() 1057 OptionalFileEntryRef FE = SM.getFileEntryRefForID(FID); in UpdateParsedFileStatus() local 1062 ParsedFiles.insert(std::make_pair(FID, FE ? &FE->getFileEntry() : nullptr)); in UpdateParsedFileStatus() 1075 UnparsedFileStatus(FE, FoundDirectives))); in UpdateParsedFileStatus() 1097 if (const FileEntry *FE = I.second) in CheckDiagnostics() local 1098 ParsedFileCache.insert(FE); in CheckDiagnostics() 1103 OptionalFileEntryRef FE = Status.getFile(); in CheckDiagnostics() local 1106 if (FE && ParsedFileCache.count(*FE)) in CheckDiagnostics() [all …]
|
| H A D | ModuleDependencyCollector.cpp | 39 if (auto FE = FileMgr.getOptionalFileRef(Filename)) in visitInputFile() local 40 Filename = FE->getName(); in visitInputFile()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPURemoveIncompatibleFunctions.cpp | 126 for (const SubtargetFeatureKV &FE : AMDGPUFeatureKV) { in expandImpliedFeatures() local 127 if (Features.test(FE.Value) && FE.Implies.any()) in expandImpliedFeatures() 128 Result |= expandImpliedFeatures(FE.Implies.getAsBitset()); in expandImpliedFeatures()
|
| /freebsd/contrib/llvm-project/clang/lib/Basic/ |
| H A D | Sarif.cpp | 37 static StringRef getFileName(FileEntryRef FE) { in getFileName() argument 38 StringRef Filename = FE.getFileEntry().tryGetRealPathName(); in getFileName() 40 Filename = FE.getName(); in getFileName() 215 OptionalFileEntryRef FE = Start.getExpansionLoc().getFileEntryRef(); in createPhysicalLocation() local 216 assert(FE && "Diagnostic does not exist within a valid file!"); in createPhysicalLocation() 218 const std::string &FileURI = fileNameToURI(getFileName(*FE)); in createPhysicalLocation() 227 .setLength(FE->getSize()) in createPhysicalLocation()
|
| H A D | FileManager.cpp | 358 FileEntry &FE = const_cast<FileEntry &>(STDIN->getFileEntry()); in getSTDIN() local 359 FE.Content = std::move(Content); in getSTDIN() 360 FE.IsNamedPipe = true; in getSTDIN() 518 FileManager::getBufferForFile(FileEntryRef FE, bool isVolatile, in getBufferForFile() argument 521 const FileEntry *Entry = &FE.getFileEntry(); in getBufferForFile() 536 StringRef Filename = FE.getName(); in getBufferForFile() 609 FileEntryRef FE(Entry); in GetUniqueIDMapping() local 612 OptionalFileEntryRef &ExistingFE = UIDToFiles[FE.getUID()]; in GetUniqueIDMapping() 613 if (!ExistingFE || FE.getName() < ExistingFE->getName()) in GetUniqueIDMapping() 614 ExistingFE = FE; in GetUniqueIDMapping()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | IgnoreExpr.h | 52 if (auto *FE = dyn_cast<FullExpr>(E)) in IgnoreImplicitCastsSingleStep() local 53 return FE->getSubExpr(); in IgnoreImplicitCastsSingleStep() 79 if (auto *FE = dyn_cast<FullExpr>(E)) in IgnoreCastsSingleStep() local 80 return FE->getSubExpr(); in IgnoreCastsSingleStep()
|
| /freebsd/crypto/krb5/src/lib/crypto/builtin/aes/ |
| H A D | kresults.expected | 18 1B 39 DA 37 40 D3 DF FE AC 89 D6 BB 4C 29 F1 0A 27 83 FE B6 7B 73 4F CE DB 8E 97 D4 06 96 11 B7 23 54 B5 76 2B EE F3 A1 04 A1 E0 3F FE CA 17 7B 4C 91 64 FE 7A E7 E7 DF 7F 12 C6 5E 29 F9 A2 55 C0 93 F1 87 1B 39 DA 37 40 D3 DF FE AC 89 D6 BB 4C 29 F1 0A 123 F0 68 8B 66 32 FE 41 EF 11 51 1B 6E F0 C0 17 96 124 A1 BD F6 34 5D F3 BC 03 86 72 D0 C3 13 FE C3 95 197 A1 BD F6 34 5D F3 BC 03 86 72 D0 C3 13 FE C3 95 198 F0 68 8B 66 32 FE 41 EF 11 51 1B 6E F0 C0 17
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDebugFrame.h | 116 static bool classof(const FrameEntry *FE) { return FE->getKind() == FK_CIE; } in classof() argument 176 static bool classof(const FrameEntry *FE) { return FE->getKind() == FK_FDE; } in classof() argument
|
| /freebsd/contrib/llvm-project/llvm/lib/TargetParser/ |
| H A D | TargetParser.cpp | 39 for (const auto &FE : FeatureTable) in setImpliedBits() local 40 if (Implies.test(FE.Value)) in setImpliedBits() 41 setImpliedBits(Bits, FE.Implies.getAsBitset(), FeatureTable); in setImpliedBits() 60 for (const BasicSubtargetFeatureKV &FE : ProcFeatures) { in getCPUDefaultTargetFeatures() local 61 assert(FE.Value < BitSize && "Target Feature is out of range"); in getCPUDefaultTargetFeatures() 62 if (Bits[FE.Value]) in getCPUDefaultTargetFeatures() 63 DefaultFeatures[FE.Key] = true; in getCPUDefaultTargetFeatures()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | HeaderSearch.h | 156 virtual HeaderFileInfo GetHeaderFileInfo(FileEntryRef FE) = 0; 567 void MarkFileModuleHeader(FileEntryRef FE, ModuleMap::ModuleHeaderRole Role, 606 const HeaderMap *CreateHeaderMap(FileEntryRef FE); 840 HeaderFileInfo &getFileInfo(FileEntryRef FE); 844 const HeaderFileInfo *getExistingFileInfo(FileEntryRef FE) const; 848 const HeaderFileInfo *getExistingLocalFileInfo(FileEntryRef FE) const;
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
| H A D | GsymReader.cpp | 537 void GsymReader::dump(raw_ostream &OS, std::optional<FileEntry> FE) { in dump() argument 538 if (FE) { in dump() 540 if (FE->Dir == 0 && FE->Base == 0) in dump() 542 StringRef Dir = getString(FE->Dir); in dump() 543 StringRef Base = getString(FE->Base); in dump()
|
| /freebsd/sys/contrib/device-tree/src/arm64/exynos/ |
| H A D | exynos990-r8s.dts | 3 * Samsung Galaxy S20 FE (r8s/SM-G780F) device tree source 15 model = "Samsung Galaxy S20 FE";
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstrSNP.td | 32 // F2 0F 01 FE 37 // F3 0F 01 FE
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseAST.cpp | 158 if (const auto *FE = SM.getFileEntryForID(SM.getMainFileID())) in ParseAST() local 159 M.File = FE->tryGetRealPathName(); in ParseAST()
|
| /freebsd/secure/caroot/untrusted/ |
| H A D | Certigna.pem | 49 1A:ED:FE:41:39:90:B4:24:59:BE:01:F2:52:D5:45:F6:5A:39:DC:11 51 keyid:1A:ED:FE:41:39:90:B4:24:59:BE:01:F2:52:D5:45:F6:5A:39:DC:11 53 serial:FE:DC:E3:01:0F:C9:48:FF
|
| H A D | DigiCert_SMIME_ECC_P384_Root_G5.pem | 37 73:7A:6B:96:DB:42:07:8B:52:66:C2:64:32:17:FE:E0:67:90:2E:AD 50 SHA1 Fingerprint=1C:B8:A7:08:C9:0D:20:79:01:A0:B2:36:7F:F0:95:65:E4:53:24:FE
|
| /freebsd/contrib/llvm-project/clang/lib/ExtractAPI/ |
| H A D | ExtractAPIConsumer.cpp | 172 FileEntryRef FE, in getRelativeIncludeName() argument 174 return getRelativeIncludeName(CI, FE.getNameAsRequested(), IsQuoted); in getRelativeIncludeName() 219 if (auto FE = CI.getFileManager().getOptionalFileRef(KnownFile.first)) in LocationFileChecker() local 220 KnownFileEntries.insert(*FE); in LocationFileChecker()
|