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

/external/clang/test/Modules/Inputs/
H A Dirgen.h1 static inline int triple(int x) { return x * 3; } function
/external/boringssl/src/crypto/obj/
H A Dobj_xref.c73 const nid_triple *triple; local
77 triple = bsearch(&key, sigoid_srt, sizeof(sigoid_srt) / sizeof(nid_triple),
80 if (triple == NULL) {
84 *out_digest_nid = triple->hash_id;
87 *out_pkey_nid = triple->pkey_id;
107 const nid_triple **triple; local
113 triple = bsearch(&pkey, sigoid_srt_xref,
117 if (triple == NULL) {
121 *out_sign_nid = (*triple)->sign_id;
/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/mesa3d/src/gallium/state_trackers/clover/llvm/
H A Dinvocation.cpp96 const std::string &triple) {
122 c.getTargetOpts().Triple = triple;
148 link(llvm::Module *mod, const std::string &triple, argument
157 linker.LinkInFile(llvm::sys::Path(LIBCLC_LIBEXECDIR + triple + ".bc"), isNative);
255 const compat::string &triple) {
259 llvm::Module *mod = compile(source, "cl_input", triple);
263 link(mod, triple, kernels);
95 compile(const std::string &source, const std::string &name, const std::string &triple) argument
253 compile_program_llvm(const compat::string &source, enum pipe_shader_ir ir, const compat::string &triple) argument
/external/clang/lib/Frontend/
H A DInitHeaderSearch.cpp77 const llvm::Triple &triple);
86 void AddDefaultCIncludePaths(const llvm::Triple &triple,
91 void AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple,
97 const llvm::Triple &triple,
179 const llvm::Triple &triple) {
184 llvm::Triple::ArchType arch = triple.getArch();
206 void InitHeaderSearch::AddDefaultCIncludePaths(const llvm::Triple &triple, argument
208 llvm::Triple::OSType os = triple.getOS();
222 if (triple.getEnvironment() != llvm::Triple::Cygnus)
261 // <sysroot>/<triple>/includ
175 AddGnuCPlusPlusIncludePaths(StringRef Base, StringRef ArchDir, StringRef Dir32, StringRef Dir64, const llvm::Triple &triple) argument
353 AddDefaultCPlusPlusIncludePaths(const llvm::Triple &triple, const HeaderSearchOptions &HSOpts) argument
435 AddDefaultIncludePaths(const LangOptions &Lang, const llvm::Triple &triple, const HeaderSearchOptions &HSOpts) argument
[all...]
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
H A DbtVector3.java128 public float triple(Vector3 v1, Vector3 v2) { method in class:btVector3
/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/llvm/tools/lto/
H A Dlto.cpp276 void lto_module_set_target_triple(lto_module_t mod, const char *triple) { argument
277 return unwrap(mod)->setTargetTriple(triple);
/external/skia/src/ports/
H A DSkFontHost_FreeType_common.cpp118 const uint8_t* triple = src; local
121 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableR),
122 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG),
123 sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableB));
124 triple += 3;
128 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableR),
129 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG),
130 sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableB));
131 triple += 3;
/external/llvm/tools/gold/
H A Dgold-plugin.cpp134 static std::string triple; member in namespace:options
160 triple = opt.substr(strlen("mtriple="));
905 if (!options::triple.empty())
906 M->setTargetTriple(options::triple.c_str());
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
H A DbtVector3.h416 SIMD_FORCE_INLINE btScalar triple(const btVector3& v1, const btVector3& v2) const function
927 return v1.triple(v2, v3);

Completed in 2261 milliseconds