/third_party/mesa3d/src/compiler/nir/ |
D | nir_opt_combine_stores.c | 101 struct combined_store *combo) in free_combined_store() argument 103 list_del(&combo->link); in free_combined_store() 104 combo->write_mask = 0; in free_combined_store() 105 list_add(&combo->link, &state->freelist); in free_combined_store() 110 struct combined_store *combo) in combine_stores() argument 112 assert(combo->latest); in combine_stores() 113 assert(combo->latest->intrinsic == nir_intrinsic_store_deref); in combine_stores() 118 if ((combo->write_mask & nir_intrinsic_write_mask(combo->latest)) == in combine_stores() 119 combo->write_mask) in combine_stores() 122 state->b.cursor = nir_before_instr(&combo->latest->instr); in combine_stores() [all …]
|
/third_party/skia/tests/ |
D | GrSurfaceTest.cpp | 113 for (const GrCaps::TestFormatColorTypeCombination& combo : combos) { in DEF_GPUTEST_FOR_ALL_CONTEXTS() local 115 SkASSERT(combo.fColorType != GrColorType::kUnknown); in DEF_GPUTEST_FOR_ALL_CONTEXTS() 116 SkASSERT(combo.fFormat.isValid()); in DEF_GPUTEST_FOR_ALL_CONTEXTS() 121 if (ctxInfo.backend() == kVulkan_GrBackend && combo.fColorType == GrColorType::kABGR_4444) { in DEF_GPUTEST_FOR_ALL_CONTEXTS() 128 bool isCompressed = caps->isFormatCompressed(combo.fFormat); in DEF_GPUTEST_FOR_ALL_CONTEXTS() 129 bool isTexturable = caps->isFormatTexturable(combo.fFormat, GrTextureType::k2D); in DEF_GPUTEST_FOR_ALL_CONTEXTS() 131 sk_sp<GrSurface> tex = createTexture(kDims, combo.fColorType, combo.fFormat, in DEF_GPUTEST_FOR_ALL_CONTEXTS() 135 GrColorTypeToStr(combo.fColorType), combo.fFormat.toStr().c_str(), in DEF_GPUTEST_FOR_ALL_CONTEXTS() 143 combo.fFormat, kDims, GrRenderable::kNo, 1, GrMipmapped::kYes, in DEF_GPUTEST_FOR_ALL_CONTEXTS() 147 GrColorTypeToStr(combo.fColorType), combo.fFormat.toStr().c_str(), in DEF_GPUTEST_FOR_ALL_CONTEXTS() [all …]
|
D | BackendAllocationTest.cpp | 600 for (auto combo : combinations) { in color_type_backend_allocation_test() local 601 SkColorType colorType = combo.fColorType; in color_type_backend_allocation_test() 605 if (kRGBA_F32_SkColorType == combo.fColorType) { in color_type_backend_allocation_test() 622 if (kRGB_888x_SkColorType == combo.fColorType) { in color_type_backend_allocation_test() 679 SkColorTypeToGrColorType(colorType), combo.fColor, mipmapped, in color_type_backend_allocation_test() 801 for (auto combo : combinations) { in DEF_GPUTEST_FOR_ALL_GL_CONTEXTS() local 805 GrBackendFormat format = GrBackendFormat::MakeGL(combo.fFormat, target); in DEF_GPUTEST_FOR_ALL_GL_CONTEXTS() 810 if (GrColorType::kBGRA_8888 == combo.fColorType || in DEF_GPUTEST_FOR_ALL_GL_CONTEXTS() 811 GrColorType::kBGRA_1010102 == combo.fColorType) { in DEF_GPUTEST_FOR_ALL_GL_CONTEXTS() 815 (GR_GL_RGBA8 == combo.fFormat || GR_GL_RGB10_A2 == combo.fFormat)) { in DEF_GPUTEST_FOR_ALL_GL_CONTEXTS() [all …]
|
D | MtlBackendAllocationTest.mm | 89 for (auto combo : combinations) { 90 GrBackendFormat format = GrBackendFormat::MakeMtl(combo.fFormat); 92 if (!mtlCaps->isFormatTexturable(combo.fFormat)) { 97 if (GrColorType::kRGBA_F32 == combo.fColorType) { 112 combo.fColorType, GrBackendFormat::MakeMtl(combo.fFormat), 1)) { 129 test_wrapping(dContext, reporter, uninitCreateMtd, combo.fColorType, mipMapped, 143 switch (combo.fColorType) { 170 test_color_init(dContext, reporter, createWithColorMtd, combo.fColorType, 171 combo.fColor, mipMapped, renderable);
|
D | CompressedBackendAllocationTest.cpp | 292 for (auto combo : combinations) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local 293 GrBackendFormat format = dContext->compressedBackendFormat(combo.fCompression); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 317 combo.fColor, combo.fCompression, mipMapped); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 330 combo.fCompression, mipMapped); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|
/third_party/curl/tests/ |
D | test1139.pl | 232 my $combo; 235 $combo = "-$1, --$2"; 239 $combo = "--$1"; 241 if($combo) { 242 push @manpage, $combo; 243 $opts{$combo} |= 2; 260 my $combo; 263 $combo = "-$1, --$2"; 267 $combo = "--$1"; 269 if($combo) { [all …]
|
/third_party/libdrm/ |
D | meson_options.txt | 23 type : 'combo', 30 type : 'combo', 37 type : 'combo', 44 type : 'combo', 51 type : 'combo', 58 type : 'combo', 65 type : 'combo', 72 type : 'combo', 79 type : 'combo', 86 type : 'combo', [all …]
|
/third_party/skia/tests/graphite/ |
D | UniformTest.cpp | 17 std::tuple<SkPaint, int> create_paint(skgpu::Combination combo) { in create_paint() argument 25 switch (combo.fShaderType) { in create_paint() 30 s = SkGradientShader::MakeLinear(pts, colors, offsets, 2, combo.fTileMode); in create_paint() 34 s = SkGradientShader::MakeRadial({0, 0}, 100, colors, offsets, 2, combo.fTileMode); in create_paint() 38 s = SkGradientShader::MakeSweep(0, 0, colors, offsets, 2, combo.fTileMode, in create_paint() 45 colors, offsets, 2, combo.fTileMode); in create_paint() 52 p.setBlendMode(combo.fBlendMode); in create_paint()
|
D | ProgramCacheTest.cpp | 29 REPORTER_ASSERT(reporter, pi1->combo() == c1); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() 42 REPORTER_ASSERT(reporter, pi2->combo() == c2); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() 58 REPORTER_ASSERT(reporter, pi3->combo() == c3); in DEF_GRAPHITE_TEST_FOR_CONTEXTS()
|
/third_party/mesa3d/ |
D | meson_options.txt | 32 type : 'combo', 49 type : 'combo', 90 type : 'combo', 103 type : 'combo', 116 type : 'combo', 129 type : 'combo', 142 type : 'combo', 161 type : 'combo', 218 type : 'combo', 261 type : 'combo', [all …]
|
/third_party/libwebsockets/lib/misc/ |
D | dir.c | 78 lws_dir_via_stat(char *combo, size_t l, const char *path, struct lws_dir_entry *lde) in lws_dir_via_stat() argument 82 lws_strncpy(combo + l, path, COMBO_SIZEOF - l); in lws_dir_via_stat() 86 if (!stat(combo, &s)) { in lws_dir_via_stat() 120 char combo[COMBO_SIZEOF]; in lws_dir() local 123 l = (size_t)(ssize_t)lws_snprintf(combo, COMBO_SIZEOF - 2, "%s", dirpath); in lws_dir() 124 combo[l++] = csep; in lws_dir() 125 combo[l] = '\0'; in lws_dir() 147 lws_dir_via_stat(combo, l, namelist[i]->d_name, &lde); in lws_dir() 169 lws_dir_via_stat(combo, l, namelist[i]->d_name, &lde); in lws_dir()
|
/third_party/typescript/tests/cases/conformance/types/members/ |
D | indexSignatures1.ts | 31 declare let combo: { [x: `foo-${string}`]: 'a' | 'b' } & { [x: `${string}-bar`]: 'b' | 'c' }; variable 32 const x1 = combo['foo-test']; // 'a' | 'b' 33 const x2 = combo['test-bar']; // 'b' | 'c' 34 const x3 = combo['foo-test-bar']; // 'b' (('a' | 'b') & ('b' | 'c')) 38 const x4 = combo[`foo-${str}`]; 39 const x5 = combo[`${str}-bar`]; 40 const x6 = combo[`foo-${str}-bar`];
|
/third_party/typescript/tests/baselines/reference/ |
D | indexSignatures1.js | 28 declare let combo: { [x: `foo-${string}`]: 'a' | 'b' } & { [x: `${string}-bar`]: 'b' | 'c' }; 29 const x1 = combo['foo-test']; // 'a' | 'b' 30 const x2 = combo['test-bar']; // 'b' | 'c' 31 const x3 = combo['foo-test-bar']; // 'b' (('a' | 'b') & ('b' | 'c')) 35 const x4 = combo[`foo-${str}`]; 36 const x5 = combo[`${str}-bar`]; 37 const x6 = combo[`foo-${str}-bar`]; 342 const x1 = combo['foo-test']; // 'a' | 'b' 343 const x2 = combo['test-bar']; // 'b' | 'c' 344 const x3 = combo['foo-test-bar']; // 'b' (('a' | 'b') & ('b' | 'c')) [all …]
|
D | indexSignatures1.types | 76 declare let combo: { [x: `foo-${string}`]: 'a' | 'b' } & { [x: `${string}-bar`]: 'b' | 'c' }; 77 >combo : { [x: `foo-${string}`]: "a" | "b"; } & { [x: `${string}-bar`]: "b" | "c"; } 81 const x1 = combo['foo-test']; // 'a' | 'b' 83 >combo['foo-test'] : "a" | "b" 84 >combo : { [x: `foo-${string}`]: "a" | "b"; } & { [x: `${string}-bar`]: "b" | "c"; } 87 const x2 = combo['test-bar']; // 'b' | 'c' 89 >combo['test-bar'] : "b" | "c" 90 >combo : { [x: `foo-${string}`]: "a" | "b"; } & { [x: `${string}-bar`]: "b" | "c"; } 93 const x3 = combo['foo-test-bar']; // 'b' (('a' | 'b') & ('b' | 'c')) 95 >combo['foo-test-bar'] : "b" [all …]
|
D | indexSignatures1.symbols | 73 declare let combo: { [x: `foo-${string}`]: 'a' | 'b' } & { [x: `${string}-bar`]: 'b' | 'c' }; 74 >combo : Symbol(combo, Decl(indexSignatures1.ts, 26, 11)) 78 const x1 = combo['foo-test']; // 'a' | 'b' 80 >combo : Symbol(combo, Decl(indexSignatures1.ts, 26, 11)) 82 const x2 = combo['test-bar']; // 'b' | 'c' 84 >combo : Symbol(combo, Decl(indexSignatures1.ts, 26, 11)) 86 const x3 = combo['foo-test-bar']; // 'b' (('a' | 'b') & ('b' | 'c')) 88 >combo : Symbol(combo, Decl(indexSignatures1.ts, 26, 11)) 93 const x4 = combo[`foo-${str}`]; 95 >combo : Symbol(combo, Decl(indexSignatures1.ts, 26, 11)) [all …]
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
D | test_widgets.py | 421 self.combo = self.create() 431 width = self.combo.winfo_width() 434 self.assertRegex(self.combo.identify(x, y), r'.*downarrow\Z') 435 self.combo.event_generate('<ButtonPress-1>', x=x, y=y) 436 self.combo.event_generate('<ButtonRelease-1>', x=x, y=y) 437 self.combo.update_idletasks() 442 self.combo['values'] = [1] 443 self.combo.bind('<<ComboboxSelected>>', 445 self.combo.pack() 446 self.combo.update() [all …]
|
/third_party/node/deps/openssl/openssl/crypto/ec/curve448/ |
D | curve448.c | 638 ossl_curve448_base_double_scalarmul_non_secret(curve448_point_t combo, in ossl_curve448_base_double_scalarmul_non_secret() argument 658 curve448_point_copy(combo, ossl_curve448_point_identity); in ossl_curve448_base_double_scalarmul_non_secret() 662 pniels_to_pt(combo, precmp_var[control_var[0].addend >> 1]); in ossl_curve448_base_double_scalarmul_non_secret() 665 pniels_to_pt(combo, precmp_var[control_var[0].addend >> 1]); in ossl_curve448_base_double_scalarmul_non_secret() 666 add_niels_to_pt(combo, in ossl_curve448_base_double_scalarmul_non_secret() 673 niels_to_pt(combo, ossl_curve448_wnaf_base[control_pre[0].addend >> 1]); in ossl_curve448_base_double_scalarmul_non_secret() 681 point_double_internal(combo, combo, i && !(cv || cp)); in ossl_curve448_base_double_scalarmul_non_secret() 687 add_pniels_to_pt(combo, in ossl_curve448_base_double_scalarmul_non_secret() 691 sub_pniels_from_pt(combo, in ossl_curve448_base_double_scalarmul_non_secret() 701 add_niels_to_pt(combo, in ossl_curve448_base_double_scalarmul_non_secret() [all …]
|
/third_party/openssl/crypto/ec/curve448/ |
D | curve448.c | 638 ossl_curve448_base_double_scalarmul_non_secret(curve448_point_t combo, in ossl_curve448_base_double_scalarmul_non_secret() argument 658 curve448_point_copy(combo, ossl_curve448_point_identity); in ossl_curve448_base_double_scalarmul_non_secret() 662 pniels_to_pt(combo, precmp_var[control_var[0].addend >> 1]); in ossl_curve448_base_double_scalarmul_non_secret() 665 pniels_to_pt(combo, precmp_var[control_var[0].addend >> 1]); in ossl_curve448_base_double_scalarmul_non_secret() 666 add_niels_to_pt(combo, in ossl_curve448_base_double_scalarmul_non_secret() 673 niels_to_pt(combo, ossl_curve448_wnaf_base[control_pre[0].addend >> 1]); in ossl_curve448_base_double_scalarmul_non_secret() 681 point_double_internal(combo, combo, i && !(cv || cp)); in ossl_curve448_base_double_scalarmul_non_secret() 687 add_pniels_to_pt(combo, in ossl_curve448_base_double_scalarmul_non_secret() 691 sub_pniels_from_pt(combo, in ossl_curve448_base_double_scalarmul_non_secret() 701 add_niels_to_pt(combo, in ossl_curve448_base_double_scalarmul_non_secret() [all …]
|
/third_party/lzma/CPP/7zip/UI/GUI/ |
D | ExtractDialog.cpp | 97 void AddComboItems(NControl::CComboBox &combo, const UInt32 *langIDs, unsigned numItems, const int … 98 void AddComboItems(NControl::CComboBox &combo, const UInt32 *langIDs, unsigned numItems, const int … in AddComboItems() argument 105 const int index = (int)combo.AddString(s); in AddComboItems() 106 combo.SetItemData(index, (LPARAM)i); in AddComboItems() 110 combo.SetCurSel(curSel); in AddComboItems()
|
/third_party/skia/resources/sksl/workarounds/ |
D | TernaryShortCircuit.sksl | 11 bool combo = (x && y) || (x || y); 13 while (andXY && orXY && combo && prec) {
|
/third_party/skia/tests/sksl/workarounds/ |
D | TernaryShortCircuitStandaloneSettings.glsl | 10 bool combo = x && y || (x || y); 12 while (((andXY && orXY) && combo) && prec) {
|
D | TernaryShortCircuit.glsl | 10 bool combo = (x ? y : false) ? true : (x ? true : y); 12 while (((andXY ? orXY : false) ? combo : false) ? prec : false) {
|
/third_party/skia/src/gpu/mock/ |
D | GrMockCaps.cpp | 95 for (const GrCaps::TestFormatColorTypeCombination& combo : combos) { in getTestingCombinations() local 96 SkASSERT(this->onAreColorTypeAndFormatCompatible(combo.fColorType, combo.fFormat)); in getTestingCombinations()
|
/third_party/skia/src/gpu/dawn/ |
D | GrDawnCaps.cpp | 210 for (const GrCaps::TestFormatColorTypeCombination& combo : combos) { in getTestingCombinations() local 211 SkASSERT(this->onAreColorTypeAndFormatCompatible(combo.fColorType, combo.fFormat)); in getTestingCombinations()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | gen_format_map.py | 154 combo_data = [combo for sublist in es3_combo_data.values() for combo in sublist]
|