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

12

/external/clang/test/Modules/Inputs/
H A Dirgen.h1 static inline int triple(int x) { return x * 3; } function
/external/llvm/utils/abtest/
H A Dmark_armfns.py36 triple = (funcname, begin, end) variable
37 begins[begin] = triple
50 triple = begins.get(linenum) variable
51 if triple is not None:
52 in_func, begin, end = triple
H A Dmark_aarch64fns.py47 triple = (funcname, begin, end) variable
48 begins[begin] = triple
61 triple = begins.get(linenum) variable
62 if triple is not None:
63 in_func, begin, end = triple
/external/swiftshader/third_party/subzero/pydir/
H A Dtargets.py23 ['target', 'compiler_arch', 'triple', 'llc_flags',
28 triple='i686-none-linux', variable
36 triple='x86_64-none-linux-gnux32', variable
44 triple='armv7a-none-linux-gnueabihf', variable
57 triple='mipsel-linux-gnu', variable
/external/llvm/tools/llvm-c-test/
H A Ddisassemble.c11 |* --disassemble reads lines from stdin, parses them as a triple and hex *|
37 static void do_disassemble(const char *triple, const char *features, argument
39 LLVMDisasmContextRef D = LLVMCreateDisasmCPUFeatures(triple, "", features,
45 printf("ERROR: Couldn't create disassembler for triple %s\n", triple);
68 const char *triple = tokens[0]; local
72 printf("triple: %s, features: %s\n", triple, features);
83 do_disassemble(triple, features, disbuf, disbuflen);
/external/libffi/
H A Dgenerate-darwin-source-and-headers.py16 triple = 'i386-apple-darwin11' variable in class:simulator_platform
29 triple = 'x86_64-apple-darwin13' variable in class:simulator64_platform
42 triple = 'arm-apple-darwin11' variable in class:device_platform
55 triple = 'aarch64-apple-darwin13' variable in class:device64_platform
68 triple = 'i386-apple-darwin10' variable in class:desktop32_platform
81 triple = 'x86_64-apple-darwin10' variable in class:desktop64_platform
149 subprocess.check_call(['../configure', '-host', platform.triple], env=env)
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_debug.cpp112 const char *triple = LLVM_HOST_TRIPLE; local
113 LLVMDisasmContextRef D = LLVMCreateDisasm(triple, NULL, 0, NULL, NULL);
117 buffer << "error: could not create disassembler for triple "
118 << triple << '\n'; local
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_pipe.c127 const char *triple = "amdgcn--"; local
129 return LLVMCreateTargetMachine(si_llvm_get_amdgpu_target(triple), triple,
/external/mesa3d/src/gallium/state_trackers/clover/llvm/
H A Dutil.hpp94 triple(s.begin() + s.find_first_of("-") + 1, s.end()) {}
97 std::string triple; member in struct:clover::llvm::target
/external/python/cpython2/Modules/_ctypes/libffi/
H A Dgenerate-darwin-source-and-headers.py16 triple = 'i386-apple-darwin11' variable in class:simulator_platform
29 triple = 'x86_64-apple-darwin13' variable in class:simulator64_platform
42 triple = 'arm-apple-darwin11' variable in class:device_platform
55 triple = 'aarch64-apple-darwin13' variable in class:device64_platform
68 triple = 'i386-apple-darwin10' variable in class:desktop32_platform
81 triple = 'x86_64-apple-darwin10' variable in class:desktop64_platform
149 subprocess.check_call(['../configure', '-host', platform.triple], env=env)
/external/python/cpython3/Modules/_ctypes/libffi/
H A Dgenerate-darwin-source-and-headers.py16 triple = 'i386-apple-darwin11' variable in class:simulator_platform
29 triple = 'x86_64-apple-darwin13' variable in class:simulator64_platform
42 triple = 'arm-apple-darwin11' variable in class:device_platform
55 triple = 'aarch64-apple-darwin13' variable in class:device64_platform
68 triple = 'i386-apple-darwin10' variable in class:desktop32_platform
81 triple = 'x86_64-apple-darwin10' variable in class:desktop64_platform
149 subprocess.check_call(['../configure', '-host', platform.triple], env=env)
/external/skia/samplecode/
H A DSampleAAGeometry.cpp53 SkDebugf(" triple id=%d", fDebugID);
64 const SkStrokeTriple* triple = this; local
65 while (triple) {
66 triple->dump();
67 triple = triple->fNext;
/external/skqp/samplecode/
H A DSampleAAGeometry.cpp53 SkDebugf(" triple id=%d", fDebugID);
64 const SkStrokeTriple* triple = this; local
65 while (triple) {
66 triple->dump();
67 triple = triple->fNext;
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Dcpu_compiler.h33 // target triple, the target cpu and the target features. It also includes the
51 CpuAotCompilationOptions(string triple, string cpu_name, string features,
58 // The triple used for compilation, similar to clang's -target flag.
59 const string& triple() const { return triple_; } function in class:xla::cpu::CpuAotCompilationOptions
H A Dcpu_compiler.cc107 string triple, string cpu_name, string features, string entry_point_name,
109 : triple_(std::move(triple)),
742 llvm::StringRef target_triple = llvm_ir::AsStringRef(options.triple());
743 llvm::Triple triple(llvm::Triple::normalize(target_triple));
746 llvm::TargetRegistry::lookupTarget(triple.getTriple(), error);
786 target->createTargetMachine(triple.getTriple(), cpu_name, features,
794 llvm_module.setTargetTriple(triple.getTriple());
106 CpuAotCompilationOptions( string triple, string cpu_name, string features, string entry_point_name, RelocationModel relocation_model) argument
/external/swiftshader/third_party/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/swiftshader/third_party/LLVM/tools/lto/
H A Dlto.cpp145 // sets triple string with which the object will be codegened.
147 void lto_module_set_target_triple(lto_module_t mod, const char *triple) argument
149 return mod->setTargetTriple(triple);
/external/tensorflow/tensorflow/compiler/xla/service/gpu/llvm_gpu_backend/
H A Dgpu_backend_lib.cc169 // Returns the TargetMachine, given a triple.
171 llvm::Triple triple, tensorflow::StringPiece cpu_name,
174 const llvm::Target* target = TargetRegistry::lookupTarget("", triple, error);
176 LOG(FATAL) << "Unable to find Target for triple '" << triple.str() << "'"
210 triple.str(), llvm_ir::AsStringRef(cpu_name), "+ptx42", target_options,
372 // Add an appropriate TargetLibraryInfo pass for the module's triple.
378 // Try to fetch the target triple from the module. If not present, set a
379 // default target triple.
382 LOG(WARNING) << "target triple no
170 GetTargetMachine( llvm::Triple triple, tensorflow::StringPiece cpu_name, const HloModuleConfig& hlo_module_config) argument
[all...]
/external/clang/lib/Frontend/
H A DInitHeaderSearch.cpp78 const llvm::Triple &triple);
87 void AddDefaultCIncludePaths(const llvm::Triple &triple,
92 void AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple,
98 const llvm::Triple &triple,
180 const llvm::Triple &triple) {
185 llvm::Triple::ArchType arch = triple.getArch();
207 void InitHeaderSearch::AddDefaultCIncludePaths(const llvm::Triple &triple, argument
209 llvm::Triple::OSType os = triple.getOS();
223 if (triple.getEnvironment() != llvm::Triple::Cygnus)
262 // <sysroot>/<triple>/includ
176 AddGnuCPlusPlusIncludePaths(StringRef Base, StringRef ArchDir, StringRef Dir32, StringRef Dir64, const llvm::Triple &triple) argument
355 AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple, const HeaderSearchOptions &HSOpts) argument
434 AddDefaultIncludePaths(const LangOptions &Lang, const llvm::Triple &triple, const HeaderSearchOptions &HSOpts) argument
[all...]
/external/mesa3d/src/amd/common/
H A Dac_llvm_util.c55 static LLVMTargetRef ac_get_llvm_target(const char *triple) argument
62 if (LLVMGetTargetFromTriple(triple, &target, &err_message)) {
63 fprintf(stderr, "Cannot find target for triple %s ", triple);
133 const char *triple = "amdgcn--"; local
134 LLVMTargetRef target = ac_get_llvm_target(triple);
137 triple,
/external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
H A DEDDisassembler.cpp150 const char *triple = tripleFromArch(key.Arch); local
152 if (!triple)
160 std::string tripleString(triple);
379 StringRef triple = tripleFromArch(Key.Arch); local
380 OwningPtr<MCSubtargetInfo> STI(Tgt->createMCSubtargetInfo(triple, "", ""));
/external/swiftshader/third_party/LLVM/tools/edis/
H A DEDMain.cpp24 const char *triple,
42 EDDisassemblerRef ret = EDDisassembler::getDisassembler(triple, Syntax);
23 EDGetDisassembler(EDDisassemblerRef *disassembler, const char *triple, EDAssemblySyntax_t syntax) argument
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp523 static bool supportsNilWithFloatRet(const llvm::Triple &triple) { argument
524 return (triple.getVendor() == llvm::Triple::Apple &&
525 (triple.isiOS() || triple.isWatchOS() ||
526 !triple.isMacOSXVersionLT(10,5)));
/external/skia/src/ports/
H A DSkFontHost_FreeType_common.cpp136 const uint8_t* triple = src; local
139 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableR),
140 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG),
141 sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableB));
142 triple += 3;
146 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableR),
147 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG),
148 sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableB));
149 triple += 3;
/external/skqp/src/ports/
H A DSkFontHost_FreeType_common.cpp136 const uint8_t* triple = src; local
139 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableR),
140 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG),
141 sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableB));
142 triple += 3;
146 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableR),
147 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG),
148 sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableB));
149 triple += 3;

Completed in 1785 milliseconds

12