Home
last modified time | relevance | path

Searched refs:found (Results 1 – 25 of 563) sorted by relevance

12345678910>>...23

/drivers/media/pci/ttpci/
Dav7110_ipack.c9 p->found = 0; in av7110_ipack_reset()
113 if (p->plength != MMAX_PLENGTH - 6 || p->found <= 6) in av7110_ipack_flush()
115 p->plength = p->found - 6; in av7110_ipack_flush()
116 p->found = 0; in av7110_ipack_flush()
151 (p->mpeg == 1 && p->found < 7) || in av7110_ipack_instant_repack()
152 (p->mpeg == 2 && p->found < 9)) in av7110_ipack_instant_repack()
153 && (p->found < 5 || !p->done)) { in av7110_ipack_instant_repack()
154 switch (p->found) { in av7110_ipack_instant_repack()
158 p->found++; in av7110_ipack_instant_repack()
160 p->found = 0; in av7110_ipack_instant_repack()
[all …]
/drivers/pci/pcie/
Dpme.c113 bool found = false; in pcie_pme_from_pci_bridge() local
125 found = true; in pcie_pme_from_pci_bridge()
130 return found; in pcie_pme_from_pci_bridge()
143 bool found = false; in pcie_pme_handle_request() local
152 found = true; in pcie_pme_handle_request()
163 found = pcie_pme_walk_bus(port->subordinate); in pcie_pme_handle_request()
175 found = pcie_pme_from_pci_bridge(bus, devfn); in pcie_pme_handle_request()
176 if (found) in pcie_pme_handle_request()
184 found = true; in pcie_pme_handle_request()
191 if (found) { in pcie_pme_handle_request()
[all …]
/drivers/gpu/drm/amd/amdkfd/
Dkfd_pasid.c77 unsigned int found; in kfd_pasid_alloc() local
81 found = find_first_zero_bit(pasid_bitmap, pasid_limit); in kfd_pasid_alloc()
82 if (found == pasid_limit) in kfd_pasid_alloc()
83 found = 0; in kfd_pasid_alloc()
85 set_bit(found, pasid_bitmap); in kfd_pasid_alloc()
89 return found; in kfd_pasid_alloc()
Dkfd_device.c456 unsigned int found, start_search, cur_size; in kfd_gtt_sa_allocate() local
478 found = find_next_zero_bit(kfd->gtt_sa_bitmap, in kfd_gtt_sa_allocate()
482 pr_debug("kfd: found = %d\n", found); in kfd_gtt_sa_allocate()
485 if (found == kfd->gtt_sa_num_of_chunks) in kfd_gtt_sa_allocate()
489 (*mem_obj)->range_start = found; in kfd_gtt_sa_allocate()
490 (*mem_obj)->range_end = found; in kfd_gtt_sa_allocate()
493 found, in kfd_gtt_sa_allocate()
497 found, in kfd_gtt_sa_allocate()
506 set_bit(found, kfd->gtt_sa_bitmap); in kfd_gtt_sa_allocate()
515 kfd->gtt_sa_num_of_chunks, ++found); in kfd_gtt_sa_allocate()
[all …]
/drivers/pinctrl/qcom/
DKconfig16 Qualcomm TLMM block found in the Qualcomm APQ8064 platform.
24 Qualcomm TLMM block found in the Qualcomm APQ8084 platform.
32 Qualcomm TLMM block found in the Qualcomm IPQ8064 platform.
40 Qualcomm TLMM block found in the Qualcomm 8660 platform.
48 Qualcomm TLMM block found in the Qualcomm 8960 platform.
56 Qualcomm TLMM block found in the Qualcomm 8974 platform.
64 Qualcomm TLMM block found on the Qualcomm 8916 platform.
71 This is the GPIO driver for the TLMM block found on the
83 Qualcomm GPIO and MPP blocks found in the Qualcomm PMIC's chips,
95 Qualcomm GPIO and MPP blocks found in the Qualcomm PMIC's chips,
/drivers/media/dvb-core/
Ddvb_filter.c53 if (p->plength == MMAX_PLENGTH-6 && p->found>6){
54 p->plength = p->found-6;
55 p->found = 0;
264 int found = 0;
267 while (found < 4 && c+4 < count){
272 && b[3] == 0xb3) found = 4;
278 if (! found) return -1;
293 int found = 0;
297 while (found < 2 && c < count){
302 found = 2;
[all …]
/drivers/connector/
Dcn_queue.c79 int found = 0; in cn_queue_add_callback() local
88 found = 1; in cn_queue_add_callback()
92 if (!found) in cn_queue_add_callback()
96 if (found) { in cn_queue_add_callback()
110 int found = 0; in cn_queue_del_callback() local
116 found = 1; in cn_queue_del_callback()
122 if (found) in cn_queue_del_callback()
/drivers/staging/lustre/lustre/obdclass/
Dlustre_peer.c100 int found = 0; in class_add_uuid() local
120 found = 1; in class_add_uuid()
132 if (!found) in class_add_uuid()
136 if (found) { in class_add_uuid()
193 int found = 0; in class_check_uuid() local
208 found = 1; in class_check_uuid()
215 return found; in class_check_uuid()
/drivers/net/ethernet/rocker/
Drocker.c2426 struct rocker_flow_tbl_entry *found; in rocker_flow_tbl_find() local
2427 size_t key_len = match->key_len ? match->key_len : sizeof(found->key); in rocker_flow_tbl_find()
2429 hash_for_each_possible(rocker->flow_tbl, found, in rocker_flow_tbl_find()
2431 if (memcmp(&found->key, &match->key, key_len) == 0) in rocker_flow_tbl_find()
2432 return found; in rocker_flow_tbl_find()
2443 struct rocker_flow_tbl_entry *found; in rocker_flow_tbl_add() local
2444 size_t key_len = match->key_len ? match->key_len : sizeof(found->key); in rocker_flow_tbl_add()
2451 found = rocker_flow_tbl_find(rocker, match); in rocker_flow_tbl_add()
2453 if (found) { in rocker_flow_tbl_add()
2454 match->cookie = found->cookie; in rocker_flow_tbl_add()
[all …]
/drivers/char/hw_random/
DKconfig45 Generator hardware found on Intel i8xx-based motherboards.
58 Generator hardware found on AMD 76x-based motherboards.
71 Generator hardware found on Atmel AT91 devices.
84 Generator hardware found on the Broadcom BCM63xx SoCs.
97 Generator hardware found on the Broadcom BCM2835 SoCs.
110 hardware found on the Broadcom iProc SoCs.
123 Generator hardware found on the AMD Geode LX.
136 Generator hardware found on Niagara2 cpus.
149 Generator hardware found on VIA based motherboards.
162 Number Generator hardware found on the Intel IXP45x/46x NPU.
[all …]
/drivers/w1/
Dw1_int.c115 int id, found; in w1_add_master_device() local
131 found = 0; in w1_add_master_device()
134 found = 1; in w1_add_master_device()
138 } while (found); in w1_add_master_device()
242 struct w1_master *dev, *found = NULL; in w1_remove_master_device() local
249 found = dev; in w1_remove_master_device()
254 if (!found) { in w1_remove_master_device()
259 __w1_remove_master_device(found); in w1_remove_master_device()
/drivers/pci/hotplug/
Dacpi_pcihp.c199 int *found = (int *)context; in check_hotplug() local
201 *found = 1; in check_hotplug()
215 int found = 0; in acpi_pci_detect_ejectable() local
218 return found; in acpi_pci_detect_ejectable()
221 check_hotplug, NULL, (void *)&found, NULL); in acpi_pci_detect_ejectable()
222 return found; in acpi_pci_detect_ejectable()
/drivers/video/fbdev/omap2/omapfb/
Domapfb-sysfs.c220 int found; in store_overlays() local
232 found = 0; in store_overlays()
235 found = 1; in store_overlays()
240 if (!found) in store_overlays()
258 int t, found; in store_overlays() local
262 found = 0; in store_overlays()
266 found = 1; in store_overlays()
271 if (found) in store_overlays()
295 int t, found; in store_overlays() local
299 found = 0; in store_overlays()
[all …]
/drivers/pinctrl/
Dpinconf.c411 const struct pinctrl_map *found = NULL; in pinconf_dbg_config_print() local
429 found = map; in pinconf_dbg_config_print()
434 if (!found) { in pinconf_dbg_config_print()
444 pctldev = get_pinctrl_dev_from_devname(found->ctrl_dev_name); in pinconf_dbg_config_print()
447 pinconf_show_config(s, pctldev, found->data.configs.configs, in pinconf_dbg_config_print()
448 found->data.configs.num_configs); in pinconf_dbg_config_print()
473 const struct pinctrl_map *found = NULL; in pinconf_dbg_config_write() local
562 found = map; in pinconf_dbg_config_write()
567 if (!found) { in pinconf_dbg_config_write()
572 pctldev = get_pinctrl_dev_from_devname(found->ctrl_dev_name); in pinconf_dbg_config_write()
[all …]
/drivers/scsi/
DNCR_D700.c232 int i, found = 0; in NCR_D700_intr() local
237 found++; in NCR_D700_intr()
239 return found ? IRQ_HANDLED : IRQ_NONE; in NCR_D700_intr()
254 int found = 0; in NCR_D700_probe() local
338 found++; in NCR_D700_probe()
341 if (!found) { in NCR_D700_probe()
/drivers/scsi/arm/
Dqueue.c264 int found = 0; in queue_probetgtlun() local
270 found = 1; in queue_probetgtlun()
276 return found; in queue_probetgtlun()
290 int found = 0; in queue_remove_cmd() local
297 found = 1; in queue_remove_cmd()
303 return found; in queue_remove_cmd()
/drivers/xen/xen-pciback/
Dpassthrough.c123 int found; in __xen_pcibk_publish_pci_roots() local
132 found = 0; in __xen_pcibk_publish_pci_roots()
134 for (; !found && dev != NULL; dev = dev->bus->self) { in __xen_pcibk_publish_pci_roots()
137 found = 1; in __xen_pcibk_publish_pci_roots()
146 if (!found) { in __xen_pcibk_publish_pci_roots()
/drivers/acpi/acpica/
Dutpredef.c381 u32 found; in acpi_ut_get_resource_bit_width() local
385 found = 0; in acpi_ut_get_resource_bit_width()
391 found++; in acpi_ut_get_resource_bit_width()
397 return (found); in acpi_ut_get_resource_bit_width()
/drivers/staging/lustre/lustre/libcfs/
Dlibcfs_string.c51 int newmask = minmask, i, len, found = 0; in cfs_str2mask() local
65 if (!found) in cfs_str2mask()
81 found = 0; in cfs_str2mask()
91 found = 1; in cfs_str2mask()
95 if (!found && len == 3 && in cfs_str2mask()
101 found = 1; in cfs_str2mask()
103 if (!found) { in cfs_str2mask()
/drivers/media/platform/marvell-ccic/
DKconfig11 CMOS camera controller. This is the controller found on first-
23 controller found on Marvell Armada 610 application
24 processors (and likely beyond). This is the controller found
/drivers/cpufreq/
Ds3c64xx-cpufreq.c112 int count, v, i, found; in s3c64xx_cpufreq_config_regulator() local
126 found = 0; in s3c64xx_cpufreq_config_regulator()
131 found = 1; in s3c64xx_cpufreq_config_regulator()
134 if (!found) { in s3c64xx_cpufreq_config_regulator()
/drivers/gpu/drm/nouveau/dispnv04/
Darb.c60 int found, mclk_extra, mclk_loop, cbs, m1, p1; in nv04_calc_arb() local
78 found = 0; in nv04_calc_arb()
80 while (!found) { in nv04_calc_arb()
81 found = 1; in nv04_calc_arb()
100 found = !mclk_extra; in nv04_calc_arb()
/drivers/watchdog/
Dmixcomwd.c265 int i, ret, found = 0; in mixcomwd_init() local
267 for (i = 0; !found && mixcomwd_io_info[i].ioport != 0; i++) { in mixcomwd_init()
270 found = 1; in mixcomwd_init()
275 if (!found) { in mixcomwd_init()
/drivers/gpu/drm/radeon/
Dradeon_legacy_encoders.c641 enum drm_connector_status found = connector_status_disconnected; in radeon_legacy_primary_dac_detect() local
697 found = connector_status_connected; in radeon_legacy_primary_dac_detect()
706 return found; in radeon_legacy_primary_dac_detect()
1306 bool found = false; in r300_legacy_tv_detect() local
1354 found = true; in r300_legacy_tv_detect()
1357 found = true; in r300_legacy_tv_detect()
1367 return found; in r300_legacy_tv_detect()
1377 bool found = false; in radeon_legacy_tv_detect() local
1420 found = true; in radeon_legacy_tv_detect()
1423 found = true; in radeon_legacy_tv_detect()
[all …]
/drivers/uwb/
Dallocator.c146 int found = UWB_RSV_ALLOC_NOT_FOUND; in uwb_rsv_find_best_column_set() local
181 found = UWB_RSV_ALLOC_FOUND; in uwb_rsv_find_best_column_set()
185 (found == UWB_RSV_ALLOC_NOT_FOUND)) { in uwb_rsv_find_best_column_set()
187 found = UWB_RSV_ALLOC_FOUND; in uwb_rsv_find_best_column_set()
191 if (found == UWB_RSV_ALLOC_FOUND) { in uwb_rsv_find_best_column_set()
201 return found; in uwb_rsv_find_best_column_set()

12345678910>>...23