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.h70 /// is LLVM bitcode for the specified triple.
91 /// getTargetTriple - Return the Module's target triple.
96 /// setTargetTriple - Set the Module's target triple.
97 void setTargetTriple(const char *triple) { argument
98 _module->setTargetTriple(triple);
173 /// 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/clang/lib/Frontend/
H A DInitHeaderSearch.cpp66 const llvm::Triple &triple);
80 void AddDefaultCIncludePaths(const llvm::Triple &triple,
85 void AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple,
91 const llvm::Triple &triple,
165 const llvm::Triple &triple) {
170 llvm::Triple::ArchType arch = triple.getArch();
205 void InitHeaderSearch::AddDefaultCIncludePaths(const llvm::Triple &triple, argument
207 llvm::Triple::OSType os = triple.getOS();
327 AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple, const HeaderSearchOptions &HSOpts) { argument
328 llvm::Triple::OSType os = triple
161 AddGnuCPlusPlusIncludePaths(StringRef Base, StringRef ArchDir, StringRef Dir32, StringRef Dir64, const llvm::Triple &triple) argument
434 AddDefaultIncludePaths(const LangOptions &Lang, const llvm::Triple &triple, const HeaderSearchOptions &HSOpts) argument
[all...]
/external/llvm/tools/gold/
H A Dgold-plugin.cpp81 static std::string triple; member in namespace:options
103 triple = opt.substr(strlen("mtriple="));
282 if (!options::triple.empty())
283 lto_module_set_target_triple(M, options::triple.c_str());
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp319 static bool supportsNilWithFloatRet(const llvm::Triple &triple) { argument
320 return (triple.getVendor() == llvm::Triple::Apple &&
321 (triple.getOS() == llvm::Triple::IOS ||
322 !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.cpp1276 const uint8_t* triple = src; local
1279 dst[x] = packTriple(tableR[triple[2]],
1280 tableG[triple[1]],
1281 tableB[triple[0]]);
1282 triple += 3;
1286 dst[x] = packTriple(tableR[triple[0]],
1287 tableG[triple[1]],
1288 tableB[triple[2]]);
1289 triple += 3;

Completed in 192 milliseconds