Searched defs:triple (Results 1 - 10 of 10) sorted by relevance

/external/clang/test/Modules/Inputs/
H A Dirgen.h1 static inline int triple(int x) { return x * 3; } function
/external/clang/lib/Basic/
H A DTargets.cpp11 // target triple.
76 OSTargetInfo(const std::string& triple) : TgtInfo(triple) {} argument
120 // Get the platform type and version number from the triple.
179 DarwinTargetInfo(const std::string& triple) :
180 OSTargetInfo<Target>(triple) {
181 llvm::Triple T = llvm::Triple(triple);
224 DragonFlyBSDTargetInfo(const std::string &triple)
225 : OSTargetInfo<Target>(triple) {
228 llvm::Triple Triple(triple);
[all...]
/external/llvm/tools/lto/
H A DLTOModule.h71 /// is LLVM bitcode for the specified triple.
92 /// getTargetTriple - Return the Module's target triple.
97 /// setTargetTriple - Set the Module's target triple.
98 void setTargetTriple(const char *triple) { argument
99 _module->setTargetTriple(triple);
178 /// target triple.
H A Dlto.cpp104 /// lto_module_set_target_triple - Sets triple string with which the object will
106 void lto_module_set_target_triple(lto_module_t mod, const char *triple) { argument
107 return mod->setTargetTriple(triple);
/external/llvm/tools/gold/
H A Dgold-plugin.cpp81 static std::string triple; member in namespace:options
103 triple = opt.substr(strlen("mtriple="));
284 if (!options::triple.empty())
285 lto_module_set_target_triple(M, options::triple.c_str());
/external/clang/lib/Frontend/
H A DInitHeaderSearch.cpp73 const llvm::Triple &triple);
87 void AddDefaultCIncludePaths(const llvm::Triple &triple,
92 void AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple,
98 const llvm::Triple &triple,
172 const llvm::Triple &triple) {
177 llvm::Triple::ArchType arch = triple.getArch();
212 void InitHeaderSearch::AddDefaultCIncludePaths(const llvm::Triple &triple, argument
214 llvm::Triple::OSType os = triple.getOS();
336 AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple, const HeaderSearchOptions &HSOpts) { argument
337 llvm::Triple::OSType os = triple
168 AddGnuCPlusPlusIncludePaths(StringRef Base, StringRef ArchDir, StringRef Dir32, StringRef Dir64, const llvm::Triple &triple) argument
443 AddDefaultIncludePaths(const LangOptions &Lang, const llvm::Triple &triple, const HeaderSearchOptions &HSOpts) argument
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp385 static bool supportsNilWithFloatRet(const llvm::Triple &triple) { argument
386 return (triple.getVendor() == llvm::Triple::Apple &&
387 (triple.getOS() == llvm::Triple::IOS ||
388 !triple.isMacOSXVersionLT(10,5)));
/external/llvm/lib/MC/MCDisassembler/
H A DEDDisassembler.cpp98 const char *triple = tripleFromArch(arch); local
99 return getDisassembler(StringRef(triple), syntax);
H A DEDMain.cpp22 const char *triple,
38 EDDisassemblerRef ret = EDDisassembler::getDisassembler(triple, Syntax);
21 EDGetDisassembler(EDDisassemblerRef *disassembler, const char *triple, EDAssemblySyntax_t syntax) argument
/external/skia/src/ports/
H A DSkFontHost_FreeType.cpp1324 const uint8_t* triple = src; local
1327 dst[x] = packTriple(tableR[triple[2]],
1328 tableG[triple[1]],
1329 tableB[triple[0]]);
1330 triple += 3;
1334 dst[x] = packTriple(tableR[triple[0]],
1335 tableG[triple[1]],
1336 tableB[triple[2]]);
1337 triple += 3;

Completed in 487 milliseconds