| /freebsd-14.2/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | TableGenBackend.cpp | 33 StringRef Suffix) { in printLine() argument 35 assert((Prefix.str().size() + Suffix.size() <= MAX_LINE_LEN) && in printLine() 41 OS << Suffix << '\n'; in printLine() 48 StringRef Suffix(" *|"); in emitSourceFileHeader() local 49 printLine(OS, Prefix, ' ', Suffix); in emitSourceFileHeader() 50 size_t PSLen = Prefix.size() + Suffix.size(); in emitSourceFileHeader() 55 printLine(OS, Prefix + Desc.substr(Pos, Length), ' ', Suffix); in emitSourceFileHeader() 58 printLine(OS, Prefix, ' ', Suffix); in emitSourceFileHeader() 60 Suffix); in emitSourceFileHeader() 66 ' ', Suffix); in emitSourceFileHeader() [all …]
|
| /freebsd-14.2/contrib/bmake/ |
| H A D | suff.c | 196 } Suffix; argument 216 Suffix *suff; 255 static Suffix * 264 Suffix_Reassign(Suffix **var, Suffix *suff) in Suffix_Reassign() 334 static Suffix * 348 static Suffix * 456 Relate(Suffix *srcSuff, Suffix *targSuff) in Relate() 462 static Suffix * 591 Suffix *srcSuff; in Suff_AddTransform() 592 Suffix *targSuff; in Suff_AddTransform() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Lex/ |
| H A D | HeaderMap.cpp | 144 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix); in getBucket() 191 StringRef Suffix = getStringOrInvalid(B.Suffix); in dump() local 193 << Suffix << "'\n"; in dump() 220 std::optional<StringRef> Suffix = getString(B.Suffix); in lookupFilename() local 223 if (LLVM_LIKELY(Prefix && Suffix)) { in lookupFilename() 225 DestPath.append(Suffix->begin(), Suffix->end()); in lookupFilename() 245 std::optional<StringRef> Suffix = getString(B.Suffix); in reverseLookupFilename() local 246 if (LLVM_LIKELY(Key && Prefix && Suffix)) { in reverseLookupFilename() 249 Buf.append(Suffix->begin(), Suffix->end()); in reverseLookupFilename()
|
| H A D | Preprocessor.cpp | 1172 SmallVector<Token, 32> Suffix; in LexAfterModuleImport() local 1177 Suffix.push_back(Result); in LexAfterModuleImport() 1184 EnterTokens(Suffix); in LexAfterModuleImport() 1211 Suffix.emplace_back(); in LexAfterModuleImport() 1225 Suffix[0].setAnnotationEndLoc(Suffix[0].getLocation()); in LexAfterModuleImport() 1234 EnterTokens(Suffix); in LexAfterModuleImport() 1238 EnterTokens(Suffix); in LexAfterModuleImport() 1275 Suffix.push_back(Result); in LexAfterModuleImport() 1279 EnterTokens(Suffix); in LexAfterModuleImport() 1317 if (!Suffix.empty()) { in LexAfterModuleImport() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Frontend/Offloading/ |
| H A D | OffloadWrapper.cpp | 188 StringRef Suffix) { in createRegisterFunction() argument 216 StringRef Suffix) { in createUnregisterFunction() argument 259 StringRef Suffix) { in createFatbinDesc() argument 271 ".fatbin_image" + Suffix); in createFatbinDesc() 322 StringRef Suffix, in createRegisterGlobalsFunction() argument 509 StringRef Suffix, in createRegisterFatbinFunction() argument 560 Suffix, in createRegisterFatbinFunction() 585 llvm::StringRef Suffix) { in wrapOpenMPBinaries() argument 590 createRegisterFunction(M, Desc, Suffix); in wrapOpenMPBinaries() 591 createUnregisterFunction(M, Desc, Suffix); in wrapOpenMPBinaries() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | Twine.h | 459 Twine concat(const Twine &Suffix) const; 525 inline Twine Twine::concat(const Twine &Suffix) const { in concat() argument 527 if (isNull() || Suffix.isNull()) in concat() 532 return Suffix; in concat() 533 if (Suffix.isEmpty()) in concat() 540 NewRHS.twine = &Suffix; in concat() 546 if (Suffix.isUnary()) { in concat() 547 NewRHS = Suffix.LHS; in concat() 548 NewRHSKind = Suffix.getLHSKind(); in concat()
|
| H A D | StringRef.h | 271 [[nodiscard]] bool ends_with(StringRef Suffix) const { in ends_with() argument 272 return Length >= Suffix.Length && in ends_with() 273 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == in ends_with() 278 "ends_with") bool endswith(StringRef Suffix) const { in endswith() argument 279 return ends_with(Suffix); in endswith() 651 bool consume_back(StringRef Suffix) { in consume_back() argument 652 if (!ends_with(Suffix)) in consume_back() 655 *this = substr(0, size() - Suffix.size()); in consume_back() 661 bool consume_back_insensitive(StringRef Suffix) { in consume_back_insensitive() argument 662 if (!ends_with_insensitive(Suffix)) in consume_back_insensitive() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | MipsLinux.cpp | 127 const char *Suffix; in getCompilerRT() local 130 Suffix = ".o"; in getCompilerRT() 133 Suffix = ".a"; in getCompilerRT() 136 Suffix = ".so"; in getCompilerRT() 140 Path, Twine("libclang_rt." + Component + "-" + "mips" + Suffix)); in getCompilerRT()
|
| H A D | PS4CPU.cpp | 28 const char *Base, const char *Suffix) { in makeArgString() argument 30 return Args.MakeArgString(Twine(StringRef(Prefix), Base) + Suffix); in makeArgString() 94 const char *Suffix) const { in addSanitizerArgs() 96 return makeArgString(Args, Prefix, Name, Suffix); in addSanitizerArgs() 108 const char *Suffix) const { in addSanitizerArgs() 110 return makeArgString(Args, Prefix, Name, Suffix); in addSanitizerArgs()
|
| H A D | PS4CPU.h | 110 const char *Suffix) const = 0; 139 const char *Suffix) const override; 164 const char *Suffix) const override;
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Frontend/Offloading/ |
| H A D | OffloadWrapper.h | 26 llvm::StringRef Suffix = ""); 36 EntryArrayTy EntryArray, llvm::StringRef Suffix = "", 47 EntryArrayTy EntryArray, llvm::StringRef Suffix = "",
|
| /freebsd-14.2/contrib/file/magic/Magdir/ |
| H A D | psl | 4 # psl: file(1) magic for Public Suffix List representations 9 0 search/512 \n\n//\ ===BEGIN\ ICANN\ DOMAINS===\n\n Public Suffix List data 12 >15 string \n Public Suffix List data (optimized)
|
| /freebsd-14.2/sys/contrib/dev/acpica/common/ |
| H A D | adfile.c | 306 char *Suffix) in FlGenerateFilename() argument 318 strlen (InputFilename) + strlen (Suffix) + 2); in FlGenerateFilename() 332 strcat (Position, Suffix); in FlGenerateFilename() 339 strcat (NewFilename, Suffix); in FlGenerateFilename()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | WindowsResource.h | 107 uint16_t getDataVersion() const { return Suffix->DataVersion; } in getDataVersion() 108 uint16_t getLanguage() const { return Suffix->Language; } in getLanguage() 109 uint16_t getMemoryFlags() const { return Suffix->MemoryFlags; } in getMemoryFlags() 110 uint16_t getMajorVersion() const { return Suffix->Version >> 16; } in getMajorVersion() 111 uint16_t getMinorVersion() const { return Suffix->Version; } in getMinorVersion() 112 uint32_t getCharacteristics() const { return Suffix->Characteristics; } in getCharacteristics() 132 const WinResHeaderSuffix *Suffix = nullptr; variable
|
| /freebsd-14.2/contrib/ntp/sntp/m4/ |
| H A D | ntp_ver_suffix.m4 | 2 dnl NTP Version Suffix (Crypto) 5 dnl VER_SUFFIX Version Suffix (scripts/mkver.in)
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/bugpoint/ |
| H A D | Miscompilation.cpp | 62 std::vector<std::string> &Suffix) { in doTest() argument 65 outs() << "Checking to see if '" << getPassesString(Suffix) in doTest() 73 BD.setPassesToRun(Suffix); in doTest() 88 if (Suffix.empty()) { in doTest() 147 if (Suffix.empty()) in doTest() 150 outs() << "Checking to see if '" << getPassesString(Suffix) in doTest() 160 BD.setPassesToRun(Suffix); in doTest() 200 if (!Suffix.empty()) { in doTest() 201 Expected<bool> Ret = TestFuncs(Suffix); in doTest() 462 if (!Suffix.empty()) { in doTest() [all …]
|
| H A D | ListReducer.h | 121 std::vector<ElTy> Suffix(TheList.begin() + Mid, TheList.end()); in reduceList() 123 Expected<TestResult> Result = doTest(Prefix, Suffix); in reduceList() 130 TheList.swap(Suffix); in reduceList()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kMCInstLower.cpp | 51 StringRef Suffix; in GetSymbolFromOperand() local 53 if (!Suffix.empty()) in GetSymbolFromOperand() 62 assert(Suffix.empty()); in GetSymbolFromOperand() 66 Name += Suffix; in GetSymbolFromOperand()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Basic/Targets/ |
| H A D | Hexagon.cpp | 228 llvm::StringLiteral Suffix; member 246 return Item->Suffix.data(); in getHexagonCPUSuffix() 251 for (const CPUSuffix &Suffix : Suffixes) in fillValidCPUList() local 252 Values.push_back(Suffix.Name); in fillValidCPUList()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Driver/ |
| H A D | MultilibBuilder.cpp | 52 MultilibBuilder::MultilibBuilder(StringRef Suffix) in MultilibBuilder() argument 53 : MultilibBuilder(Suffix, Suffix, Suffix) {} in MultilibBuilder()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Testing/Support/ |
| H A D | SupportHelpers.h | 213 TempFile(StringRef Name, StringRef Suffix = "", StringRef Contents = "", 218 EC = llvm::sys::fs::createTemporaryFile(Name, Suffix, fd, Path); 221 if (!Suffix.empty()) { 223 Path.append(Suffix);
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | CodeExtractor.h | 115 std::string Suffix; variable 144 std::string Suffix = "", bool ArgsInZeroAddressSpace = false); 154 std::string Suffix = "");
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | FunctionImportUtils.cpp | 113 SmallString<256> Suffix(SGV->getParent()->getSourceFileName()); in getPromotedName() local 114 std::replace_if(std::begin(Suffix), std::end(Suffix), in getPromotedName() 117 SGV->getName(), Suffix); in getPromotedName()
|
| /freebsd-14.2/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | SveEmitter.cpp | 273 const char *Suffix; member 1380 for (auto [N, Suffix] : in createHeader() 1390 << " svreinterpret_" << To.Suffix; in createHeader() 1392 OS << " return __builtin_sve_reinterpret_" << To.Suffix << "_" in createHeader() 1393 << From.Suffix << Suffix << "(op);\n"; in createHeader() 1396 OS << "#define svreinterpret_" << To.Suffix << "_" << From.Suffix in createHeader() 1397 << Suffix << "(...) __builtin_sve_reinterpret_" << To.Suffix in createHeader() 1398 << "_" << From.Suffix << Suffix << "(__VA_ARGS__)\n"; in createHeader() 1447 for (auto [N, Suffix] : in createBuiltins() 1454 OS << "TARGET_BUILTIN(__builtin_sve_reinterpret_" << To.Suffix << "_" in createBuiltins() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86MCInstLower.cpp | 156 StringRef Suffix; in GetSymbolFromOperand() local 168 Suffix = "$non_lazy_ptr"; in GetSymbolFromOperand() 172 if (!Suffix.empty()) in GetSymbolFromOperand() 181 assert(Suffix.empty()); in GetSymbolFromOperand() 185 Name += Suffix; in GetSymbolFromOperand() 1863 #define MOV_CASE(Prefix, Suffix) \ in addConstantComments() argument 1864 case X86::Prefix##MOVAPD##Suffix##rm: \ in addConstantComments() 1865 case X86::Prefix##MOVAPS##Suffix##rm: \ in addConstantComments() 1866 case X86::Prefix##MOVUPD##Suffix##rm: \ in addConstantComments() 1869 case X86::Prefix##MOVDQU##Suffix##rm: in addConstantComments() [all …]
|