/Linux-v6.1/drivers/staging/media/deprecated/saa7146/av7110/ |
D | av7110_ipack.c | 10 p->found = 0; in av7110_ipack_reset() 114 if (p->plength != MMAX_PLENGTH - 6 || p->found <= 6) in av7110_ipack_flush() 116 p->plength = p->found - 6; in av7110_ipack_flush() 117 p->found = 0; in av7110_ipack_flush() 152 (p->mpeg == 1 && p->found < 7) || in av7110_ipack_instant_repack() 153 (p->mpeg == 2 && p->found < 9)) in av7110_ipack_instant_repack() 154 && (p->found < 5 || !p->done)) { in av7110_ipack_instant_repack() 155 switch (p->found) { in av7110_ipack_instant_repack() 159 p->found++; in av7110_ipack_instant_repack() 161 p->found = 0; in av7110_ipack_instant_repack() [all …]
|
/Linux-v6.1/net/9p/ |
D | mod.c | 88 struct p9_trans_module *t, *found = NULL; in _p9_get_trans_by_name() local 95 found = t; in _p9_get_trans_by_name() 101 return found; in _p9_get_trans_by_name() 111 struct p9_trans_module *found = NULL; in v9fs_get_trans_by_name() local 113 found = _p9_get_trans_by_name(s); in v9fs_get_trans_by_name() 116 if (!found) { in v9fs_get_trans_by_name() 118 found = _p9_get_trans_by_name(s); in v9fs_get_trans_by_name() 122 return found; in v9fs_get_trans_by_name() 137 struct p9_trans_module *t, *found = NULL; in v9fs_get_default_trans() local 144 found = t; in v9fs_get_default_trans() [all …]
|
/Linux-v6.1/tools/testing/selftests/powerpc/cache_shape/ |
D | cache_shape.c | 55 int found; in test_cache_shape() local 59 found = 0; in test_cache_shape() 63 found++; in test_cache_shape() 69 found++; in test_cache_shape() 75 found++; in test_cache_shape() 81 found++; in test_cache_shape() 87 found++; in test_cache_shape() 93 found++; in test_cache_shape() 99 found++; in test_cache_shape() 105 found++; in test_cache_shape() [all …]
|
/Linux-v6.1/tools/testing/selftests/powerpc/ptrace/ |
D | ptrace-gpr.h | 23 int i, found = 1; in validate_gpr() local 29 found = 0; in validate_gpr() 33 if (!found) in validate_gpr() 41 int i, found = 1; in validate_fpr() local 46 found = 0; in validate_fpr() 50 if (!found) in validate_fpr() 58 int i, found = 1; in validate_fpr_double() local 63 found = 0; in validate_fpr_double() 67 if (!found) in validate_fpr_double()
|
/Linux-v6.1/lib/ |
D | test_linear_ranges.c | 148 bool found; in range_test_get_selector_high() local 152 &sel, &found); in range_test_get_selector_high() 155 KUNIT_EXPECT_TRUE(test, found); in range_test_get_selector_high() 159 &sel, &found); in range_test_get_selector_high() 163 &sel, &found); in range_test_get_selector_high() 165 KUNIT_EXPECT_FALSE(test, found); in range_test_get_selector_high() 181 bool found; in range_test_get_selector_low() local 186 &found); in range_test_get_selector_low() 189 KUNIT_EXPECT_TRUE(test, found); in range_test_get_selector_low() 194 &found); in range_test_get_selector_low() [all …]
|
D | stackdepot.c | 301 struct stack_record *found; in find_stack() local 303 for (found = bucket; found; found = found->next) { in find_stack() 304 if (found->hash == hash && in find_stack() 305 found->size == size && in find_stack() 306 !stackdepot_memcmp(entries, found->entries, size)) in find_stack() 307 return found; in find_stack() 424 struct stack_record *found = NULL, **bucket; in __stack_depot_save() local 452 found = find_stack(smp_load_acquire(bucket), entries, in __stack_depot_save() 454 if (found) in __stack_depot_save() 481 found = find_stack(*bucket, entries, nr_entries, hash); in __stack_depot_save() [all …]
|
D | linear_ranges.c | 140 bool *found) in linear_range_get_selector_low() argument 142 *found = false; in linear_range_get_selector_low() 152 *found = true; in linear_range_get_selector_low() 184 unsigned int *selector, bool *found) in linear_range_get_selector_low_array() argument 193 found); in linear_range_get_selector_low_array() 197 if (*found) in linear_range_get_selector_low_array() 221 bool *found) in linear_range_get_selector_high() argument 223 *found = false; in linear_range_get_selector_high() 233 *found = true; in linear_range_get_selector_high()
|
/Linux-v6.1/drivers/net/ethernet/rocker/ |
D | rocker_ofdpa.c | 744 struct ofdpa_flow_tbl_entry *found; in ofdpa_flow_tbl_find() local 745 size_t key_len = match->key_len ? match->key_len : sizeof(found->key); in ofdpa_flow_tbl_find() 747 hash_for_each_possible(ofdpa->flow_tbl, found, in ofdpa_flow_tbl_find() 749 if (memcmp(&found->key, &match->key, key_len) == 0) in ofdpa_flow_tbl_find() 750 return found; in ofdpa_flow_tbl_find() 760 struct ofdpa_flow_tbl_entry *found; in ofdpa_flow_tbl_add() local 761 size_t key_len = match->key_len ? match->key_len : sizeof(found->key); in ofdpa_flow_tbl_add() 768 found = ofdpa_flow_tbl_find(ofdpa, match); in ofdpa_flow_tbl_add() 770 if (found) { in ofdpa_flow_tbl_add() 771 match->cookie = found->cookie; in ofdpa_flow_tbl_add() [all …]
|
/Linux-v6.1/tools/perf/tests/ |
D | keep-tracking.c | 37 int i, found; in find_comm() local 39 found = 0; in find_comm() 49 found += 1; in find_comm() 54 return found; in find_comm() 78 int found, err = -1; in test__keep_tracking() local 123 found = find_comm(evlist, comm); in test__keep_tracking() 124 if (found != 1) { in test__keep_tracking() 145 found = find_comm(evlist, comm); in test__keep_tracking() 146 if (found != 1) { in test__keep_tracking()
|
/Linux-v6.1/drivers/pinctrl/qcom/ |
D | Kconfig | 22 Qualcomm TLMM block found in the Qualcomm APQ8064 platform. 31 Qualcomm TLMM block found in the Qualcomm APQ8084 platform. 40 Qualcomm TLMM block found in the Qualcomm IPQ4019 platform. 49 Qualcomm TLMM block found in the Qualcomm IPQ8064 platform. 58 the Qualcomm Technologies Inc. TLMM block found on the 69 the Qualcomm Technologies Inc. TLMM block found on the 80 Qualcomm Technologies Inc TLMM block found on the Qualcomm 90 Qualcomm TLMM block found in the Qualcomm 8660 platform. 99 Qualcomm TLMM block found in the Qualcomm 8960 platform. 107 Qualcomm TLMM block found in the Qualcomm 9607 platform. [all …]
|
/Linux-v6.1/drivers/gpu/drm/i915/gt/ |
D | selftest_llc.c | 28 unsigned int ia_freq, ring_freq, found; in gen6_verify_ring_freq() local 42 found = (val >> 0) & 0xff; in gen6_verify_ring_freq() 43 if (found != ia_freq) { in gen6_verify_ring_freq() 47 found, ia_freq); in gen6_verify_ring_freq() 52 found = (val >> 8) & 0xff; in gen6_verify_ring_freq() 53 if (found != ring_freq) { in gen6_verify_ring_freq() 57 found, ring_freq); in gen6_verify_ring_freq()
|
/Linux-v6.1/Documentation/devicetree/bindings/pwm/ |
D | pwm-mediatek.txt | 5 - "mediatek,mt2712-pwm": found on mt2712 SoC. 6 - "mediatek,mt6795-pwm": found on mt6795 SoC. 7 - "mediatek,mt7622-pwm": found on mt7622 SoC. 8 - "mediatek,mt7623-pwm": found on mt7623 SoC. 9 - "mediatek,mt7628-pwm": found on mt7628 SoC. 10 - "mediatek,mt7629-pwm": found on mt7629 SoC. 11 - "mediatek,mt8183-pwm": found on mt8183 SoC. 12 - "mediatek,mt8195-pwm", "mediatek,mt8183-pwm": found on mt8195 SoC. 13 - "mediatek,mt8365-pwm": found on mt8365 SoC. 14 - "mediatek,mt8516-pwm": found on mt8516 SoC.
|
/Linux-v6.1/drivers/misc/habanalabs/common/ |
D | asid.c | 34 unsigned long found; in hl_asid_alloc() local 38 found = find_first_zero_bit(hdev->asid_bitmap, in hl_asid_alloc() 40 if (found == hdev->asic_prop.max_asid) in hl_asid_alloc() 41 found = 0; in hl_asid_alloc() 43 set_bit(found, hdev->asid_bitmap); in hl_asid_alloc() 47 return found; in hl_asid_alloc()
|
/Linux-v6.1/sound/soc/qcom/qdsp6/ |
D | topology.c | 25 bool *found) in audioreach_tplg_alloc_graph_info() argument 35 *found = true; in audioreach_tplg_alloc_graph_info() 39 *found = false; in audioreach_tplg_alloc_graph_info() 71 bool *found) in audioreach_tplg_alloc_sub_graph() argument 85 *found = true; in audioreach_tplg_alloc_sub_graph() 89 *found = false; in audioreach_tplg_alloc_sub_graph() 114 bool *found) in audioreach_tplg_alloc_container() argument 127 *found = true; in audioreach_tplg_alloc_container() 130 *found = false; in audioreach_tplg_alloc_container() 160 uint32_t module_id, bool *found) in audioreach_tplg_alloc_module() argument [all …]
|
/Linux-v6.1/drivers/pci/pcie/ |
D | pme.c | 104 bool found = false; in pcie_pme_from_pci_bridge() local 116 found = true; in pcie_pme_from_pci_bridge() 121 return found; in pcie_pme_from_pci_bridge() 134 bool found = false; in pcie_pme_handle_request() local 143 found = true; in pcie_pme_handle_request() 154 found = pcie_pme_walk_bus(port->subordinate); in pcie_pme_handle_request() 166 found = pcie_pme_from_pci_bridge(bus, devfn); in pcie_pme_handle_request() 167 if (found) in pcie_pme_handle_request() 175 found = true; in pcie_pme_handle_request() 182 if (found) { in pcie_pme_handle_request() [all …]
|
/Linux-v6.1/fs/xfs/libxfs/ |
D | xfs_bit.c | 53 goto found; in xfs_contig_bits() 59 goto found; in xfs_contig_bits() 64 found: in xfs_contig_bits() 93 goto found; in xfs_next_bit() 99 goto found; in xfs_next_bit() 104 found: in xfs_next_bit()
|
/Linux-v6.1/Documentation/scsi/ |
D | scsi-generic.rst | 25 There are three major versions of sg found in the linux kernel (lk): 30 - sg version 3 found in the lk 2.4 series (and the lk 2.5 series). 41 This describes the sg version 3 driver found in the lk 2.4 series. 44 and pdf. This document can also be found at: 48 Documentation for the version 2 sg driver found in the lk 2.2 series can 49 be found at http://sg.danny.cz/sg/. A larger version 53 found at http://www.torque.net/sg/p/original/SCSI-Programming-HOWTO.txt 56 A changelog with brief notes can be found in the 60 can be found at the top of the /usr/src/linux/drivers/scsi/sg.c file. 63 part can be found at http://www.tldp.org/HOWTO/SCSI-2.4-HOWTO . [all …]
|
/Linux-v6.1/drivers/connector/ |
D | cn_queue.c | 65 int found = 0; in cn_queue_add_callback() local 74 found = 1; in cn_queue_add_callback() 78 if (!found) in cn_queue_add_callback() 82 if (found) { in cn_queue_add_callback() 96 int found = 0; in cn_queue_del_callback() local 102 found = 1; in cn_queue_del_callback() 108 if (found) in cn_queue_del_callback()
|
/Linux-v6.1/tools/perf/util/ |
D | find-map.c | 6 int found = 0; in find_map() local 14 while (!found && fgets(line, sizeof(line), maps)) { in find_map() 25 found = 1; in find_map() 29 return !found; in find_map()
|
/Linux-v6.1/tools/usb/ffs-aio-example/multibuff/host_app/ |
D | test.c | 49 libusb_device *found; member 65 state->found = NULL; in test_init() 92 state->found = dev; in test_init() 97 if (!state->found) { in test_init() 102 ret = libusb_open(state->found, &state->handle); in test_init() 164 libusb_get_config_descriptor(state.found, 0, &conf); in main()
|
/Linux-v6.1/drivers/phy/amlogic/ |
D | Kconfig | 11 Enable this to support the HDMI TX PHYs found in Meson8, 24 Enable this to support the Meson USB2 PHYs found in Meson8, 36 Enable this to support the Meson USB2 PHYs found in Meson 48 Enable this to support the Meson MIPI Analog DPHY found in Meson G12A 59 Enable this to support the Meson USB2 PHYs found in Meson 70 Enable this to support the Meson USB3 + PCIE Combo PHY found 81 Enable this to support the Meson MIPI + PCIE PHY found 94 found in Meson AXG SoCs. 105 Enable this to support the Meson MIPI DPHY found in Meson AXG
|
/Linux-v6.1/drivers/net/ethernet/chelsio/cxgb4/ |
D | cxgb4_tc_u32.c | 53 bool found; in fill_match_fields() local 70 found = false; in fill_match_fields() 74 found = true; in fill_match_fields() 82 if (!found) in fill_match_fields() 118 bool found = false; in fill_action_fields() local 127 found = true; in fill_action_fields() 135 if (!found) in fill_action_fields() 229 bool found = false; in cxgb4_config_knode() local 263 found = true; in cxgb4_config_knode() 268 if (!found) in cxgb4_config_knode() [all …]
|
/Linux-v6.1/tools/usb/ffs-aio-example/simple/host_app/ |
D | test.c | 49 libusb_device *found; member 65 state->found = NULL; in test_init() 92 state->found = dev; in test_init() 97 if (!state->found) { in test_init() 102 ret = libusb_open(state->found, &state->handle); in test_init() 164 libusb_get_config_descriptor(state.found, 0, &conf); in main()
|
/Linux-v6.1/tools/testing/cxl/ |
D | mock_acpi.c | 13 struct acpi_device *adev, *found = NULL; in to_cxl_host_bridge() local 17 found = ACPI_COMPANION(dev); in to_cxl_host_bridge() 29 found = adev; in to_cxl_host_bridge() 34 return found; in to_cxl_host_bridge()
|
/Linux-v6.1/usr/include/ |
D | headers_check.pl | 55 my $found; 56 $found = stat($dir . "/" . $inc); 57 if (!$found) { 59 $found = stat($dir . "/" . $inc); 61 if (!$found) {
|