Home
last modified time | relevance | path

Searched refs:found (Results 1 – 200 of 1580) sorted by relevance

12345678

/linux-4.1.27/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 …]
/linux-4.1.27/sound/pci/hda/
Dthinkpad_helper.c16 bool *found = context; in acpi_check_cb() local
17 *found = true; in acpi_check_cb()
23 bool found = false; in is_thinkpad() local
26 if (ACPI_SUCCESS(acpi_get_devices("LEN0068", acpi_check_cb, &found, NULL)) && found) in is_thinkpad()
28 found = false; in is_thinkpad()
29 return ACPI_SUCCESS(acpi_get_devices("IBM0068", acpi_check_cb, &found, NULL)) && found; in is_thinkpad()
/linux-4.1.27/tools/perf/tests/
Dkeep-tracking.c29 int i, found; in find_comm() local
31 found = 0; in find_comm()
38 found += 1; in find_comm()
42 return found; in find_comm()
67 int found, err = -1; in test__keep_tracking() local
112 found = find_comm(evlist, comm); in test__keep_tracking()
113 if (found != 1) { in test__keep_tracking()
134 found = find_comm(evlist, comm); in test__keep_tracking()
135 if (found != 1) { in test__keep_tracking()
/linux-4.1.27/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.c393 unsigned int found, start_search, cur_size; in kfd_gtt_sa_allocate() local
415 found = find_next_zero_bit(kfd->gtt_sa_bitmap, in kfd_gtt_sa_allocate()
419 pr_debug("kfd: found = %d\n", found); in kfd_gtt_sa_allocate()
422 if (found == kfd->gtt_sa_num_of_chunks) in kfd_gtt_sa_allocate()
426 (*mem_obj)->range_start = found; in kfd_gtt_sa_allocate()
427 (*mem_obj)->range_end = found; in kfd_gtt_sa_allocate()
430 found, in kfd_gtt_sa_allocate()
434 found, in kfd_gtt_sa_allocate()
443 set_bit(found, kfd->gtt_sa_bitmap); in kfd_gtt_sa_allocate()
452 kfd->gtt_sa_num_of_chunks, ++found); in kfd_gtt_sa_allocate()
[all …]
Dkfd_process_queue_manager.c50 unsigned long found; in find_available_queue_slot() local
56 found = find_first_zero_bit(pqm->queue_slot_bitmap, in find_available_queue_slot()
59 pr_debug("kfd: the new slot id %lu\n", found); in find_available_queue_slot()
61 if (found >= KFD_MAX_NUM_OF_QUEUES_PER_PROCESS) { in find_available_queue_slot()
67 set_bit(found, pqm->queue_slot_bitmap); in find_available_queue_slot()
68 *qid = found; in find_available_queue_slot()
/linux-4.1.27/net/9p/
Dmod.c112 struct p9_trans_module *t, *found = NULL; in v9fs_get_trans_by_name() local
119 found = t; in v9fs_get_trans_by_name()
124 return found; in v9fs_get_trans_by_name()
135 struct p9_trans_module *t, *found = NULL; in v9fs_get_default_trans() local
141 found = t; in v9fs_get_default_trans()
145 if (!found) in v9fs_get_default_trans()
148 found = t; in v9fs_get_default_trans()
153 return found; in v9fs_get_default_trans()
/linux-4.1.27/tools/lib/api/fs/
Dfs.c32 bool found; member
56 bool found = false; in fs__read_mounts() local
64 while (!found && in fs__read_mounts()
69 found = true; in fs__read_mounts()
73 return fs->found = found; in fs__read_mounts()
95 fs->found = true; in fs__check_mounts()
133 fs->found = true; in fs__env_override()
156 if (fs->found) in fs__mountpoint()
/linux-4.1.27/fs/btrfs/tests/
Dextent-io-tests.c76 u64 found; in test_find_delalloc() local
115 found = find_lock_delalloc_range(inode, &tmp, locked_page, &start, in test_find_delalloc()
117 if (!found) { in test_find_delalloc()
146 found = find_lock_delalloc_range(inode, &tmp, locked_page, &start, in test_find_delalloc()
148 if (!found) { in test_find_delalloc()
180 found = find_lock_delalloc_range(inode, &tmp, locked_page, &start, in test_find_delalloc()
182 if (found) { in test_find_delalloc()
201 found = find_lock_delalloc_range(inode, &tmp, locked_page, &start, in test_find_delalloc()
203 if (!found) { in test_find_delalloc()
242 found = find_lock_delalloc_range(inode, &tmp, locked_page, &start, in test_find_delalloc()
[all …]
/linux-4.1.27/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 …]
/linux-4.1.27/fs/xfs/
Dxfs_bit.c65 goto found; in xfs_contig_bits()
71 goto found; in xfs_contig_bits()
76 found: in xfs_contig_bits()
105 goto found; in xfs_next_bit()
111 goto found; in xfs_next_bit()
116 found: in xfs_next_bit()
Dxfs_file.c1100 bool found = false; in xfs_lookup_buffer_offset() local
1117 found = true; in xfs_lookup_buffer_offset()
1120 found = true; in xfs_lookup_buffer_offset()
1123 if (found) { in xfs_lookup_buffer_offset()
1130 return found; in xfs_lookup_buffer_offset()
1161 bool found = false; in xfs_find_get_desired_pgoff() local
1194 found = true; in xfs_find_get_desired_pgoff()
1207 found = true; in xfs_find_get_desired_pgoff()
1230 found = true; in xfs_find_get_desired_pgoff()
1251 found = xfs_lookup_buffer_offset(page, &b_offset, type); in xfs_find_get_desired_pgoff()
[all …]
/linux-4.1.27/Documentation/scsi/
Dscsi-generic.txt20 There are three major versions of sg found in the linux kernel (lk):
25 - sg version 3 found in the lk 2.4 series (and the lk 2.5 series).
34 This describes the sg version 3 driver found in the lk 2.4 series.
36 and pdf. This document can also be found at:
39 Documentation for the version 2 sg driver found in the lk 2.2 series can
40 be found at http://sg.danny.cz/sg/. A larger version
44 found at http://www.torque.net/sg/p/original/SCSI-Programming-HOWTO.txt
47 A changelog with brief notes can be found in the
51 can be found at the top of the /usr/src/linux/drivers/scsi/sg.c file.
54 part can be found at http://www.tldp.org/HOWTO/SCSI-2.4-HOWTO .
[all …]
Dbfa.txt34 The latest Firmware package for 3.0.2.2 bfa driver can be found at:
49 be found at:
65 driver can be found at:
/linux-4.1.27/tools/perf/util/
Dfind-vdso-map.c5 int found = 0; in find_vdso_map() local
13 while (!found && fgets(line, sizeof(line), maps)) { in find_vdso_map()
25 found = 1; in find_vdso_map()
29 return !found; in find_vdso_map()
Dvdso.c28 bool found; member
75 if (vdso_file->found) in get_file()
99 vdso_file->found = (vdso != NULL); in get_file()
100 vdso_file->error = !vdso_file->found; in get_file()
111 if (vdso_info->vdso.found) in vdso__exit()
114 if (vdso_info->vdso32.found) in vdso__exit()
116 if (vdso_info->vdsox32.found) in vdso__exit()
214 if (vdso_file->found) in vdso__get_compat_file()
228 vdso_file->found = true; in vdso__get_compat_file()
Dcgroup.c16 int found = 0; in cgroupfs_find_mountpoint() local
37 found = 1; in cgroupfs_find_mountpoint()
43 if (found) in cgroupfs_find_mountpoint()
47 if (!found) in cgroupfs_find_mountpoint()
115 goto found; in add_cgroup()
122 found: in add_cgroup()
Dprobe-finder.c201 goto found; in convert_variable_location()
205 found: in convert_variable_location()
705 bool found; member
724 fsp->found = true; in find_best_scope_cb()
734 fsp->found = true; in find_best_scope_cb()
749 .found = false, in find_best_scope()
754 return fsp.found ? die_mem : NULL; in find_best_scope()
969 int found; member
988 param->found = 1; in pubname_search_cb()
1039 .found = 0, in debuginfo__find_probes()
[all …]
Dsrcline.c25 bool found; member
88 if (a2l->found) in find_address_in_section()
101 a2l->found = bfd_find_nearest_line(abfd, section, a2l->syms, pc - vma, in find_address_in_section()
167 a2l->found = false; in addr2line()
171 if (a2l->found && a2l->filename) { in addr2line()
Dconfig.c459 int ret = 0, found = 0; in perf_config() local
468 found += 1; in perf_config()
495 found += 1; in perf_config()
500 if (found == 0) in perf_config()
/linux-4.1.27/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()
Dconnector.c83 int found = 0; in cn_netlink_send_mult() local
92 found = 1; in cn_netlink_send_mult()
99 if (!found) in cn_netlink_send_mult()
/linux-4.1.27/arch/mips/sgi-ip22/
Dip22-mc.c51 int i, j, found, cnt = 0; in probe_memory() local
72 found = 0; in probe_memory()
81 found = 1; in probe_memory()
83 } while (found); in probe_memory()
87 found = 0; in probe_memory()
88 for (j = 0; j < ARRAY_SIZE(space) && !found; j++) in probe_memory()
91 found = 1; in probe_memory()
94 if (!found) in probe_memory()
/linux-4.1.27/tools/usb/ffs-aio-example/multibuff/host_app/
Dtest.c49 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-4.1.27/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 …]
/linux-4.1.27/tools/usb/ffs-aio-example/simple/host_app/
Dtest.c49 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-4.1.27/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()
/linux-4.1.27/scripts/
Dheaders_check.pl53 my $found;
54 $found = stat($dir . "/" . $inc);
55 if (!$found) {
57 $found = stat($dir . "/" . $inc);
59 if (!$found) {
Dshow_delta108 found = 0
116 found = 1
119 if not found:
/linux-4.1.27/drivers/w1/
Dw1_int.c116 int id, found; in w1_add_master_device() local
132 found = 0; in w1_add_master_device()
135 found = 1; in w1_add_master_device()
139 } while (found); in w1_add_master_device()
243 struct w1_master *dev, *found = NULL; in w1_remove_master_device() local
250 found = dev; in w1_remove_master_device()
255 if (!found) { in w1_remove_master_device()
260 __w1_remove_master_device(found); in w1_remove_master_device()
/linux-4.1.27/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 8960 platform.
48 Qualcomm TLMM block found in the Qualcomm 8974 platform.
56 Qualcomm TLMM block found on the Qualcomm 8916 platform.
67 Qualcomm GPIO and MPP blocks found in the Qualcomm PMIC's chips,
/linux-4.1.27/drivers/net/ethernet/rocker/
Drocker.c2298 struct rocker_flow_tbl_entry *found; in rocker_flow_tbl_find() local
2299 size_t key_len = match->key_len ? match->key_len : sizeof(found->key); in rocker_flow_tbl_find()
2301 hash_for_each_possible(rocker->flow_tbl, found, in rocker_flow_tbl_find()
2303 if (memcmp(&found->key, &match->key, key_len) == 0) in rocker_flow_tbl_find()
2304 return found; in rocker_flow_tbl_find()
2315 struct rocker_flow_tbl_entry *found; in rocker_flow_tbl_add() local
2316 size_t key_len = match->key_len ? match->key_len : sizeof(found->key); in rocker_flow_tbl_add()
2323 found = rocker_flow_tbl_find(rocker, match); in rocker_flow_tbl_add()
2325 if (found) { in rocker_flow_tbl_add()
2326 match->cookie = found->cookie; in rocker_flow_tbl_add()
[all …]
/linux-4.1.27/drivers/video/fbdev/
Dsh_mobile_hdmi.c848 const struct fb_videomode *mode, *found = NULL; in sh_hdmi_read_edid() local
958 else if (found && found_rate_error <= rate_error) in sh_hdmi_read_edid()
977 found = mode; in sh_hdmi_read_edid()
988 if (!found && hdmi->entity.def_mode.xres != 0) { in sh_hdmi_read_edid()
989 found = &hdmi->entity.def_mode; in sh_hdmi_read_edid()
990 found_rate_error = sh_hdmi_rate_error(hdmi, found, hdmi_rate, in sh_hdmi_read_edid()
995 if (!found) in sh_hdmi_read_edid()
998 if (found->xres == 640 && found->yres == 480 && found->refresh == 60) in sh_hdmi_read_edid()
1000 else if (found->xres == 720 && found->yres == 480 && found->refresh == 60) in sh_hdmi_read_edid()
1002 else if (found->xres == 720 && found->yres == 576 && found->refresh == 50) in sh_hdmi_read_edid()
[all …]
/linux-4.1.27/sound/core/seq/
Dseq_ports.c86 struct snd_seq_client_port *port, *found; in snd_seq_port_query_nearest() local
89 found = NULL; in snd_seq_port_query_nearest()
95 found = port; in snd_seq_port_query_nearest()
98 if (found == NULL || port->addr.port < found->addr.port) in snd_seq_port_query_nearest()
99 found = port; in snd_seq_port_query_nearest()
101 if (found) { in snd_seq_port_query_nearest()
102 if (found->closing) in snd_seq_port_query_nearest()
103 found = NULL; in snd_seq_port_query_nearest()
105 snd_use_lock_use(&found->use_lock); in snd_seq_port_query_nearest()
108 return found; in snd_seq_port_query_nearest()
[all …]
/linux-4.1.27/arch/hexagon/kernel/
Dmodule.c45 int found = 0; in module_frob_arch_sections() local
52 found = i+1; in module_frob_arch_sections()
54 found = i+1; in module_frob_arch_sections()
56 found = i+1; in module_frob_arch_sections()
60 if (found) { in module_frob_arch_sections()
/linux-4.1.27/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 …]
Dgeode-rng.c97 goto found; in mod_init()
102 found: in mod_init()
Damd-rng.c123 goto found; in mod_init()
128 found: in mod_init()
/linux-4.1.27/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()
/linux-4.1.27/Documentation/dvb/
Dlmedm04.txt7 The Sharp 7395 driver can be found in windows/system32/drivers
18 An alternative but older firmware can be found on the driver
31 The LG firmware can be found on the driver
47 only found in windows/system32/drivers
58 The Sharp 0194 tuner driver can be found in windows/system32/drivers
71 The m88rs2000 tuner driver can be found in windows/system32/drivers
/linux-4.1.27/arch/x86/platform/geode/
Dnet5501.c107 bool found = false; in net5501_present() local
112 return found; in net5501_present()
127 found = true; in net5501_present()
134 return found; in net5501_present()
/linux-4.1.27/net/ipv6/
Dexthdrs_core.c191 bool found; in ipv6_find_hdr() local
212 found = (nexthdr == target); in ipv6_find_hdr()
215 if (target < 0 || found) in ipv6_find_hdr()
234 found = false; in ipv6_find_hdr()
270 if (!found) { in ipv6_find_hdr()
275 } while (!found); in ipv6_find_hdr()
/linux-4.1.27/sound/pci/asihpi/
Dhpicmn.c324 short found = 1; in hpi_check_control_cache_single() local
351 found = 0; in hpi_check_control_cache_single()
370 found = 0; in hpi_check_control_cache_single()
378 found = 0; in hpi_check_control_cache_single()
385 found = 0; in hpi_check_control_cache_single()
392 found = 0; in hpi_check_control_cache_single()
409 found = 0; in hpi_check_control_cache_single()
417 found = 0; in hpi_check_control_cache_single()
423 found = 0; in hpi_check_control_cache_single()
429 found = 0; in hpi_check_control_cache_single()
[all …]
/linux-4.1.27/fs/ubifs/
Dtnc.c1433 int found, n, err, safely = 0, gc_seq1; in ubifs_tnc_locate() local
1439 found = ubifs_lookup_level0(c, key, &znode, &n); in ubifs_tnc_locate()
1440 if (!found) { in ubifs_tnc_locate()
1443 } else if (found < 0) { in ubifs_tnc_locate()
1444 err = found; in ubifs_tnc_locate()
1795 int found, n, err; in do_lookup_nm() local
1800 found = ubifs_lookup_level0(c, key, &znode, &n); in do_lookup_nm()
1801 if (!found) { in do_lookup_nm()
1804 } else if (found < 0) { in do_lookup_nm()
1805 err = found; in do_lookup_nm()
[all …]
Dfind.c266 goto found; in ubifs_find_dirty_leb()
271 goto found; in ubifs_find_dirty_leb()
319 goto found; in ubifs_find_dirty_leb()
332 found: in ubifs_find_dirty_leb()
852 goto found; in find_dirty_idx_leb()
857 goto found; in find_dirty_idx_leb()
862 goto found; in find_dirty_idx_leb()
872 found: in find_dirty_idx_leb()
/linux-4.1.27/arch/m68k/tools/amiga/
Ddmesg.c44 int found = 0; in main() local
54 found = 1; in main()
58 if (!found) in main()
/linux-4.1.27/arch/powerpc/kernel/
Drtas_pci.c96 bool found = false; in rtas_pci_read_config() local
106 found = true; in rtas_pci_read_config()
111 if (!found) in rtas_pci_read_config()
158 bool found = false; in rtas_pci_write_config() local
166 found = true; in rtas_pci_write_config()
171 if (!found) in rtas_pci_write_config()
Dprom.c311 int found = -1; in early_init_dt_scan_cpus() local
337 found = boot_cpu_count; in early_init_dt_scan_cpus()
348 found = boot_cpu_count; in early_init_dt_scan_cpus()
357 if (found < 0) in early_init_dt_scan_cpus()
360 DBG("boot cpu: logical %d physical %d\n", found, in early_init_dt_scan_cpus()
362 boot_cpuid = found; in early_init_dt_scan_cpus()
363 set_hard_smp_processor_id(found, be32_to_cpu(intserv[found_thread])); in early_init_dt_scan_cpus()
/linux-4.1.27/security/tomoyo/
Dmemory.c99 bool found = false; in tomoyo_get_group() local
113 found = true; in tomoyo_get_group()
116 if (!found) { in tomoyo_get_group()
123 found = true; in tomoyo_get_group()
129 return found ? group : NULL; in tomoyo_get_group()
/linux-4.1.27/tools/perf/config/
DMakefile243 …msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libe…
252 msg := $(error No static glibc found, please install glibc-static);
254 msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]);
261 …msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and…
265 …msg := $(warning No libdw.h found or old libdw.h found or elfutils is older than 0.138, disables d…
308 …msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_…
319 msg := $(warning Disabling post unwind, no support found.);
345 msg := $(warning No debug_frame support found in libunwind);
360 …msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or li…
375 …msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev…
[all …]
/linux-4.1.27/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 …]
/linux-4.1.27/Documentation/devicetree/bindings/pwm/
Dpwm-rockchip.txt5 "rockchip,rk2928-pwm": found on RK29XX,RK3066 and RK3188 SoCs
6 "rockchip,rk3288-pwm": found on RK3288 SoC
7 "rockchip,vop-pwm": found integrated in VOP on RK3288 SoC
/linux-4.1.27/arch/powerpc/mm/
Dhugetlbpage-book3e.c56 int found = 0; in book3e_tlb_exists() local
66 : "=&r"(found) : "r"(ea)); in book3e_tlb_exists()
72 : "=&r"(found) : "r"(ea)); in book3e_tlb_exists()
75 return found; in book3e_tlb_exists()
Dslice.c271 unsigned long addr, found, next_end; in slice_find_area_bottomup() local
300 found = vm_unmapped_area(&info); in slice_find_area_bottomup()
301 if (!(found & ~PAGE_MASK)) in slice_find_area_bottomup()
302 return found; in slice_find_area_bottomup()
314 unsigned long addr, found, prev; in slice_find_area_topdown() local
343 found = vm_unmapped_area(&info); in slice_find_area_topdown()
344 if (!(found & ~PAGE_MASK)) in slice_find_area_topdown()
345 return found; in slice_find_area_topdown()
/linux-4.1.27/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()
Dscsi_devinfo.c271 int found = 0; in scsi_devinfo_lookup_by_key() local
275 found = 1; in scsi_devinfo_lookup_by_key()
278 if (!found) in scsi_devinfo_lookup_by_key()
409 struct scsi_dev_info_list *devinfo, *found = NULL; in scsi_dev_info_list_del_keyed() local
458 found = devinfo; in scsi_dev_info_list_del_keyed()
464 found = devinfo; in scsi_dev_info_list_del_keyed()
466 if (found) in scsi_dev_info_list_del_keyed()
470 if (found) { in scsi_dev_info_list_del_keyed()
471 list_del(&found->dev_info_list); in scsi_dev_info_list_del_keyed()
472 kfree(found); in scsi_dev_info_list_del_keyed()
/linux-4.1.27/net/sctp/
Dauth.c571 int found = 0; in __sctp_auth_find_hmacid() local
576 found = 1; in __sctp_auth_find_hmacid()
581 return found; in __sctp_auth_find_hmacid()
641 int found = 0; in __sctp_auth_cid() local
655 for (i = 0; !found && i < len; i++) { in __sctp_auth_cid()
665 found = 1; in __sctp_auth_cid()
670 return found; in __sctp_auth_cid()
888 int found = 0; in sctp_auth_set_active_key() local
898 found = 1; in sctp_auth_set_active_key()
903 if (!found) in sctp_auth_set_active_key()
[all …]
/linux-4.1.27/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
/linux-4.1.27/sound/aoa/codecs/
DKconfig7 codec chip found in the latest Apple machines
16 found in a lot of Apple Machines, especially
23 found in the Mac Mini. If you have a Mac Mini and
/linux-4.1.27/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()
/linux-4.1.27/arch/unicore32/kernel/
Ddma.c41 int i, found = 0; in puv3_request_dma() local
54 found = 1; in puv3_request_dma()
59 } while (!found && prio--); in puv3_request_dma()
61 if (found) { in puv3_request_dma()
/linux-4.1.27/drivers/gpu/drm/armada/
DKconfig10 Support the "LCD" controllers found on the Marvell Armada 510
15 performed by other IP found on the SoC. This driver provides
24 Support the TDA1998x HDMI output device found on the Solid-Run
/linux-4.1.27/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()
/linux-4.1.27/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()
/linux-4.1.27/tools/lib/traceevent/
Dplugin_sched_switch.c29 int found = 0; in write_state() local
36 if (found) in write_state()
39 found = 1; in write_state()
43 if (!found) in write_state()
/linux-4.1.27/Documentation/networking/
Dxfrm_proc.txt22 No state is found
43 No policy is found for states
44 e.g. Inbound SAs are correct but no SP is found
59 No state is found
Datm.txt3 programs and related material can be found via the ATM on Linux Web
8 can be found on http://linux-atm.sourceforge.net/
/linux-4.1.27/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()
Ds3c2416-cpufreq.c268 int count, v, i, found; in s3c2416_cpufreq_cfg_regulator() local
283 found = 0; in s3c2416_cpufreq_cfg_regulator()
289 found = 1; in s3c2416_cpufreq_cfg_regulator()
292 if (!found) { in s3c2416_cpufreq_cfg_regulator()
Dfreq_table.c59 bool found = false; in cpufreq_frequency_table_verify() local
70 found = true; in cpufreq_frequency_table_verify()
78 if (!found) { in cpufreq_frequency_table_verify()
/linux-4.1.27/fs/f2fs/
Dtrace.c148 unsigned int found; in f2fs_destroy_trace_ios() local
151 while ((found = gang_lookup_pids(pid, next_pid, PIDVEC_SIZE))) { in f2fs_destroy_trace_ios()
154 next_pid = pid[found - 1] + 1; in f2fs_destroy_trace_ios()
155 for (idx = 0; idx < found; idx++) in f2fs_destroy_trace_ios()
Dxattr.c489 int found, newsize; in __f2fs_setxattr() local
512 found = IS_XATTR_LAST_ENTRY(here) ? 0 : 1; in __f2fs_setxattr()
514 if ((flags & XATTR_REPLACE) && !found) { in __f2fs_setxattr()
517 } else if ((flags & XATTR_CREATE) && found) { in __f2fs_setxattr()
536 if (found) in __f2fs_setxattr()
546 if (found) { in __f2fs_setxattr()
/linux-4.1.27/arch/powerpc/sysdev/xics/
Dicp-native.c323 int found = 0; in icp_native_init() local
327 found = 1; in icp_native_init()
328 if (!found) { in icp_native_init()
332 found = 1; in icp_native_init()
336 if (found == 0) in icp_native_init()
/linux-4.1.27/arch/arm/mach-omap2/
Dmux.c111 int found = 0; in _omap_mux_init_gpio() local
121 found++; in _omap_mux_init_gpio()
125 if (found == 0) { in _omap_mux_init_gpio()
130 if (found > 1) { in _omap_mux_init_gpio()
132 found, gpio); in _omap_mux_init_gpio()
167 int found = 0, found_mode = 0, mode0_len = 0; in _omap_mux_get_by_name() local
200 found++; in _omap_mux_get_by_name()
206 if (found == 1) { in _omap_mux_get_by_name()
210 if (found > 1) { in _omap_mux_get_by_name()
212 found, muxname); in _omap_mux_get_by_name()
[all …]
Dclkt_clksel.c311 u32 r, found = 0; in omap2_clksel_find_parent_index() local
326 for (clks = clk->clksel; clks->parent && !found; clks++) { in omap2_clksel_find_parent_index()
327 for (clkr = clks->rates; clkr->div && !found; clkr++) { in omap2_clksel_find_parent_index()
332 found = 1; in omap2_clksel_find_parent_index()
340 WARN(!found, "clock: %s: init parent: could not find regval %0x\n", in omap2_clksel_find_parent_index()
/linux-4.1.27/arch/mips/mm/
Dsc-mips.c144 int found = mips_sc_probe(); in mips_sc_init() local
145 if (found) { in mips_sc_init()
149 return found; in mips_sc_init()
/linux-4.1.27/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()
Dsch311x_wdt.c503 int err, i, found = 0; in sch311x_wdt_init() local
506 for (i = 0; !found && sch311x_ioports[i]; i++) in sch311x_wdt_init()
508 found++; in sch311x_wdt_init()
510 if (!found) in sch311x_wdt_init()
/linux-4.1.27/drivers/pinctrl/
Dpinconf.c413 const struct pinctrl_map *found = NULL; in pinconf_dbg_config_print() local
435 found = map; in pinconf_dbg_config_print()
441 if (!found) { in pinconf_dbg_config_print()
451 pctldev = get_pinctrl_dev_from_devname(found->ctrl_dev_name); in pinconf_dbg_config_print()
452 config = *found->data.configs.configs; in pinconf_dbg_config_print()
484 const struct pinctrl_map *found = NULL; in pinconf_dbg_config_write() local
567 found = map; in pinconf_dbg_config_write()
572 if (!found) { in pinconf_dbg_config_write()
577 pctldev = get_pinctrl_dev_from_devname(found->ctrl_dev_name); in pinconf_dbg_config_write()
582 configs = &found->data.configs; in pinconf_dbg_config_write()
Dpinctrl-single.c901 struct pcs_function *found; in pcs_remove_function() local
903 found = radix_tree_lookup(&pcs->ftree, i); in pcs_remove_function()
904 if (found == function) in pcs_remove_function()
1144 int size, rows, *pins, index = 0, found = 0, res = -ENOMEM; in pcs_parse_one_pinctrl_entry() local
1171 vals[found].reg = pcs->base + offset; in pcs_parse_one_pinctrl_entry()
1172 vals[found].val = val; in pcs_parse_one_pinctrl_entry()
1181 pins[found++] = pin; in pcs_parse_one_pinctrl_entry()
1185 function = pcs_add_function(pcs, np, np->name, vals, found, pgnames, 1); in pcs_parse_one_pinctrl_entry()
1189 res = pcs_add_pingroup(pcs, np, np->name, pins, found); in pcs_parse_one_pinctrl_entry()
1232 int size, rows, *pins, index = 0, found = 0, res = -ENOMEM; in pcs_parse_bits_in_pinctrl_entry() local
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/mmc/
Drenesas,mmcif.txt10 - "renesas,mmcif-r8a7740" for the MMCIF found in r8a7740 SoCs
11 - "renesas,mmcif-r8a7790" for the MMCIF found in r8a7790 SoCs
12 - "renesas,mmcif-r8a7791" for the MMCIF found in r8a7791 SoCs
/linux-4.1.27/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()
/linux-4.1.27/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()
/linux-4.1.27/fs/adfs/
Dmap.c102 goto found; in lookup_zone()
113 found: in lookup_zone()
207 goto found; in scan_map()
215 found: in scan_map()
/linux-4.1.27/drivers/base/
Dmap.c73 struct probe *found = NULL; in kobj_unmap() local
85 if (!found) in kobj_unmap()
86 found = p; in kobj_unmap()
92 kfree(found); in kobj_unmap()
/linux-4.1.27/arch/x86/kernel/
Dmmconf-fam10h_64.c57 int found; in get_fam10h_pci_mmconf_base() local
74 found = 0; in get_fam10h_pci_mmconf_base()
88 found = 1; in get_fam10h_pci_mmconf_base()
93 if (!found) in get_fam10h_pci_mmconf_base()
/linux-4.1.27/arch/mips/bcm47xx/
Dnvram.c75 goto found; in nvram_find_and_copy()
84 goto found; in nvram_find_and_copy()
90 goto found; in nvram_find_and_copy()
96 found: in nvram_find_and_copy()
/linux-4.1.27/Documentation/netlabel/
Dintroduction.txt24 Detailed information about each NetLabel protocol engine can be found in this
33 names can be found in the 'net/netlabel/' directory as comments in the
44 Detailed information about the NetLabel security module API can be found in the
46 found in this directory.
/linux-4.1.27/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()
Duwb-debug.c125 struct uwb_rsv *rsv, *found = NULL; in cmd_rsv_terminate() local
132 found = rsv; in cmd_rsv_terminate()
133 uwb_rsv_get(found); in cmd_rsv_terminate()
141 if (!found) in cmd_rsv_terminate()
144 uwb_rsv_terminate(found); in cmd_rsv_terminate()
145 uwb_rsv_put(found); in cmd_rsv_terminate()
Dbeacon.c215 struct uwb_dev *found = NULL; in uwb_dev_get_by_devaddr() local
221 found = uwb_dev_try_get(rc, bce->uwb_dev); in uwb_dev_get_by_devaddr()
224 return found; in uwb_dev_get_by_devaddr()
235 struct uwb_dev *found = NULL; in uwb_dev_get_by_macaddr() local
241 found = uwb_dev_try_get(rc, bce->uwb_dev); in uwb_dev_get_by_macaddr()
244 return found; in uwb_dev_get_by_macaddr()
/linux-4.1.27/lib/
Dis_single_threaded.c42 goto found; in current_is_single_threaded()
54 found: in current_is_single_threaded()
Dfault-inject.c72 bool found = (attr->require_start == 0 && attr->require_end == ULONG_MAX); in fail_stacktrace() local
75 return found; in fail_stacktrace()
89 found = true; in fail_stacktrace()
91 return found; in fail_stacktrace()
/linux-4.1.27/fs/ext4/
Dfile.c339 int found = 0; in ext4_find_unwritten_pgoff() local
368 found = 1; in ext4_find_unwritten_pgoff()
379 found = 1; in ext4_find_unwritten_pgoff()
393 found = 1; in ext4_find_unwritten_pgoff()
417 found = 1; in ext4_find_unwritten_pgoff()
420 found = 1; in ext4_find_unwritten_pgoff()
422 if (found) { in ext4_find_unwritten_pgoff()
442 found = 1; in ext4_find_unwritten_pgoff()
453 return found; in ext4_find_unwritten_pgoff()
/linux-4.1.27/drivers/net/wireless/iwlwifi/
Diwl-notif-wait.c89 bool found = false; in iwl_notification_wait_notify() local
102 found = true; in iwl_notification_wait_notify()
106 if (!found) in iwl_notification_wait_notify()
/linux-4.1.27/arch/alpha/lib/
Dev67-strcat.S41 bne $2, $found # U :
48 $found: cttz $2, $3 # U0 :
Dev67-strlen.S36 bne $2, $found # U :
43 $found:
Dstrlen.S30 bne $2, found
38 found: blbs $2, done # make aligned case fast label
Dstrcat.S27 bne $2, $found
34 $found: negq $2, $3 # clear all but least set bit
Dstrncat.S33 bne $2, $found
40 $found: negq $2, $3 # clear all but least set bit
Dev67-strncat.S47 bne $2, $found # U :
54 $found: cttz $2, $3 # U0 :
/linux-4.1.27/tools/perf/Documentation/
Dperf-archive.txt6 perf-archive - Create archive with object files with build-ids found in perf.data file
16 buildids found so that analysis of perf.data contents can be possible on another
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/
Dflowring.c73 bool found; in brcmf_flowring_lookup() local
91 found = false; in brcmf_flowring_lookup()
97 found = true; in brcmf_flowring_lookup()
102 if (found) in brcmf_flowring_lookup()
116 bool found; in brcmf_flowring_create() local
134 found = false; in brcmf_flowring_create()
139 found = true; in brcmf_flowring_create()
144 if (found) { in brcmf_flowring_create()
/linux-4.1.27/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 …]
/linux-4.1.27/drivers/net/wireless/ath/carl9170/
Dfw.c384 int scan = 0, found = 0; in carl9170_find_fw_desc() local
392 if (fw_data[scan++] == otus_magic[found]) in carl9170_find_fw_desc()
393 found++; in carl9170_find_fw_desc()
395 found = 0; in carl9170_find_fw_desc()
400 if (found == sizeof(otus_magic)) in carl9170_find_fw_desc()
404 if (found != sizeof(otus_magic)) in carl9170_find_fw_desc()
407 return (void *)&fw_data[scan - found]; in carl9170_find_fw_desc()
/linux-4.1.27/Documentation/devicetree/bindings/input/
Dimx-keypad.txt20 - pinctrl-names: The definition can be found at
23 - pinctrl-0: The definition can be found at
26 - linux,keymap: The definition can be found at
Dqcom,pm8xxx-keypad.txt28 Definition: the linux keymap. More information can be found in
44 Definition: number of rows in the keymap. More information can be found
51 found in input/matrix-keymap.txt.
/linux-4.1.27/drivers/media/platform/davinci/
Dvpif.c314 u8 channel_id, u8 found) in config_vpif_params() argument
322 end = channel_id + found; in config_vpif_params()
372 int found = 1; in vpif_set_video_params() local
378 found = 2; in vpif_set_video_params()
381 config_vpif_params(vpifparams, channel_id, found); in vpif_set_video_params()
386 return found; in vpif_set_video_params()
/linux-4.1.27/arch/sh/drivers/dma/
Ddma-api.c133 unsigned int found = 0; in request_dma_bycap() local
142 found = 1; in request_dma_bycap()
146 if (!found) in request_dma_bycap()
249 unsigned int found = 0; in register_chan_caps() local
254 found = 1; in register_chan_caps()
258 if (unlikely(!found)) in register_chan_caps()
/linux-4.1.27/Documentation/devicetree/bindings/iio/adc/
Dqcom,spmi-vadc.txt54 If property is not found, default value of 512 will be used.
64 If property is not found default value depending on chip will be used.
71 calibration. If property is not found, channel will be
83 If property is not found, channel will use 0us.
93 If property is not found, 1 sample will be used.
/linux-4.1.27/drivers/staging/lustre/lustre/ldlm/
Dldlm_extent.c164 struct interval_node *found, **root; in ldlm_extent_add_lock() local
184 found = interval_insert(&node->li_node, root); in ldlm_extent_add_lock()
185 if (found) { /* The policy group found. */ in ldlm_extent_add_lock()
191 ldlm_interval_attach(to_ldlm_interval(found), lock); in ldlm_extent_add_lock()
/linux-4.1.27/net/wireless/
Dlib80211.c194 goto found; in lib80211_unregister_crypto_ops()
199 found: in lib80211_unregister_crypto_ops()
217 goto found; in lib80211_get_crypto_ops()
222 found: in lib80211_get_crypto_ops()
Dscan.c751 struct cfg80211_internal_bss *found = NULL; in cfg80211_bss_update() local
765 found = rb_find_bss(rdev, tmp, BSS_CMP_REGULAR); in cfg80211_bss_update()
767 if (found) { in cfg80211_bss_update()
772 old = rcu_access_pointer(found->pub.proberesp_ies); in cfg80211_bss_update()
774 rcu_assign_pointer(found->pub.proberesp_ies, in cfg80211_bss_update()
777 rcu_assign_pointer(found->pub.ies, in cfg80211_bss_update()
786 if (found->pub.hidden_beacon_bss && in cfg80211_bss_update()
787 !list_empty(&found->hidden_list)) { in cfg80211_bss_update()
806 old = rcu_access_pointer(found->pub.beacon_ies); in cfg80211_bss_update()
808 rcu_assign_pointer(found->pub.beacon_ies, in cfg80211_bss_update()
[all …]
/linux-4.1.27/security/keys/
Dpersistent.c96 goto found; in key_get_persistent()
106 goto found; in key_get_persistent()
110 found: in key_get_persistent()
Dprocess_keys.c342 goto found; in search_my_process_keyrings()
360 goto found; in search_my_process_keyrings()
384 goto found; in search_my_process_keyrings()
404 goto found; in search_my_process_keyrings()
422 found: in search_my_process_keyrings()
443 goto found; in search_process_keyrings()
469 goto found; in search_process_keyrings()
485 found: in search_process_keyrings()
/linux-4.1.27/tools/perf/arch/
Dcommon.c63 bool found = false; in lookup_path() local
79 found = true; in lookup_path()
85 return found; in lookup_path()
/linux-4.1.27/Documentation/scheduler/
Dsched-stats.txt72 2) # of times in this domain load_balance() checked but found
84 8) # of times in this domain a busier queue was found while the
85 cpu was idle but no busier group was found
89 10) # of times in this domain load_balance() checked but found the
100 16) # of times in this domain a busier queue was found while the cpu
101 was busy but no busier group was found
105 18) # of times in this domain load_balance() checked but found the
116 24) # of times in this domain a busier queue was found while the cpu
117 was just becoming idle but no busier group was found
/linux-4.1.27/drivers/parisc/
DKconfig10 are not found in B1000, C3000, J5000, A500, L1000, N4000 and upwards.
32 Say Y here to support the Lasi multifunction chip found in
43 Say Y here to support the Wax multifunction chip found in some
81 Say Y here to support the Dino & Cujo GSC to PCI bridges found in
124 Say Y here to support the SuperIO chip found in Bxxxx, C3xxx and
135 or support for the LCD that can be found on recent material.
146 That includes support for LED State front panel as found on E
148 message logging) as found on high end servers such as A, L and
/linux-4.1.27/fs/ext2/
Dialloc.c307 goto found; in find_group_orlov()
342 goto found; in find_group_orlov()
352 goto found; in find_group_orlov()
366 found: in find_group_orlov()
384 goto found; in find_group_other()
408 goto found; in find_group_other()
421 goto found; in find_group_other()
426 found: in find_group_other()
/linux-4.1.27/arch/x86/kvm/
Di8259.c52 struct kvm_vcpu *vcpu, *found = NULL; in pic_unlock() local
62 found = vcpu; in pic_unlock()
67 if (!found) in pic_unlock()
70 kvm_make_request(KVM_REQ_EVENT, found); in pic_unlock()
71 kvm_vcpu_kick(found); in pic_unlock()
281 bool found = false; in kvm_pic_reset() local
297 found = true; in kvm_pic_reset()
302 if (!found) in kvm_pic_reset()
/linux-4.1.27/Documentation/input/
Dwalkera0701.txt15 At back side of transmitter S-video connector can be found. Modulation
16 pulses from processor to HF part can be found at pin 2 of this connector,
17 pin 3 is GND. Between pin 3 and CPU 5k6 resistor can be found. To get
88 Values for first four channels (analog joystick values) can be found in
100 software driver. Some details about this magic numbers can be found in
/linux-4.1.27/arch/s390/lib/
Dfind.c26 goto found; in find_first_bit_inv()
35 found: in find_first_bit_inv()
/linux-4.1.27/net/wimax/
Did-table.c97 goto found; in wimax_dev_get_by_genl_info()
103 found: in wimax_dev_get_by_genl_info()
/linux-4.1.27/arch/x86/pci/
Dbus_numa.c35 bool found = false; in x86_pci_root_bus_resources() local
46 found = true; in x86_pci_root_bus_resources()
50 if (!found) in x86_pci_root_bus_resources()
Damd_bus.c75 bool found; in early_root_info_init() local
83 found = false; in early_root_info_init()
99 found = true; in early_root_info_init()
104 if (!found) in early_root_info_init()
/linux-4.1.27/Documentation/timers/
Dhpet.txt4 by Intel and Microsoft which can be found at
25 initialization. An example of this initialization can be found in
28 The driver provides a userspace API which resembles the API found in the
/linux-4.1.27/drivers/media/platform/xilinx/
Dxilinx-vtc.c257 struct xvtc_device *found = NULL; in xvtc_of_get() local
270 found = xvtc; in xvtc_of_get()
278 if (!found) in xvtc_of_get()
281 return found; in xvtc_of_get()
/linux-4.1.27/drivers/net/ethernet/stmicro/stmmac/
Dstmmac_mdio.c199 int addr, found; in stmmac_mdio_register() local
237 found = 0; in stmmac_mdio_register()
280 found = 1; in stmmac_mdio_register()
284 if (!found) { in stmmac_mdio_register()
/linux-4.1.27/drivers/pci/
Dsearch.c372 struct pci_dev *found = NULL; in pci_dev_present() local
376 found = pci_get_dev_by_id(ids, NULL); in pci_dev_present()
377 if (found) { in pci_dev_present()
378 pci_dev_put(found); in pci_dev_present()
/linux-4.1.27/drivers/regulator/
Dmax8973-regulator.c126 bool found = false; in find_voltage_set_register() local
134 found = true; in find_voltage_set_register()
146 return found; in find_voltage_set_register()
169 bool found = false; in max8973_dcdc_set_voltage_sel() local
178 found = find_voltage_set_register(max, vsel, in max8973_dcdc_set_voltage_sel()
181 if (!found) { in max8973_dcdc_set_voltage_sel()
Dtps62360-regulator.c99 bool found = false; in find_voltage_set_register() local
107 found = true; in find_voltage_set_register()
118 return found; in find_voltage_set_register()
143 bool found = false; in tps62360_dcdc_set_voltage_sel() local
151 found = find_voltage_set_register(tps, selector, &new_vset_id); in tps62360_dcdc_set_voltage_sel()
153 if (!found) { in tps62360_dcdc_set_voltage_sel()
Dmc13xxx-regulator-core.c188 int found = 0; in mc13xxx_parse_regulators_dt() local
203 found = 1; in mc13xxx_parse_regulators_dt()
208 if (!found) in mc13xxx_parse_regulators_dt()
/linux-4.1.27/drivers/misc/
Dioc4.c236 int found = 0; in ioc4_variant() local
245 found = 1; in ioc4_variant()
246 } while (pdev && !found); in ioc4_variant()
260 found = 1; in ioc4_variant()
261 } while (pdev && !found); in ioc4_variant()
/linux-4.1.27/drivers/video/fbdev/omap2/dss/
Ddisplay-sysfs.c117 int r, found; in display_timings_store() local
122 found = 0; in display_timings_store()
126 found = 1; in display_timings_store()
129 found = 1; in display_timings_store()
132 if (!found && sscanf(buf, "%u,%hu/%hu/%hu/%hu,%hu/%hu/%hu/%hu", in display_timings_store()
/linux-4.1.27/tools/lib/util/
Dfind_next_bit.c76 goto found; in find_first_bit()
86 found: in find_first_bit()
/linux-4.1.27/Documentation/filesystems/
Dncpfs.txt5 can be found in the ncpfs package. The home site for ncpfs is
12 mars_nwe can be found on ftp.gwdg.de/pub/linux/misc/ncpfs.
Dgfs2.txt20 The dlm is found at linux/fs/dlm/
22 Lock_dlm depends on user space cluster management systems found
39 The following man pages can be found at the URL above:
/linux-4.1.27/fs/ocfs2/
Dreservations.c423 int offset, start, found; in ocfs2_resmap_find_free_bits() local
428 found = best_start = best_len = 0; in ocfs2_resmap_find_free_bits()
439 found++; in ocfs2_resmap_find_free_bits()
444 found = 1; in ocfs2_resmap_find_free_bits()
447 if (found > best_len) { in ocfs2_resmap_find_free_bits()
448 best_len = found; in ocfs2_resmap_find_free_bits()
449 best_start = start - found; in ocfs2_resmap_find_free_bits()
452 if (found >= wanted) in ocfs2_resmap_find_free_bits()
/linux-4.1.27/drivers/gpu/drm/i915/
Di915_gem_evict.c121 goto found; in i915_gem_evict_something()
130 goto found; in i915_gem_evict_something()
167 found: in i915_gem_evict_something()
Dintel_dp_mst.c43 struct intel_connector *found = NULL; in intel_dp_mst_compute_config() local
78 found = to_intel_connector(state->connectors[i]); in intel_dp_mst_compute_config()
83 if (!found) { in intel_dp_mst_compute_config()
153 struct intel_connector *found = NULL, *intel_connector; in intel_mst_pre_enable_dp() local
160 found = intel_connector; in intel_mst_pre_enable_dp()
165 if (!found) { in intel_mst_pre_enable_dp()
171 intel_mst->port = found->port; in intel_mst_pre_enable_dp()
/linux-4.1.27/fs/hfs/
Dbitmap.c51 goto found; in hfs_find_set_zero_bits()
63 goto found; in hfs_find_set_zero_bits()
69 found: in hfs_find_set_zero_bits()
/linux-4.1.27/arch/powerpc/platforms/pseries/
Dsetup.c127 struct device_node *np, *old, *found = NULL; in pseries_setup_i8259_cascade() local
135 found = np; in pseries_setup_i8259_cascade()
140 if (found == NULL) { in pseries_setup_i8259_cascade()
145 cascade = irq_of_parse_and_map(found, 0); in pseries_setup_i8259_cascade()
152 for (old = of_node_get(found); old != NULL ; old = np) { in pseries_setup_i8259_cascade()
169 i8259_init(found, intack); in pseries_setup_i8259_cascade()
170 of_node_put(found); in pseries_setup_i8259_cascade()
/linux-4.1.27/arch/powerpc/kvm/
Dbook3s_rtas.c154 bool found; in rtas_token_define() local
164 found = false; in rtas_token_define()
168 found = true; in rtas_token_define()
173 if (!found) in rtas_token_define()
/linux-4.1.27/drivers/firmware/efi/
Dvars.c286 bool found = false; in efivar_variable_is_removable() local
298 found = true; in efivar_variable_is_removable()
306 return found; in efivar_variable_is_removable()
359 bool found = false; in variable_is_present() local
369 found = true; in variable_is_present()
373 return found; in variable_is_present()
796 bool found = false; in efivar_entry_find() local
806 found = true; in efivar_entry_find()
811 if (!found) in efivar_entry_find()
Defi.c408 int found; member
429 info->found++; in fdt_find_uefi_params()
453 info.found = 0; in efi_get_fdt_params()
457 if (!info.found) in efi_get_fdt_params()
461 dt_params[info.found].name); in efi_get_fdt_params()
/linux-4.1.27/Documentation/powerpc/
Dbootwrapper.txt10 The boot wrapper can be found in the arch/powerpc/boot/ directory. The
13 interfaces found on PowerPC platforms. OpenFirmware is the most commonly
15 others. U-Boot is typically found on embedded PowerPC hardware, but there
32 Because of the series of #ifdefs found in the
38 specific cuImage platform init code can be found in
40 cuImage init code for a specific board can be found in
54 specific initialization code is typically found in a
84 treeImage.%; Image format for used with OpenBIOS firmware found
130 script' (found in arch/powerpc/boot/wrapper) is called by the Makefile and
/linux-4.1.27/drivers/platform/x86/
Deeepc-wmi.c218 bool found = false; in eeepc_wmi_check_atkd() local
221 &found, NULL); in eeepc_wmi_check_atkd()
223 if (ACPI_FAILURE(status) || !found) in eeepc_wmi_check_atkd()
/linux-4.1.27/arch/powerpc/platforms/8xx/
Dm8xx_setup.c65 int found = 0; in get_freq() local
73 found = 1; in get_freq()
80 return found; in get_freq()
/linux-4.1.27/drivers/pnp/
Dcard.c28 int found; in match_card() local
34 found = 0; in match_card()
38 found = 1; in match_card()
42 if (!found) in match_card()
350 goto found; in pnp_request_card_device()
356 found: in pnp_request_card_device()
/linux-4.1.27/net/netfilter/
Dnf_conntrack_helper.c303 bool found = false; in nf_ct_helper_expectfn_find_by_name() local
308 found = true; in nf_ct_helper_expectfn_find_by_name()
313 return found ? cur : NULL; in nf_ct_helper_expectfn_find_by_name()
321 bool found = false; in nf_ct_helper_expectfn_find_by_symbol() local
326 found = true; in nf_ct_helper_expectfn_find_by_symbol()
331 return found ? cur : NULL; in nf_ct_helper_expectfn_find_by_symbol()
/linux-4.1.27/drivers/mtd/lpddr/
Dlpddr2_nvm.c275 unsigned int found = 1; in lpddr2_nvm_pfow_present() local
289 found = 0; in lpddr2_nvm_pfow_present()
291 found = 0; in lpddr2_nvm_pfow_present()
293 found = 0; in lpddr2_nvm_pfow_present()
295 found = 0; in lpddr2_nvm_pfow_present()
301 return found; in lpddr2_nvm_pfow_present()
/linux-4.1.27/drivers/infiniband/hw/mlx5/
Ddoorbell.c56 goto found; in mlx5_ib_db_map_user()
76 found: in mlx5_ib_db_map_user()
/linux-4.1.27/drivers/infiniband/hw/mlx4/
Ddoorbell.c54 goto found; in mlx4_ib_db_map_user()
74 found: in mlx4_ib_db_map_user()
/linux-4.1.27/drivers/media/platform/
Dsh_vou.c549 unsigned int found = geo->output.width * vou_scale_h_den[i] / in vou_adjust_input() local
552 if (found > VOU_MAX_IMAGE_WIDTH) in vou_adjust_input()
556 err = abs(found - geo->in_width); in vou_adjust_input()
560 best = found; in vou_adjust_input()
574 unsigned int found = geo->output.height * vou_scale_v_den[i] / in vou_adjust_input() local
577 if (found > img_height_max) in vou_adjust_input()
581 err = abs(found - geo->in_height); in vou_adjust_input()
585 best = found; in vou_adjust_input()
618 unsigned int found = geo->in_width * vou_scale_h_num[i] / in vou_adjust_output() local
621 if (found > VOU_MAX_IMAGE_WIDTH) in vou_adjust_output()
[all …]
/linux-4.1.27/drivers/staging/iio/Documentation/
Dsysfs-bus-iio-ad71926 excitation mode found on some converters. In ac excitation mode,
15 bridge power down switch found on some converters.
/linux-4.1.27/drivers/video/fbdev/mmp/
Dcore.c143 int found = 0; in mmp_get_path() local
148 found = 1; in mmp_get_path()
154 return found ? path : NULL; in mmp_get_path()
/linux-4.1.27/arch/c6x/platforms/
Dtimer64.c181 int err, found = 0; in timer64_init() local
187 found = 1; in timer64_init()
193 if (!found) { in timer64_init()
/linux-4.1.27/drivers/w1/masters/
Dmatrox_w1.c87 unsigned long found; member
209 dev->found = 1; in matrox_w1_probe()
229 if (dev->found) { in matrox_w1_remove()
/linux-4.1.27/fs/isofs/
Dnamei.c153 int found; in isofs_lookup() local
163 found = isofs_find_entry(dir, dentry, in isofs_lookup()
169 inode = found ? isofs_iget(dir->i_sb, block, offset) : NULL; in isofs_lookup()
/linux-4.1.27/drivers/dma/
Dacpi-dma.c358 int found; in acpi_dma_request_slave_chan_by_index() local
389 found = acpi_dma_update_dma_spec(adma, dma_spec); in acpi_dma_request_slave_chan_by_index()
390 if (found < 0) in acpi_dma_request_slave_chan_by_index()
398 if (found > 0 || chan) in acpi_dma_request_slave_chan_by_index()
/linux-4.1.27/drivers/gpu/drm/mgag200/
Dmgag200_cursor.c51 bool found = false; in mga_crtc_cursor_set() local
151 found = false; in mga_crtc_cursor_set()
154 found = true; in mga_crtc_cursor_set()
158 if (found) in mga_crtc_cursor_set()
/linux-4.1.27/Documentation/DocBook/
DMakefile104 ifeq ($(shell which db2ps >/dev/null 2>&1 && echo found),found)
111 ifeq ($(shell which xmlto >/dev/null 2>&1 && echo found),found)
/linux-4.1.27/drivers/input/serio/
Dhil_mlc.c110 int j, found = 0; in hil_mlc_match_di_scratch() local
115 found++; in hil_mlc_match_di_scratch()
117 if (found) in hil_mlc_match_di_scratch()
135 int j, found = 0; in hil_mlc_find_free_di() local
139 found++; in hil_mlc_find_free_di()
141 if (!found) in hil_mlc_find_free_di()
153 int j, found = 0; in hil_mlc_clean_serio_map() local
157 found++; in hil_mlc_clean_serio_map()
159 if (!found) in hil_mlc_clean_serio_map()
977 goto found; in hil_mlc_unregister()
[all …]
/linux-4.1.27/net/netrom/
Dnr_route.c50 struct nr_node *found = NULL; in nr_node_get() local
57 found = nr_node; in nr_node_get()
61 return found; in nr_node_get()
67 struct nr_neigh *found = NULL; in nr_neigh_get_dev() local
75 found = nr_neigh; in nr_neigh_get_dev()
79 return found; in nr_neigh_get_dev()
95 int i, found; in nr_add_node() local
210 for (found = 0, i = 0; i < nr_node->count; i++) { in nr_add_node()
214 found = 1; in nr_add_node()
219 if (!found) { in nr_add_node()
/linux-4.1.27/drivers/net/wireless/b43/
DKconfig88 CF b43 cards can sometimes be found in handheld PCs.
103 This includes the WLAN daughter card found on the Nintendo Wii
130 This PHY type can be found in the following chipsets:
139 This PHY type can be found in the following chipsets:
159 This PHY type with 3x3:3 MIMO can be found in the BCM4331 PCI chipset.
173 This PHY type can be found in the following chipsets:
/linux-4.1.27/drivers/staging/i2o/
Ddevice.c393 int found = 0; in i2o_device_parse_lct() local
422 found = 1; in i2o_device_parse_lct()
427 if (!found) in i2o_device_parse_lct()
436 int found = 0; in i2o_device_parse_lct() local
440 found = 1; in i2o_device_parse_lct()
445 if (!found) in i2o_device_parse_lct()
/linux-4.1.27/sound/spi/
DKconfig18 DAC can be found on Atmel development boards.
21 peripheral found on most AT91 and AVR32 microprocessors.
/linux-4.1.27/Documentation/development-process/
D8.Conclusion5 directory found in the kernel source distribution. The top-level HOWTO
16 information on many specific kernel topics can be found via the LWN kernel
41 information to be found there.
43 Documentation for git can be found at:
/linux-4.1.27/kernel/trace/
Dring_buffer_benchmark.c182 int found; in ring_buffer_consumer() local
187 found = 0; in ring_buffer_consumer()
199 found = 1; in ring_buffer_consumer()
201 } while (found && !kill_test); in ring_buffer_consumer()
/linux-4.1.27/drivers/of/
Dresolver.c32 struct device_node *child, *found; in __of_find_node_by_full_name() local
42 found = __of_find_node_by_full_name(child, full_name); in __of_find_node_by_full_name()
43 if (found != NULL) in __of_find_node_by_full_name()
44 return found; in __of_find_node_by_full_name()
/linux-4.1.27/drivers/isdn/mISDN/
Ddsp_pipeline.c238 int len, incomplete = 0, found = 0; in dsp_pipeline_build() local
312 found = 1; in dsp_pipeline_build()
316 if (found) in dsp_pipeline_build()
317 found = 0; in dsp_pipeline_build()
/linux-4.1.27/sound/soc/fsl/
Dwm1133-ev1.c86 int i, found = 0; in wm1133_ev1_hw_params() local
96 found = 1; in wm1133_ev1_hw_params()
100 if (!found) in wm1133_ev1_hw_params()
/linux-4.1.27/net/irda/
Dirqueue.c560 int bin, found = FALSE; in hashbin_remove() local
595 found = TRUE; in hashbin_remove()
599 found = TRUE; in hashbin_remove()
610 if ( found ) { in hashbin_remove()
630 if ( found ) in hashbin_remove()
/linux-4.1.27/net/ipv4/
Dtcp_cubic.c98 u8 found; /* the exit point is found? */ member
117 ca->found = 0; in bictcp_reset()
394 if (ca->found & hystart_detect) in hystart_update()
404 ca->found |= HYSTART_ACK_TRAIN; in hystart_update()
425 ca->found |= HYSTART_DELAY; in hystart_update()
/linux-4.1.27/drivers/isdn/hisax/
Dbkm_a4t.c257 u_int *found, u_int *pci_memaddr) in a4t_pci_probe() argument
267 *found = 1; in a4t_pci_probe()
329 u_int pci_memaddr = 0, found = 0; in setup_bkm_a4t() local
341 ret = a4t_pci_probe(dev_a4t, cs, &found, &pci_memaddr); in setup_bkm_a4t()
347 if (!found) { in setup_bkm_a4t()
/linux-4.1.27/arch/powerpc/platforms/powermac/
Dudbg_adb.c196 int found = (parent && strcmp(parent->type, "adb") == 0); in udbg_adb_init() local
198 if (found) in udbg_adb_init()
/linux-4.1.27/security/integrity/evm/
Devm_main.c195 int found = 0; in evm_protected_xattr() local
201 found = 1; in evm_protected_xattr()
207 found = 1; in evm_protected_xattr()
211 return found; in evm_protected_xattr()
/linux-4.1.27/fs/gfs2/
Drecovery.c59 int found = 0; in gfs2_revoke_add() local
63 found = 1; in gfs2_revoke_add()
68 if (found) { in gfs2_revoke_add()
88 int found = 0; in gfs2_revoke_check() local
92 found = 1; in gfs2_revoke_check()
97 if (!found) in gfs2_revoke_check()
/linux-4.1.27/sound/soc/pxa/
Dmmp-pcm.c86 bool found = false; in filter() local
93 found = true; in filter()
97 return found; in filter()
/linux-4.1.27/include/xen/interface/
Dxen-mca.h242 bool found = 0; in x86_mcinfo_lookup() local
250 found = 1; in x86_mcinfo_lookup()
256 *ret = found ? mic : NULL; in x86_mcinfo_lookup()
/linux-4.1.27/drivers/net/wireless/p54/
DKconfig11 These devices require softmac firmware which can be found at
23 These devices require softmac firmware which can be found at
37 This driver requires softmac firmware which can be found at
/linux-4.1.27/drivers/net/ethernet/cadence/
DKconfig28 The Cadence MACB ethernet interface is found on many Atmel AT32 and
30 Ethernet MAC found in some ARM SoC devices). Say Y to include
/linux-4.1.27/drivers/dma/sh/
DKconfig59 This driver supports the general purpose DMA controller found in the
68 This driver supports the USB-DMA controller found in the Renesas
/linux-4.1.27/Documentation/arm/VFP/
Drelease-notes.txt8 provides support for the exceptions bounced from VFP hardware found
13 library and test suite can be found at:
/linux-4.1.27/drivers/video/fbdev/nvidia/
Dnv_hw.c246 int found, mclk_extra, mclk_loop, cbs, m1, p1; in nv4CalcArbitration() local
285 found = 0; in nv4CalcArbitration()
287 while (found != 1) { in nv4CalcArbitration()
289 found = 1; in nv4CalcArbitration()
346 found = 0; in nv4CalcArbitration()
348 found = 1; in nv4CalcArbitration()
353 found = 0; in nv4CalcArbitration()
355 found = 1; in nv4CalcArbitration()
361 found = 0; in nv4CalcArbitration()
363 found = 1; in nv4CalcArbitration()
[all …]
/linux-4.1.27/arch/arm/lib/
Dfindbit.S33 bne .L_found @ any now set - found zero bit
74 bne .L_found @ any now set - found zero bit
112 bne .L_found @ any now set - found zero bit
146 bne .L_found @ any now set - found zero bit
/linux-4.1.27/arch/arm/plat-pxa/
Ddma.c280 int i, found = 0; in pxa_request_dma() local
293 found = 1; in pxa_request_dma()
298 } while (!found && prio--); in pxa_request_dma()
300 if (found) { in pxa_request_dma()
/linux-4.1.27/tools/testing/selftests/powerpc/pmu/ebb/
Debb.c102 int found, i; in standard_ebb_callee() local
117 found = 0; in standard_ebb_callee()
120 found += count_pmc(i, sample_period); in standard_ebb_callee()
123 if (!found) in standard_ebb_callee()
/linux-4.1.27/block/partitions/
Dibm.c76 int found = 0; in find_label() local
122 found = 1; in find_label()
126 if (!found) in find_label()
129 return found; in find_label()
/linux-4.1.27/drivers/input/touchscreen/
Dintel-mid-touch.c451 int found = 0; in mrstouch_chan_parse() local
461 found = i; in mrstouch_chan_parse()
467 if (found > MRSTOUCH_MAX_CHANNELS - 18) in mrstouch_chan_parse()
470 if (found > MRSTOUCH_MAX_CHANNELS - 4) in mrstouch_chan_parse()
474 return found; in mrstouch_chan_parse()
/linux-4.1.27/fs/ocfs2/dlm/
Ddlmunlock.c399 int found = 0, i; in dlm_unlock_lock_handler() local
442 found = 0; in dlm_unlock_lock_handler()
470 found = 1; in dlm_unlock_lock_handler()
474 if (found) in dlm_unlock_lock_handler()
480 if (!found) { in dlm_unlock_lock_handler()
510 if (!found) in dlm_unlock_lock_handler()
/linux-4.1.27/Documentation/devicetree/bindings/reset/
Dst,sti-picophyreset.txt5 disable on-chip PicoPHY USB2 phy(s) using "softreset" control bits found in
41 Macro definitions for the supported reset channels can be found in:
Dst,sti-softreset.txt6 "softreset" control bits found in the STi family SoC system configuration
43 Macro definitions for the supported reset channels can be found in:
/linux-4.1.27/sound/soc/au1x/
DKconfig10 Controller (DBDMA) as found on the Au12xx/Au13xx/Au1550 SoC.
29 old DMA controller as found on the Au1000/Au1500/Au1100 chips.
/linux-4.1.27/drivers/target/
Dtarget_core_hba.c91 goto found; in core_get_backend()
95 found: in core_get_backend()
/linux-4.1.27/drivers/gpu/drm/imx/
DKconfig34 found on i.MX53 processors.
42 found on i.MX53 and i.MX6 processors.
/linux-4.1.27/fs/
Ddcookies.c67 struct dcookie_struct *found = NULL; in find_dcookie() local
77 found = dcs; in find_dcookie()
82 return found; in find_dcookie()
/linux-4.1.27/fs/hfsplus/
Dbitmap.c57 goto found; in hfsplus_block_allocate()
71 goto found; in hfsplus_block_allocate()
96 found: in hfsplus_block_allocate()
/linux-4.1.27/Documentation/sound/alsa/soc/
DDAI.txt1 ASoC currently supports the three main Digital Audio Interfaces (DAI) found on
8 AC97 is a five wire interface commonly found on many PC sound cards. It is
15 The AC97 specification can be found at :-
/linux-4.1.27/sound/soc/intel/common/
Dsst-acpi.c102 bool found = false; in sst_acpi_find_machine() local
107 &found, NULL)) && found) in sst_acpi_find_machine()

12345678