Home
last modified time | relevance | path

Searched refs:triple (Results 1 – 25 of 203) sorted by relevance

123456789

/third_party/pcre2/pcre2/testdata/
Dgrepinput31 triple: t1_txt s1_tag s_txt p_tag p_txt o_tag o_txt
3 triple: t2_txt s1_tag s_txt p_tag p_txt o_tag
6 triple: t3_txt s2_tag s_txt p_tag p_txt o_tag o_txt
8 triple: t4_txt s1_tag s_txt p_tag p_txt o_tag o_txt
10 triple: t5_txt s1_tag s_txt p_tag p_txt o_tag
13 triple: t6_txt s2_tag s_txt p_tag p_txt o_tag o_txt
15 triple: t7_txt s1_tag s_txt p_tag p_txt o_tag o_txt
Dgrepoutput614 triple: t1_txt s1_tag s_txt p_tag p_txt o_tag o_txt
616 triple: t3_txt s2_tag s_txt p_tag p_txt o_tag o_txt
618 triple: t4_txt s1_tag s_txt p_tag p_txt o_tag o_txt
620 triple: t6_txt s2_tag s_txt p_tag p_txt o_tag o_txt
623 1:triple: t1_txt s1_tag s_txt p_tag p_txt o_tag o_txt
625 6:triple: t3_txt s2_tag s_txt p_tag p_txt o_tag o_txt
627 8:triple: t4_txt s1_tag s_txt p_tag p_txt o_tag o_txt
629 13:triple: t6_txt s2_tag s_txt p_tag p_txt o_tag o_txt
682 testdata/grepinput3:triple: t7_txt s1_tag s_txt p_tag p_txt o_tag o_txt
762 triple: t1_txt s1_tag s_txt p_tag p_txt o_tag o_txt
[all …]
/third_party/libwebsockets/lib/misc/
Dbase64-decode.c55 unsigned char triple[3]; in _lws_b64_encode_string() local
62 triple[i] = (unsigned char)*in++; in _lws_b64_encode_string()
66 triple[i] = 0; in _lws_b64_encode_string()
72 *out++ = encode[triple[0] >> 2]; in _lws_b64_encode_string()
73 *out++ = encode[(((triple[0] & 0x03) << 4) & 0x30) | in _lws_b64_encode_string()
74 (((triple[1] & 0xf0) >> 4) & 0x0f)]; in _lws_b64_encode_string()
75 *out++ = (char)(len > 1 ? encode[(((triple[1] & 0x0f) << 2) & 0x3c) | in _lws_b64_encode_string()
76 (((triple[2] & 0xc0) >> 6) & 3)] : '='); in _lws_b64_encode_string()
77 *out++ = (char)(len > 2 ? encode[triple[2] & 0x3f] : '='); in _lws_b64_encode_string()
/third_party/typescript_eslint/packages/eslint-plugin/docs/rules/
Dtriple-slash-reference.md1 # Sets preference level for triple slash directives versus ES6-style import declarations (`triple-s…
3 Use of triple-slash reference type directives is discouraged in favor of the newer `import` style. …
5 Consider using this rule in place of [`no-triple-slash-reference`](./no-triple-slash-reference.md) …
49 …f you want to ban use of one or all of the triple slash reference directives, or any time you migh…
53 If you want to use all flavors of triple slash reference directives.
/third_party/mesa3d/src/amd/llvm/
Dac_llvm_util.c102 static LLVMTargetRef ac_get_llvm_target(const char *triple) in ac_get_llvm_target() argument
107 if (LLVMGetTargetFromTriple(triple, &target, &err_message)) { in ac_get_llvm_target()
108 fprintf(stderr, "Cannot find target for triple %s ", triple); in ac_get_llvm_target()
194 const char *triple = (tm_options & AC_TM_SUPPORTS_SPILL) ? "amdgcn-mesa-mesa3d" : "amdgcn--"; in ac_create_target_machine() local
195 LLVMTargetRef target = ac_get_llvm_target(triple); in ac_create_target_machine()
198 LLVMCreateTargetMachine(target, triple, ac_get_llvm_processor_name(family), "", level, in ac_create_target_machine()
202 *out_triple = triple; in ac_create_target_machine()
361 const char *triple; in ac_init_llvm_compiler() local
364 compiler->tm = ac_create_target_machine(family, tm_options, LLVMCodeGenLevelDefault, &triple); in ac_init_llvm_compiler()
375 compiler->target_library_info = ac_create_target_library_info(triple); in ac_init_llvm_compiler()
/third_party/libffi/
Dgenerate-darwin-source-and-headers.py16 triple = 'i386-apple-darwin11' variable in simulator_platform
29 triple = 'x86_64-apple-darwin13' variable in simulator64_platform
42 triple = 'arm-apple-darwin11' variable in device_platform
55 triple = 'aarch64-apple-darwin13' variable in device64_platform
68 triple = 'i386-apple-darwin10' variable in desktop32_platform
81 triple = 'x86_64-apple-darwin10' variable in desktop64_platform
150 subprocess.check_call(['../configure', '-host', platform.triple], env=env)
/third_party/gn/infra/recipes/
Dgn.py66 triple = '--target=%s' % target.triple
72 'CFLAGS': '%s %s' % (triple, sysroot),
73 'LDFLAGS': '%s %s -static-libstdc++' % (triple, sysroot),
76 triple = '--target=%s' % target.triple
93 (triple, sysroot, cxx_include),
98 '%s %s' % (triple, sysroot),
/third_party/jerryscript/tests/jerry/
Dfunction-prototype-bind.js19 var triple = mul.bind(null, 3); variable
21 assert (triple(20) === 60);
22 assert (triple.prototype === undefined);
24 var dupl = triple.bind({}, 2);
/third_party/icu/icu4c/source/i18n/
Dpluralranges.cpp132 const auto& triple = fTriples[i]; in resolve() local
133 if (triple.first == first && triple.second == second) { in resolve()
134 return triple.result; in resolve()
/third_party/node/deps/icu-small/source/i18n/
Dpluralranges.cpp132 const auto& triple = fTriples[i]; in resolve() local
133 if (triple.first == first && triple.second == second) { in resolve()
134 return triple.result; in resolve()
/third_party/skia/third_party/externals/icu/source/i18n/
Dpluralranges.cpp132 const auto& triple = fTriples[i]; in resolve() local
133 if (triple.first == first && triple.second == second) { in resolve()
134 return triple.result; in resolve()
/third_party/spirv-tools/source/
Dspirv_target_env.cpp178 for (auto triple : ordered_vulkan_envs) { in spvParseVulkanEnv() local
179 if (triple.vulkan_ver >= vulkan_ver && triple.spirv_ver >= spirv_ver) { in spvParseVulkanEnv()
180 *env = triple.vulkan_env; in spvParseVulkanEnv()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_debug.cpp104 const char *triple = LLVM_HOST_TRIPLE; in disassemble() local
105 LLVMDisasmContextRef D = LLVMCreateDisasm(triple, NULL, 0, NULL, NULL); in disassemble()
110 << triple << '\n'; in disassemble()
/third_party/skia/third_party/externals/spirv-tools/source/
Dspirv_target_env.cpp184 for (auto triple : ordered_vulkan_envs) { in spvParseVulkanEnv() local
185 if (triple.vulkan_ver >= vulkan_ver && triple.spirv_ver >= spirv_ver) { in spvParseVulkanEnv()
186 *env = triple.vulkan_env; in spvParseVulkanEnv()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
Dspirv_target_env.cpp184 for (auto triple : ordered_vulkan_envs) { in spvParseVulkanEnv() local
185 if (triple.vulkan_ver >= vulkan_ver && triple.spirv_ver >= spirv_ver) { in spvParseVulkanEnv()
186 *env = triple.vulkan_env; in spvParseVulkanEnv()
/third_party/boost/libs/hana/example/core/convert/
Dto.cpp20 BOOST_HANA_CONSTEXPR_LAMBDA auto triple = [](auto x, auto y, auto z) { in __anon37c03a310102() variable
35 hana::to<hana::tuple_tag>(triple(1, '2', 3.3)) == hana::make_tuple(1, '2', 3.3) in main()
/third_party/curl/tests/data/
Dtest85718 ...triple dots...
28 ..triple dots...
/third_party/mesa3d/src/gallium/frontends/clover/llvm/
Dutil.hpp50 triple(s.begin() + s.find_first_of("-") + 1, s.end()) {} in target()
53 std::string triple; member
Dcompat.hpp102 clang::InputKind ik, const ::llvm::Triple& triple, in compiler_set_lang_defaults()
105 c->getInvocation().setLangDefaults(c->getLangOpts(), ik, triple, in compiler_set_lang_defaults()
/third_party/mesa3d/src/gallium/frontends/clover/llvm/codegen/
Dnative.cpp113 auto t = ::llvm::TargetRegistry::lookupTarget(target.triple, err); in emit_code()
118 t->createTargetMachine(target.triple, target.cpu, "", {}, in emit_code()
123 "Could not create TargetMachine: " + target.triple); in emit_code()
/third_party/boost/libs/fusion/example/extension/
Dtriple.cpp202 struct triple struct
203 : fusion::sequence_facade<triple<T0, T1, T2>,
206 triple(T0 const& t0, T1 const& t1, T2 const& t2) in triple() function
358 typedef demo::triple<int, char, std::string> my_triple; in main()
/third_party/boost/libs/spirit/classic/example/intermediate/
Dregex_convert.cpp56 long triple(long val) in triple() function
141 subscript = regex_p(expr) [emit_modified_subscript(&triple)], in definition()
/third_party/flutter/skia/src/ports/
DSkFontHost_FreeType_common.cpp140 const uint8_t* triple = src; in copyFT2LCD16() local
143 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableR), in copyFT2LCD16()
144 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG), in copyFT2LCD16()
145 sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableB)); in copyFT2LCD16()
146 triple += 3; in copyFT2LCD16()
150 dst[x] = packTriple(sk_apply_lut_if<APPLY_PREBLEND>(triple[0], tableR), in copyFT2LCD16()
151 sk_apply_lut_if<APPLY_PREBLEND>(triple[1], tableG), in copyFT2LCD16()
152 sk_apply_lut_if<APPLY_PREBLEND>(triple[2], tableB)); in copyFT2LCD16()
153 triple += 3; in copyFT2LCD16()
/third_party/mindspore/tests/ut/python/dtype/
Dtest_hypermap.py72 def triple(self, x): member in test_hypermap_func_const.NetMap
79 _list = [self.double, self.triple, self.square]
/third_party/openssl/doc/man3/
DEVP_des.pod64 Two key triple DES in ECB, CBC, CFB with 64-bit shift and OFB modes.
75 Three-key triple DES in ECB, CBC, CFB with 64-bit shift, CFB with 1-bit shift,

123456789