| /netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/ |
| H A D | TableGenBackend.cpp | 23 StringRef Suffix) { in printLine() argument 25 assert((Prefix.str().size() + Suffix.size() <= MAX_LINE_LEN) && in printLine() 28 for (size_t i = (size_t)OS.tell() - Pos, e = MAX_LINE_LEN - Suffix.size(); in printLine() 31 OS << Suffix << '\n'; in printLine() 37 StringRef Suffix(" *|"); in emitSourceFileHeader() local 38 printLine(OS, Prefix, ' ', Suffix); in emitSourceFileHeader() 39 size_t PSLen = Prefix.size() + Suffix.size(); in emitSourceFileHeader() 44 printLine(OS, Prefix + Desc.substr(Pos, Length), ' ', Suffix); in emitSourceFileHeader() 47 printLine(OS, Prefix, ' ', Suffix); in emitSourceFileHeader() 49 Suffix); in emitSourceFileHeader() [all …]
|
| /netbsd-src/usr.bin/make/ |
| H A D | suff.c | 149 typedef struct Suffix { struct 186 } Suffix; typedef 206 Suffix *suff; 240 static Suffix *nullSuff; 242 static Suffix *emptySuff; 245 static Suffix * 246 Suffix_Ref(Suffix *suff) in Suffix_Ref() 252 /* Change the value of a Suffix variable, adjusting the reference counts. */ 254 Suffix_Reassign(Suffix **var, Suffix *suf 151 nameSuffix global() argument 153 nameLenSuffix global() argument 158 includeSuffix global() argument 183 parentsSuffix global() argument 185 childrenSuffix global() argument [all...] |
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/ |
| H A D | affix_allocator.d | 20 struct AffixAllocator(Allocator, Prefix, Suffix = void) 39 static assert(alignment % Suffix.alignof == 0, 96 - stateSize!Prefix - stateSize!Suffix, in Impl() 103 static if (!stateSize!Suffix) in Impl() 110 roundUpToMultipleOf(s + stateSize!Prefix, Suffix.alignof) in Impl() 111 + stateSize!Suffix; in Impl() 132 static if (stateSize!Suffix) in Impl() 134 auto suffixP = result.ptr + result.length - Suffix.sizeof; in Impl() 135 assert(suffixP.alignedAt(Suffix.alignof)); in Impl() 136 emplace!Suffix(cast(Suffix*)(suffixP)); in Impl() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/building_blocks/ |
| H A D | affix_allocator.d | 23 struct AffixAllocator(Allocator, Prefix, Suffix = void) 42 static assert(alignment % Suffix.alignof == 0, 124 - stateSize!Prefix - stateSize!Suffix, in Impl() 131 static if (!stateSize!Suffix) in Impl() 138 roundUpToMultipleOf(s + stateSize!Prefix, Suffix.alignof) in Impl() 139 + stateSize!Suffix; in Impl() 159 static if (stateSize!Suffix) in Impl() 161 auto suffixP = result.ptr + result.length - Suffix.sizeof; in Impl() 162 assert(suffixP.alignedAt(Suffix.alignof)); in Impl() 163 emplace!Suffix(cast(Suffix*)(suffixP)); in Impl() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/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() 233 Optional<StringRef> Suffix = getString(B.Suffix); in lookupFilename() local 236 if (LLVM_LIKELY(Prefix && Suffix)) { in lookupFilename() 238 DestPath.append(Suffix->begin(), Suffix->end()); in lookupFilename()
|
| H A D | Preprocessor.cpp | 1156 SmallVector<Token, 32> Suffix; in LexAfterModuleImport() local 1161 Suffix.push_back(Result); in LexAfterModuleImport() 1165 CollectPpImportSuffix(Suffix); in LexAfterModuleImport() 1166 if (Suffix.back().isNot(tok::semi)) { in LexAfterModuleImport() 1168 EnterTokens(Suffix); in LexAfterModuleImport() 1175 SourceLocation SemiLoc = Suffix.back().getLocation(); in LexAfterModuleImport() 1188 /*HashLoc*/ SourceLocation(), ImportTok, Suffix.front(), SemiLoc); in LexAfterModuleImport() 1195 Suffix.emplace_back(); in LexAfterModuleImport() 1196 Suffix.back().startToken(); in LexAfterModuleImport() 1197 Suffix.back().setKind(tok::annot_module_begin); in LexAfterModuleImport() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | Twine.h | 425 Twine concat(const Twine &Suffix) const; 488 inline Twine Twine::concat(const Twine &Suffix) const { in concat() argument 490 if (isNull() || Suffix.isNull()) in concat() 495 return Suffix; in concat() 496 if (Suffix.isEmpty()) in concat() 503 NewRHS.twine = &Suffix; in concat() 509 if (Suffix.isUnary()) { in concat() 510 NewRHS = Suffix.LHS; in concat() 511 NewRHSKind = Suffix.getLHSKind(); in concat()
|
| H A D | StringRef.h | 296 bool endswith(StringRef Suffix) const { in endswith() argument 297 return Length >= Suffix.Length && in endswith() 298 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; in endswith() 303 bool endswith_lower(StringRef Suffix) const; 689 bool consume_back(StringRef Suffix) { in consume_back() argument 690 if (!endswith(Suffix)) in consume_back() 693 *this = drop_back(Suffix.size()); in consume_back()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/ |
| H A D | MipsLinux.cpp | 125 const char *Suffix; in getCompilerRT() local 128 Suffix = ".o"; in getCompilerRT() 131 Suffix = ".a"; in getCompilerRT() 134 Suffix = ".so"; in getCompilerRT() 138 Path, Twine("libclang_rt." + Component + "-" + "mips" + Suffix)); in getCompilerRT()
|
| /netbsd-src/external/apache2/llvm/dist/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
|
| /netbsd-src/external/bsd/file/dist/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)
|
| /netbsd-src/sys/external/bsd/acpica/dist/common/ |
| H A D | adfile.c | 198 char *Suffix) in FlGenerateFilename() argument 210 strlen (InputFilename) + strlen (Suffix) + 2); in FlGenerateFilename() 224 strcat (Position, Suffix); in FlGenerateFilename() 231 strcat (NewFilename, Suffix); in FlGenerateFilename()
|
| /netbsd-src/external/apache2/llvm/dist/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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/bugpoint/ |
| H A D | Miscompilation.cpp | 53 std::vector<std::string> &Suffix) override; 62 std::vector<std::string> &Suffix) { in doTest() argument 65 outs() << "Checking to see if '" << getPassesString(Suffix) in doTest() 69 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false /*delete*/, 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() 156 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false /*delete*/, in doTest() 160 BD.setPassesToRun(Suffix); 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()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/Targets/ |
| H A D | Hexagon.cpp | 186 llvm::StringLiteral Suffix; member 202 return Item->Suffix.data(); in getHexagonCPUSuffix() 207 for (const CPUSuffix &Suffix : Suffixes) in fillValidCPUList() local 208 Values.push_back(Suffix.Name); in fillValidCPUList()
|
| /netbsd-src/external/bsd/ntp/dist/sntp/m4/ |
| H A D | ntp_ver_suffix.m4 | 2 dnl NTP Version Suffix (Crypto) 5 dnl VER_SUFFIX Version Suffix (scripts/mkver.in)
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/ |
| H A D | CodeExtractor.h | 106 std::string Suffix; variable 124 std::string Suffix = ""); 134 std::string Suffix = "");
|
| H A D | BasicBlockUtils.h | 341 const char *Suffix, DominatorTree *DT, 361 const char *Suffix, 382 const char *Suffix, const char *Suffix2, 400 BasicBlock *OrigBB, ArrayRef<BasicBlock *> Preds, const char *Suffix,
|
| /netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| H A D | SveEmitter.cpp | 247 const char *Suffix; member 1212 const bool IsBFloat = StringRef(From.Suffix).equals("bf16") || in createHeader() 1213 StringRef(To.Suffix).equals("bf16"); in createHeader() 1217 OS << "__aio " << From.Type << " svreinterpret_" << From.Suffix; in createHeader() 1219 OS << " return __builtin_sve_reinterpret_" << From.Suffix << "_" in createHeader() 1220 << To.Suffix << "(op);\n"; in createHeader() 1223 OS << "#define svreinterpret_" << From.Suffix << "_" << To.Suffix in createHeader() 1224 << "(...) __builtin_sve_reinterpret_" << From.Suffix << "_" in createHeader() 1225 << To.Suffix << "(__VA_ARGS__)\n"; in createHeader() 1313 OS << "BUILTIN(__builtin_sve_reinterpret_" << From.Suffix << "_" in createBuiltins() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/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);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | GlobPattern.h | 38 assert(!Suffix); in isTrivialMatchAll() 53 Optional<StringRef> Suffix; variable
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | GlobPattern.cpp | 127 Pat.Suffix = S.drop_front(); in create() 148 if (Suffix) in match() 149 return S.endswith(*Suffix); in match()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ |
| H A D | ToolChain.cpp | 132 const char *Suffix; member 159 StringRef Suffix(DriverSuffixes[i].Suffix); in FindDriverSuffix() local 160 if (ProgName.endswith(Suffix)) { in FindDriverSuffix() 161 Pos = ProgName.size() - Suffix.size(); in FindDriverSuffix() 212 size_t SuffixEnd = SuffixPos + strlen(DS->Suffix); in getTargetAndModeFromProgramName() 436 const char *Suffix; in buildCompilerRTBasename() local 439 Suffix = IsITANMSVCWindows ? ".obj" : ".o"; in buildCompilerRTBasename() 442 Suffix = IsITANMSVCWindows ? ".lib" : ".a"; in buildCompilerRTBasename() 445 Suffix = TT.isOSWindows() in buildCompilerRTBasename() 457 return (Prefix + Twine("clang_rt.") + Component + ArchAndEnv + Suffix).str(); in buildCompilerRTBasename()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ |
| H A D | TargetLoweringObjectFile.cpp | 130 const GlobalValue *GV, StringRef Suffix, const TargetMachine &TM) const { in getSymbolWithGlobalValueBase() argument 131 assert(!Suffix.empty()); in getSymbolWithGlobalValueBase() 136 NameStr.append(Suffix.begin(), Suffix.end()); in getSymbolWithGlobalValueBase()
|