/third_party/pcre2/pcre2/testdata/ |
D | grepinput3 | 1 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
|
D | grepoutput | 614 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/ |
D | base64-decode.c | 55 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/ |
D | triple-slash-reference.md | 1 # 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/ |
D | ac_llvm_util.c | 102 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/ |
D | generate-darwin-source-and-headers.py | 16 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/ |
D | gn.py | 66 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/ |
D | function-prototype-bind.js | 19 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/ |
D | pluralranges.cpp | 132 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/ |
D | pluralranges.cpp | 132 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/ |
D | pluralranges.cpp | 132 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/ |
D | spirv_target_env.cpp | 178 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/ |
D | lp_bld_debug.cpp | 104 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/ |
D | spirv_target_env.cpp | 184 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/ |
D | spirv_target_env.cpp | 184 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/ |
D | to.cpp | 20 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/ |
D | test857 | 18 ...triple dots... 28 ..triple dots...
|
/third_party/mesa3d/src/gallium/frontends/clover/llvm/ |
D | util.hpp | 50 triple(s.begin() + s.find_first_of("-") + 1, s.end()) {} in target() 53 std::string triple; member
|
D | compat.hpp | 102 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/ |
D | native.cpp | 113 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/ |
D | triple.cpp | 202 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/ |
D | regex_convert.cpp | 56 long triple(long val) in triple() function 141 subscript = regex_p(expr) [emit_modified_subscript(&triple)], in definition()
|
/third_party/flutter/skia/src/ports/ |
D | SkFontHost_FreeType_common.cpp | 140 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/ |
D | test_hypermap.py | 72 def triple(self, x): member in test_hypermap_func_const.NetMap 79 _list = [self.double, self.triple, self.square]
|
/third_party/openssl/doc/man3/ |
D | EVP_des.pod | 64 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,
|