/external/curl/tests/ |
D | manpage-scan.pl | 209 my $combo; 212 $combo = "-$1, --$2"; 216 $combo = "--$1"; 218 if($combo) { 219 push @manpage, $combo; 220 $opts{$combo} |= 2; 237 my $combo; 240 $combo = "-$1, --$2"; 244 $combo = "--$1"; 246 if($combo) { [all …]
|
/external/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 …]
|
/external/vboot_reference/tests/ |
D | vb21_host_key_tests.c | 33 static void private_key_tests(const struct alg_combo *combo, in private_key_tests() argument 73 key->hash_alg = combo->hash_alg; in private_key_tests() 74 key->sig_alg = combo->sig_alg; in private_key_tests() 156 TEST_SUCC(vb2_private_key_hash(&ckey, combo->hash_alg), "Hash key"); in private_key_tests() 158 TEST_EQ(ckey->hash_alg, combo->hash_alg, " hash_alg"); in private_key_tests() 160 TEST_EQ(memcmp(&ckey->guid, vb2_hash_guid(combo->hash_alg), in private_key_tests() 168 static void public_key_tests(const struct alg_combo *combo, in public_key_tests() argument 186 TEST_EQ(key->sig_alg, combo->sig_alg, " sig_alg"); in public_key_tests() 190 bufsize = vb2_packed_key_size(combo->sig_alg); in public_key_tests() 216 key->hash_alg = combo->hash_alg; in public_key_tests() [all …]
|
D | vb21_host_sig_tests.c | 39 static void sig_tests(const struct alg_combo *combo, in sig_tests() argument 64 prik->hash_alg = combo->hash_alg; in sig_tests() 65 prik->sig_alg = combo->sig_alg; in sig_tests() 70 pubk->hash_alg = combo->hash_alg; in sig_tests() 73 TEST_SUCC(vb2_private_key_hash(&prihash, combo->hash_alg), in sig_tests() 75 TEST_SUCC(vb2_public_key_hash(&pubhash, combo->hash_alg), in sig_tests() 166 static int test_algorithm(const struct alg_combo *combo, const char *keys_dir) in test_algorithm() argument 168 int rsa_bits = vb2_rsa_sig_size(combo->sig_alg) * 8; in test_algorithm() 172 printf("***Testing algorithm: %s\n", combo->name); in test_algorithm() 177 sig_tests(combo, pemfile, keybfile); in test_algorithm()
|
/external/minigbm/ |
D | i915.c | 60 static bool format_compatible(const struct combination *combo, uint32_t format) in format_compatible() argument 62 if (combo->format == format) in format_compatible() 67 return combo->format == DRM_FORMAT_ARGB8888; in format_compatible() 69 return combo->format == DRM_FORMAT_ABGR8888; in format_compatible() 71 return combo->format == DRM_FORMAT_RGBA8888; in format_compatible() 73 return combo->format == DRM_FORMAT_BGRA8888; in format_compatible() 82 struct combination *combo; in i915_add_kms_item() local 89 combo = (struct combination *)drv_array_at_idx(drv->combos, i); in i915_add_kms_item() 90 if (!format_compatible(combo, item->format)) in i915_add_kms_item() 94 combo->metadata.tiling == I915_TILING_X) { in i915_add_kms_item() [all …]
|
D | amdgpu.c | 135 struct combination *combo; in amdgpu_create_bo() local 139 combo = drv_get_combination(bo->drv, format, use_flags); in amdgpu_create_bo() 140 if (!combo) in amdgpu_create_bo() 143 if (combo->metadata.tiling == TILE_TYPE_DRI) in amdgpu_create_bo() 186 struct combination *combo; in amdgpu_import_bo() local 187 combo = drv_get_combination(bo->drv, data->format, data->use_flags); in amdgpu_import_bo() 188 if (!combo) in amdgpu_import_bo() 191 if (combo->metadata.tiling == TILE_TYPE_DRI) in amdgpu_import_bo()
|
D | helpers.c | 498 struct combination combo = { .format = formats[i], in drv_add_combinations() local 502 drv_array_append(drv->combos, &combo); in drv_add_combinations() 510 struct combination *combo; in drv_modify_combination() local 513 combo = (struct combination *)drv_array_at_idx(drv->combos, i); in drv_modify_combination() 514 if (combo->format == format && combo->metadata.tiling == metadata->tiling && in drv_modify_combination() 515 combo->metadata.modifier == metadata->modifier) in drv_modify_combination() 516 combo->use_flags |= use_flags; in drv_modify_combination() 620 struct combination *combo; in drv_modify_linear_combinations() local 642 combo = drv_array_at_idx(drv->combos, j); in drv_modify_linear_combinations() 643 if (item->format == combo->format) in drv_modify_linear_combinations() [all …]
|
D | rockchip.c | 81 struct combination *combo; in rockchip_add_kms_item() local 85 combo = (struct combination *)drv_array_at_idx(drv->combos, i); in rockchip_add_kms_item() 86 if (combo->format == item->format) { in rockchip_add_kms_item() 100 combo->use_flags |= item->use_flags; in rockchip_add_kms_item()
|
/external/mesa3d/ |
D | meson_options.txt | 29 type : 'combo', 66 type : 'combo', 79 type : 'combo', 92 type : 'combo', 105 type : 'combo', 118 type : 'combo', 131 type : 'combo', 186 type : 'combo', 193 type : 'combo', 200 type : 'combo', [all …]
|
/external/llvm/utils/TableGen/ |
D | DFAPacketizerEmitter.cpp | 392 unsigned combo = ComboBitToBitsMap[resourceMask]; in AddInsnClassStages() local 393 if (combo && ((~prevState & combo) != combo)) { in AddInsnClassStages() 396 << " (0x" << utohexstr(combo) <<") cannot be scheduled\n"); in AddInsnClassStages() 403 unsigned ResultingResourceState = prevState | resourceMask | combo; in AddInsnClassStages() 408 if (combo) in AddInsnClassStages() 409 dbgs() << " | 0x" << utohexstr(combo); in AddInsnClassStages() 491 unsigned combo = ComboBitToBitsMap[InsnClass[i]]; in canMaybeAddInsnClass() local 492 if (combo && ((~resources & combo) != combo)) { in canMaybeAddInsnClass() 495 << " (0x" << utohexstr(combo) <<") cannot be scheduled\n"); in canMaybeAddInsnClass()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/ |
D | DFAPacketizerEmitter.cpp | 397 unsigned combo = ComboBitToBitsMap[resourceMask]; in AddInsnClassStages() local 398 if (combo && ((~prevState & combo) != combo)) { in AddInsnClassStages() 401 << " (0x" << Twine::utohexstr(combo) in AddInsnClassStages() 409 unsigned ResultingResourceState = prevState | resourceMask | combo; in AddInsnClassStages() 414 if (combo) in AddInsnClassStages() 415 dbgs() << " | 0x" << Twine::utohexstr(combo); in AddInsnClassStages() 498 unsigned combo = ComboBitToBitsMap[InsnClass[i]]; in canMaybeAddInsnClass() local 499 if (combo && ((~resources & combo) != combo)) { in canMaybeAddInsnClass() 503 << Twine::utohexstr(combo) in canMaybeAddInsnClass()
|
/external/python/cpython2/Lib/lib-tk/test/test_ttk/ |
D | test_widgets.py | 426 self.combo = self.create() 436 width = self.combo.winfo_width() 437 self.combo.event_generate('<ButtonPress-1>', x=width - 5, y=5) 438 self.combo.event_generate('<ButtonRelease-1>', x=width - 5, y=5) 439 self.combo.update_idletasks() 445 self.combo['values'] = [1] 446 self.combo.bind('<<ComboboxSelected>>', 448 self.combo.pack() 449 self.combo.wait_visibility() 451 height = self.combo.winfo_height() [all …]
|
/external/python/cpython3/Lib/tkinter/test/test_ttk/ |
D | test_widgets.py | 429 self.combo = self.create() 439 width = self.combo.winfo_width() 440 self.combo.event_generate('<ButtonPress-1>', x=width - 5, y=5) 441 self.combo.event_generate('<ButtonRelease-1>', x=width - 5, y=5) 442 self.combo.update_idletasks() 448 self.combo['values'] = [1] 449 self.combo.bind('<<ComboboxSelected>>', 451 self.combo.pack() 452 self.combo.wait_visibility() 454 height = self.combo.winfo_height() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | TestMixedScript.java | 146 for (BitSet combo : combinations) { in checkSimple() 147 if (!combo.get(single)) { in checkSimple() 156 for (BitSet combo : combinations) { in checkSimple() 157 tempBitSet.and(combo); in checkSimple() 175 for (BitSet combo : combinations) { in checkHighlyRestricted() 176 if (!match.intersects(combo)) { in checkHighlyRestricted()
|
/external/selinux/gui/ |
D | statusPage.py | 146 def enabled_changed(self, combo): argument 147 enabled = combo.get_active() 152 combo.set_active(self.enabled) 157 combo.set_active(self.enabled)
|
/external/lzma/CPP/7zip/UI/GUI/ |
D | ExtractDialog.cpp | 97 void AddComboItems(NControl::CComboBox &combo, const UInt32 *langIDs, unsigned numItems, const int … in AddComboItems() argument 104 int index = (int)combo.AddString(s); in AddComboItems() 105 combo.SetItemData(index, i); in AddComboItems() 109 combo.SetCurSel(curSel); in AddComboItems()
|
/external/minigbm/cros_gralloc/ |
D | cros_gralloc_driver.cc | 79 struct combination *combo; in is_supported() local 82 combo = drv_get_combination(drv_, resolved_format, descriptor->use_flags); in is_supported() 83 return (combo != nullptr); in is_supported()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _m_a_x_p.py | 120 for combo in items: 121 print(" %s: %s" % combo)
|
/external/skia/third_party/skcms/src/ |
D | Transform_inl.h | 601 for (int combo = 0; combo < (1<<dim); combo++) { // This loop can be done in any order. in clut() local 609 I32 ix = index [0 + (combo&1)*4]; in clut() 610 F w = weight[0 + (combo&1)*4]; in clut() 613 case 3: ix += index [3 + (combo&8)/2]; in clut() 614 w *= weight[3 + (combo&8)/2]; in clut() 618 case 2: ix += index [2 + (combo&4)*1]; in clut() 619 w *= weight[2 + (combo&4)*1]; in clut() 623 case 1: ix += index [1 + (combo&2)*2]; in clut() 624 w *= weight[1 + (combo&2)*2]; in clut()
|
/external/skqp/third_party/skcms/src/ |
D | Transform_inl.h | 601 for (int combo = 0; combo < (1<<dim); combo++) { // This loop can be done in any order. in clut() local 609 I32 ix = index [0 + (combo&1)*4]; in clut() 610 F w = weight[0 + (combo&1)*4]; in clut() 613 case 3: ix += index [3 + (combo&8)/2]; in clut() 614 w *= weight[3 + (combo&8)/2]; in clut() 618 case 2: ix += index [2 + (combo&4)*1]; in clut() 619 w *= weight[2 + (combo&4)*1]; in clut() 623 case 1: ix += index [1 + (combo&2)*2]; in clut() 624 w *= weight[1 + (combo&2)*2]; in clut()
|
/external/brotli/c/enc/ |
D | cluster_inc.h | 45 HistogramType combo = out[idx1]; 47 FN(HistogramAddHistogram)(&combo, &out[idx2]); 48 cost_combo = FN(BrotliPopulationCost)(&combo);
|
/external/pdfium/fpdfsdk/pwl/ |
D | README.md | 16 * CPWL_CBListBox (combo box)
|
/external/u-boot/arch/arm/mach-sti/ |
D | Kconfig | 16 - On-Board USB combo WiFi/Bluetooth RTL8723BU
|
/external/libpng/contrib/libtests/ |
D | pngimage.c | 300 int combo = known_bad_combos[i][0]; in is_bad_combo() local 302 if ((combo & transforms) == combo && in is_bad_combo() 1511 goto combo; in test_one_file() 1531 goto combo; in test_one_file() 1537 combo: in test_one_file()
|
/external/antlr/gunit/src/main/java/org/antlr/gunit/swingui/ |
D | TestCaseEditController.java | 364 private JComboBox combo; field in TestCaseEditController.AbstractEditorPane 370 this.combo = comboBox; in AbstractEditorPane() 380 this.add(combo, BorderLayout.NORTH); in initComponents()
|