/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/mesa3d/src/amd/llvm/ |
D | ac_llvm_util.c | 92 LLVMTargetRef ac_get_llvm_target(const char *triple) in ac_get_llvm_target() argument 97 if (LLVMGetTargetFromTriple(triple, &target, &err_message)) { in ac_get_llvm_target() 98 fprintf(stderr, "Cannot find target for triple %s ", triple); in ac_get_llvm_target() 199 const char *triple = (tm_options & AC_TM_SUPPORTS_SPILL) ? "amdgcn-mesa-mesa3d" : "amdgcn--"; in ac_create_target_machine() local 200 LLVMTargetRef target = ac_get_llvm_target(triple); in ac_create_target_machine() 204 LLVMCreateTargetMachine(target, triple, name, "", level, in ac_create_target_machine() 214 *out_triple = triple; in ac_create_target_machine() 344 const char *triple; in ac_init_llvm_compiler() local 347 compiler->tm = ac_create_target_machine(family, tm_options, LLVMCodeGenLevelDefault, &triple); in ac_init_llvm_compiler() 358 compiler->target_library_info = ac_create_target_library_info(triple); in ac_init_llvm_compiler()
|
D | ac_llvm_util.h | 92 LLVMTargetRef ac_get_llvm_target(const char *triple); 119 LLVMTargetLibraryInfoRef ac_create_target_library_info(const char *triple);
|
/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/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/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/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/mesa3d/src/gallium/frontends/clover/llvm/ |
D | compat.hpp | 102 clang::InputKind ik, const ::llvm::Triple& triple, in compiler_set_lang_defaults() 106 c->getLangOpts().setLangDefaults(c->getLangOpts(), ik.getLanguage(), triple, in compiler_set_lang_defaults() 108 c->getInvocation().setLangDefaults(c->getLangOpts(), ik, triple, in compiler_set_lang_defaults()
|
D | util.hpp | 50 triple(s.begin() + s.find_first_of("-") + 1, s.end()) {} in target() 53 std::string triple; member
|
/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/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/spirv-tools/source/ |
D | spirv_target_env.cpp | 194 for (auto triple : ordered_vulkan_envs) { in spvParseVulkanEnv() local 195 if (triple.vulkan_ver >= vulkan_ver && triple.spirv_ver >= spirv_ver) { in spvParseVulkanEnv() 196 *env = triple.vulkan_env; in spvParseVulkanEnv()
|
/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/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/EGL/extensions/NV/ |
D | EGL_NV_n_buffer.txt | 117 1. Why do we need triple-buffering? 128 2. Why quadruple-buffering? Isn't triple-buffering enough to 133 operating on a system, triple-buffering is sufficient. However,
|
/third_party/openssl/doc/man3/ |
D | EVP_des_cbc.pod | 68 Two key triple DES in ECB, CBC, CFB with 64-bit shift and OFB modes. 79 Three-key triple DES in ECB, CBC, CFB with 64-bit shift, CFB with 1-bit shift,
|
/third_party/openssl/doc/man1/ |
D | openssl-enc.pod.in | 310 des-ede-cbc Two key triple DES EDE in CBC mode 311 des-ede Two key triple DES EDE in ECB mode 312 des-ede-cfb Two key triple DES EDE in CFB mode 313 des-ede-ofb Two key triple DES EDE in OFB mode 315 des-ede3-cbc Three key triple DES EDE in CBC mode 316 des-ede3 Three key triple DES EDE in ECB mode 318 des-ede3-cfb Three key triple DES EDE CFB mode 319 des-ede3-ofb Three key triple DES EDE in OFB mode
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | numrange_impl.cpp | 163 const auto& triple = fTriples[i]; in resolve() local 164 if (triple.first == first && triple.second == second) { in resolve() 165 return triple.result; in resolve()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Config/ |
D | llvm-config.h.cmake | 20 /* Target triple LLVM will generate code for by default */ 29 /* Host triple LLVM will be executed on */
|
/third_party/mesa3d/src/amd/compiler/ |
D | aco_print_asm.cpp | 420 const char* triple = "amdgcn--"; in check_print_asm_support() local 421 LLVMTargetRef target = ac_get_llvm_target(triple); in check_print_asm_support() 424 target, triple, name, "", LLVMCodeGenLevelDefault, LLVMRelocDefault, LLVMCodeModelDefault); in check_print_asm_support()
|