Searched defs:Suffix (Results 1 - 18 of 18) sorted by relevance

/external/llvm/lib/TableGen/
H A DTableGenBackend.cpp24 StringRef Suffix) {
26 assert((MAX_LINE_LEN - Prefix.str().size() - Suffix.size() > 0) &&
29 const size_t e = MAX_LINE_LEN - Suffix.size();
32 OS << Suffix << '\n'; local
41 StringRef Suffix(" *|");
43 size_t PSLen = Suffix.size() + Prefix.size();
47 printLine(OS, Prefix + Desc.slice(Pos, PosE), ' ', Suffix);
50 printLine(OS, Prefix, ' ', Suffix);
52 Suffix);
53 printLine(OS, Prefix, ' ', Suffix);
23 printLine(raw_ostream &OS, const Twine &Prefix, char Fill, StringRef Suffix) argument
[all...]
/external/giflib/
H A Dgif_lib_private.h51 GifByteType Suffix[LZ_MAX_CODE + 1]; /* So we can trace the codes. */ member in struct:GifFilePrivateType
H A Ddgif_lib.c784 GifByteType *Stack, *Suffix; local
790 Suffix = Private->Suffix;
843 Suffix[Private->RunningCode - 2] =
860 Stack[StackPtr++] = Suffix[CrntPrefix];
882 Suffix[Private->RunningCode - 2] =
885 Suffix[Private->RunningCode - 2] =
/external/llvm/lib/Target/AArch64/
H A DAArch64AsmPrinter.cpp79 StringRef Suffix, raw_ostream &O) {
132 if (Modifier == "" && Suffix == "")
134 else if (Modifier == "" && Suffix != "")
135 O << ":" << Suffix << ':' << Name;
136 else if (Modifier != "" && Suffix == "")
139 O << ":" << Modifier << '_' << Suffix << ':' << Name;
77 printSymbolicAddress(const MachineOperand &MO, bool PrintImmediatePrefix, StringRef Suffix, raw_ostream &O) argument
/external/clang/lib/Driver/
H A DToolChain.cpp254 StringRef Suffix = local
256 bool ThumbDefault = Suffix.startswith("v6m") ||
257 (Suffix.startswith("v7") && getTriple().isOSDarwin());
264 Triple.setArchName(ArchName + Suffix.str());
H A DDriver.cpp1637 const char *Suffix = types::getTypeTempSuffix(JA.getType()); local
1638 assert(Suffix && "All types used for output should have a suffix.");
1649 Suffixed += Suffix;
1774 std::string Driver::GetTemporaryPath(StringRef Prefix, const char *Suffix)
1778 llvm::sys::fs::createTemporaryFile(Prefix, Suffix, Path);
H A DToolChains.cpp1321 static bool findTargetBiarchSuffix(std::string &Suffix, StringRef Path, argument
1333 appendMipsTargetSuffix(Suffix, TargetArch, Args);
1337 Suffix += ABISuffix;
1339 if (llvm::sys::fs::exists(Path + Suffix + "/crtbegin.o"))
1344 Suffix = ABISuffix;
1345 return llvm::sys::fs::exists(Path + Suffix + "/crtbegin.o");
1351 Suffix = "/64";
1353 Suffix = "/32";
1355 return llvm::sys::fs::exists(Path + Suffix + "/crtbegin.o");
2542 /*static*/ bool Linux::addLibStdCXXIncludePaths(Twine Base, Twine Suffix, argument
[all...]
/external/clang/lib/Lex/
H A DHeaderMap.cpp41 uint32_t Suffix; // Offset (into strings) of value suffix. member in struct:clang::HMapBucket
149 Result.Suffix = 0;
156 Result.Suffix = getEndianAdjustedWord(BucketPtr->Suffix);
195 const char *Suffix = getString(B.Suffix); local
196 fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix, Suffix);
225 DestPath += getString(B.Suffix);
H A DLiteralSupport.cpp533 case 'f': // FP Suffix for "float"
655 StringRef Suffix) {
656 if (!LangOpts.CPlusPlus11 || Suffix.empty())
660 if (Suffix[0] == '_')
668 return llvm::StringSwitch<bool>(Suffix)
654 isValidUDSuffix(const LangOptions &LangOpts, StringRef Suffix) argument
/external/clang/tools/driver/
H A Ddriver.cpp212 const char *Suffix; member in struct:__anon16638
237 if (ProgNameRef.endswith(suffixes[i].Suffix)) {
250 ProgNameRef.size() - strlen(suffixes[i].Suffix));
/external/llvm/tools/bugpoint/
H A DCrashDebugger.cpp63 std::vector<std::string> &Suffix,
85 << getPassesString(Suffix) << ": ";
87 if (BD.runPasses(BD.getProgram(), Suffix)) {
62 doTest(std::vector<std::string> &Prefix, std::vector<std::string> &Suffix, std::string &Error) argument
H A DMiscompilation.cpp52 std::vector<std::string> &Suffix,
62 std::vector<std::string> &Suffix,
64 // First, run the program with just the Suffix passes. If it is still broken
66 outs() << "Checking to see if '" << getPassesString(Suffix)
70 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false/*delete*/,
74 BD.setPassesToRun(Suffix);
86 if (Suffix.empty()) {
141 if (Suffix.empty())
144 outs() << "Checking to see if '" << getPassesString(Suffix)
149 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResul
61 doTest(std::vector<std::string> &Prefix, std::vector<std::string> &Suffix, std::string &Error) argument
185 doTest(std::vector<Function*> &Prefix, std::vector<Function*> &Suffix, std::string &Error) argument
470 doTest(std::vector<BasicBlock*> &Prefix, std::vector<BasicBlock*> &Suffix, std::string &Error) argument
[all...]
H A DToolRunner.cpp477 const char *Suffix = (UseIntegratedAssembler ? ".llc.o" : ".llc.s"); local
481 sys::fs::createUniqueFile(Bitcode + "-%%%%%%%" + Suffix, UniqueFile);
/external/lzma/C/
H A DPpmd7.h37 CPpmd7_Context_Ref Suffix; member in struct:CPpmd7_Context_
90 p->NS2BSIndx[Ppmd7_GetContext(p, p->MinContext->Suffix)->NumStats - 1] + \
/external/clang/lib/Frontend/
H A DInitHeaderSearch.cpp655 const char *Suffix; local
657 Suffix = "";
659 Suffix = " (framework directory)";
662 Suffix = " (headermap)";
664 llvm::errs() << " " << Name << Suffix << "\n"; local
/external/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp432 /// suffix of 'Suffix'.
441 const char *Suffix, Pass *P) {
443 BasicBlock *NewBB = BasicBlock::Create(BB->getContext(), BB->getName()+Suffix,
439 SplitBlockPredecessors(BasicBlock *BB, ArrayRef<BasicBlock*> Preds, const char *Suffix, Pass *P) argument
/external/clang/utils/TableGen/
H A DClangAttrEmitter.cpp773 llvm::SmallString<8> Suffix; local
782 Suffix = "))";
785 Suffix = "]]";
793 Suffix = ")";
796 Suffix = "";
819 OS << Suffix.str() + "\";\n";
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2005 StringRef Suffix,
2009 NameStr.append(Suffix.begin(), Suffix.end());
2004 GetSymbolWithGlobalValueBase(const GlobalValue *GV, StringRef Suffix, bool ForcePrivate) const argument

Completed in 584 milliseconds