/linux-4.1.27/tools/perf/util/ |
D | thread_map.c | 27 int items; in thread_map__new_by_pid() local 32 items = scandir(name, &namelist, filter, NULL); in thread_map__new_by_pid() 33 if (items <= 0) in thread_map__new_by_pid() 36 threads = malloc(sizeof(*threads) + sizeof(pid_t) * items); in thread_map__new_by_pid() 38 for (i = 0; i < items; i++) in thread_map__new_by_pid() 40 threads->nr = items; in thread_map__new_by_pid() 43 for (i=0; i<items; i++) in thread_map__new_by_pid() 65 int max_threads = 32, items, i; in thread_map__new_by_uid() local 97 items = scandir(path, &namelist, filter, NULL); in thread_map__new_by_uid() 98 if (items <= 0) in thread_map__new_by_uid() [all …]
|
D | machine.c | 725 int i, items = 0; in machines__create_guest_kernel_maps() local 737 items = scandir(symbol_conf.guestmount, &namelist, NULL, NULL); in machines__create_guest_kernel_maps() 738 if (items <= 0) in machines__create_guest_kernel_maps() 740 for (i = 0; i < items; i++) { in machines__create_guest_kernel_maps()
|
/linux-4.1.27/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_overlay.c | 117 } *items; in vmw_overlay_send_put() local 125 fifo_size = sizeof(*cmds) + sizeof(*flush) + sizeof(*items) * num_items; in vmw_overlay_send_put() 132 items = (typeof(items))&cmds[1]; in vmw_overlay_send_put() 133 flush = (struct vmw_escape_video_flush *)&items[num_items]; in vmw_overlay_send_put() 136 fill_escape(&cmds->escape, sizeof(*items) * (num_items + 1)); in vmw_overlay_send_put() 143 items[i].registerId = i; in vmw_overlay_send_put() 148 items[SVGA_VIDEO_ENABLED].value = true; in vmw_overlay_send_put() 149 items[SVGA_VIDEO_FLAGS].value = arg->flags; in vmw_overlay_send_put() 150 items[SVGA_VIDEO_DATA_OFFSET].value = ptr.offset; in vmw_overlay_send_put() 151 items[SVGA_VIDEO_FORMAT].value = arg->format; in vmw_overlay_send_put() [all …]
|
D | svga_overlay.h | 75 } items[1]; member 106 } items[1]; member 115 } items[SVGA_VIDEO_NUM_REGS]; member
|
/linux-4.1.27/drivers/acpi/ |
D | property.c | 428 static int acpi_copy_property_array_u8(const union acpi_object *items, u8 *val, in acpi_copy_property_array_u8() argument 434 if (items[i].type != ACPI_TYPE_INTEGER) in acpi_copy_property_array_u8() 436 if (items[i].integer.value > U8_MAX) in acpi_copy_property_array_u8() 439 val[i] = items[i].integer.value; in acpi_copy_property_array_u8() 444 static int acpi_copy_property_array_u16(const union acpi_object *items, in acpi_copy_property_array_u16() argument 450 if (items[i].type != ACPI_TYPE_INTEGER) in acpi_copy_property_array_u16() 452 if (items[i].integer.value > U16_MAX) in acpi_copy_property_array_u16() 455 val[i] = items[i].integer.value; in acpi_copy_property_array_u16() 460 static int acpi_copy_property_array_u32(const union acpi_object *items, in acpi_copy_property_array_u32() argument 466 if (items[i].type != ACPI_TYPE_INTEGER) in acpi_copy_property_array_u32() [all …]
|
/linux-4.1.27/sound/pci/lola/ |
D | lola_clock.c | 141 chip->clock.items = val & 0xff; in lola_init_clock_widget() 143 chip->clock.items); in lola_init_clock_widget() 144 if (chip->clock.items > MAX_SAMPLE_CLOCK_COUNT) { in lola_init_clock_widget() 146 chip->clock.items); in lola_init_clock_widget() 150 nitems = chip->clock.items; in lola_init_clock_widget() 156 unsigned short items[4]; in lola_init_clock_widget() local 165 items[0] = val & 0xfff; in lola_init_clock_widget() 166 items[1] = (val >> 16) & 0xfff; in lola_init_clock_widget() 167 items[2] = res_ex & 0xfff; in lola_init_clock_widget() 168 items[3] = (res_ex >> 16) & 0xfff; in lola_init_clock_widget() [all …]
|
D | lola_proc.c | 72 unsigned short items[4]; in print_clock_widget() local 77 items[0] = val & 0xfff; in print_clock_widget() 78 items[1] = (val >> 16) & 0xfff; in print_clock_widget() 79 items[2] = res_ex & 0xfff; in print_clock_widget() 80 items[3] = (res_ex >> 16) & 0xfff; in print_clock_widget() 82 unsigned char type = items[j] >> 8; in print_clock_widget() 83 unsigned int freq = items[j] & 0xff; in print_clock_widget()
|
D | lola.h | 258 unsigned int items; member
|
/linux-4.1.27/Documentation/ |
D | workqueue.txt | 29 While there are work items on the workqueue the worker executes the 30 functions associated with the work items one after the other. When 49 while a ST wq one for the whole system. Work items had to compete for 91 subsystems and drivers queue work items on and the backend mechanism 92 which manages worker-pools and processes the queued work items. 94 There are two worker-pools, one for normal work items and the other 96 worker-pools to serve work items queued on unbound workqueues - the 99 Subsystems and drivers can create and queue work items through special 101 aspects of the way the work items are executed by setting flags on the 123 number of the currently runnable workers. Generally, work items are [all …]
|
D | circular-buffers.txt | 41 (1) A 'head' index - the point at which the producer inserts items into the 51 The head index is incremented when items are added, and the tail index when 52 items are removed. The tail index should never jump the head index, and both 56 Typically, items will all be of the same unit size, but this isn't strictly 58 than 1 if multiple items or variable-sized items are to be included in the 84 This returns the amount of space left in the buffer[1] into which items 93 which items can be immediately inserted without having to wrap back to the 101 This returns the number of items currently occupying a buffer[2]. 108 This returns the number of consecutive items[2] that can be extracted from
|
D | kref.txt | 140 instance, you have a list of items that are each kref-ed, and you wish
|
D | java.txt | 29 3) Add the following configuration items to binfmt_misc
|
D | unshare.txt | 220 items:
|
D | kmemcheck.txt | 382 Our next task is now to figure out which function that puts items on this 393 and find that this is indeed where items are being added to the list:
|
D | svga.txt | 66 "0 0F00 80x25" means that the first menu item (the menu items are numbered
|
D | IPMI.txt | 373 Each of these except try... items is a list, the first item for the 393 The other try... items disable discovery by their corresponding
|
D | DMA-API-HOWTO.txt | 130 (items in data/text/bss segments), nor module image addresses, nor
|
D | SubmittingPatches | 16 Documentation/SubmitChecklist for a list of items to check before
|
D | kernel-parameters.txt | 4000 By default, all work items queued to unbound
|
/linux-4.1.27/tools/perf/scripts/perl/Perf-Trace-Util/ |
D | Context.c | 54 if (items != 1) in XS() 77 if (items != 1) in XS() 100 if (items != 1) in XS() 128 PERL_UNUSED_VAR(items); /* -W */ in XS()
|
/linux-4.1.27/net/ceph/crush/ |
D | crush.c | 53 kfree(b->h.items); in crush_destroy_bucket_uniform() 62 kfree(b->h.items); in crush_destroy_bucket_list() 69 kfree(b->h.items); in crush_destroy_bucket_tree() 79 kfree(b->h.items); in crush_destroy_bucket_straw() 87 kfree(b->h.items); in crush_destroy_bucket_straw2()
|
D | mapper.c | 125 return bucket->items[s]; in bucket_perm_choose() 142 __u64 w = crush_hash32_4(bucket->h.hash,x, bucket->h.items[i], in bucket_list_choose() 147 i, x, r, bucket->h.items[i], bucket->item_weights[i], in bucket_list_choose() 153 return bucket->h.items[i]; in bucket_list_choose() 157 return bucket->h.items[0]; in bucket_list_choose() 215 return bucket->h.items[n >> 1]; in bucket_tree_choose() 230 draw = crush_hash32_3(bucket->h.hash, x, bucket->h.items[i], r); in bucket_straw_choose() 238 return bucket->h.items[high]; in bucket_straw_choose() 302 bucket->h.items[i], r); in bucket_straw2_choose() 333 return bucket->h.items[high]; in bucket_straw2_choose() [all …]
|
/linux-4.1.27/security/selinux/ss/ |
D | avtab.c | 373 u32 items, items2, val, vers = pol->policyvers; in avtab_read_item() local 399 items = 0; in avtab_read_item() 401 val = le32_to_cpu(buf32[items++]); in avtab_read_item() 407 val = le32_to_cpu(buf32[items++]); in avtab_read_item() 413 val = le32_to_cpu(buf32[items++]); in avtab_read_item() 420 val = le32_to_cpu(buf32[items++]); in avtab_read_item() 436 datum.data = le32_to_cpu(buf32[items++]); in avtab_read_item() 443 if (items != items2) { in avtab_read_item() 444 printk(KERN_ERR "SELinux: avtab: entry only had %d items, expected %d\n", items2, items); in avtab_read_item() 456 items = 0; in avtab_read_item() [all …]
|
D | policydb.c | 991 u32 items; in mls_read_range_helper() local 999 items = le32_to_cpu(buf[0]); in mls_read_range_helper() 1000 if (items > ARRAY_SIZE(buf)) { in mls_read_range_helper() 1005 rc = next_entry(buf, fp, sizeof(u32) * items); in mls_read_range_helper() 1012 if (items > 1) in mls_read_range_helper() 1022 if (items > 1) { in mls_read_range_helper() 2542 size_t items; in mls_write_range_helper() local 2548 items = 2; in mls_write_range_helper() 2550 items = 3; in mls_write_range_helper() 2551 buf[0] = cpu_to_le32(items-1); in mls_write_range_helper() [all …]
|
/linux-4.1.27/tools/perf/tests/ |
D | attr.py | 157 parser_items = parser_event.items(section); 165 base_items = parser_base.items('event') 187 for exp_name, exp_event in expect.items(): 190 for res_name, res_event in result.items(): 209 for exp_name, exp_event in expect.items(): 226 for name, event in events.items(): 231 for iname, ievent in events.items():
|
/linux-4.1.27/drivers/pinctrl/ |
D | pinconf-generic.c | 55 const struct pin_config_item *items, in pinconf_generic_dump_one() argument 65 config = pinconf_to_config_packed(items[i].param, 0); in pinconf_generic_dump_one() 80 seq_puts(s, items[i].display); in pinconf_generic_dump_one() 82 if (items[i].has_arg) { in pinconf_generic_dump_one() 85 if (items[i].format) in pinconf_generic_dump_one() 86 seq_printf(s, " %s)", items[i].format); in pinconf_generic_dump_one()
|
/linux-4.1.27/arch/openrisc/ |
D | TODO.openrisc | 2 since 2.6.35. There are, however, remaining items to be completed within 3 the coming months. Here's a list of known-to-be-less-than-stellar items
|
/linux-4.1.27/drivers/net/wireless/ath/ath10k/ |
D | hif.h | 43 struct ath10k_hif_sg_item *items, int n_items); 104 struct ath10k_hif_sg_item *items, in ath10k_hif_tx_sg() argument 107 return ar->hif.ops->tx_sg(ar, pipe_id, items, n_items); in ath10k_hif_tx_sg()
|
D | pci.c | 909 struct ath10k_hif_sg_item *items, int n_items) in ath10k_pci_hif_tx_sg() argument 935 i, items[i].paddr, items[i].len, n_items); in ath10k_pci_hif_tx_sg() 937 items[i].vaddr, items[i].len); in ath10k_pci_hif_tx_sg() 940 items[i].transfer_context, in ath10k_pci_hif_tx_sg() 941 items[i].paddr, in ath10k_pci_hif_tx_sg() 942 items[i].len, in ath10k_pci_hif_tx_sg() 943 items[i].transfer_id, in ath10k_pci_hif_tx_sg() 953 i, items[i].paddr, items[i].len, n_items); in ath10k_pci_hif_tx_sg() 955 items[i].vaddr, items[i].len); in ath10k_pci_hif_tx_sg() 958 items[i].transfer_context, in ath10k_pci_hif_tx_sg() [all …]
|
D | htt.h | 1091 struct htt_stats_conf_item items[0]; member
|
D | wmi.h | 1984 struct host_memory_chunk items[1]; member
|
D | wmi.c | 3780 chunk = &chunks->items[i]; in ath10k_wmi_put_host_mem_chunks()
|
/linux-4.1.27/Documentation/filesystems/ |
D | xfs-delayed-logging-design.txt | 116 actually relatively easy to do - all the changes to logged items are already 192 Hence we avoid the need to lock items when we need to flush outstanding 240 Hence we avoid needing a new on-disk format to handle items that have been 253 The log item is already used to track the log items that have been written to 254 the log but not yet written to disk. Such log items are considered "active" 264 such, we cannot reuse the AIL list pointers for tracking committed items, nor 269 Similar to the AIL, tracking of committed items is done through a new list 270 called the Committed Item List (CIL). The list tracks log items that have been 274 and done to make it easy for debugging - the last items in the list are the 283 all the items in the CIL must be written into the log via the log buffers. [all …]
|
D | ubifs.txt | 41 limitations like wear and bad blocks (items 4 and 5 in the above list).
|
D | proc.txt | 853 slab will be reclaimable, due to items being in use. The
|
/linux-4.1.27/fs/btrfs/ |
D | delayed-inode.h | 45 atomic_t items; /* for delayed items */ member 92 atomic_set(&delayed_root->items, 0); in btrfs_init_delayed_root()
|
D | delayed-inode.c | 445 atomic_inc(&delayed_node->root->fs_info->delayed_root->items); in __btrfs_add_delayed_item() 466 if ((atomic_dec_return(&delayed_root->items) < in finish_one_item() 1346 if (atomic_read(&delayed_root->items) < BTRFS_DELAYED_BACKGROUND / 2) in btrfs_async_run_delayed_root() 1390 if (atomic_read(&delayed_root->items) < BTRFS_DELAYED_BACKGROUND) in btrfs_wq_run_delayed_node() 1420 if (atomic_read(&delayed_root->items) < BTRFS_DELAYED_BACKGROUND) in could_end_wait() 1433 if (atomic_read(&delayed_root->items) < BTRFS_DELAYED_BACKGROUND) in btrfs_balance_delayed_items() 1436 if (atomic_read(&delayed_root->items) >= BTRFS_DELAYED_WRITEBACK) { in btrfs_balance_delayed_items() 1859 atomic_inc(&root->fs_info->delayed_root->items); in btrfs_delayed_update_inode() 1902 atomic_inc(&BTRFS_I(inode)->root->fs_info->delayed_root->items); in btrfs_delayed_delete_inode_ref()
|
D | check-integrity.c | 1026 (uintptr_t)(leafhdr->items + sf->i) - in btrfsic_process_metablock() 1057 offsetof(struct btrfs_leaf, items); in btrfsic_process_metablock() 1425 file_extent_item_offset = offsetof(struct btrfs_leaf, items) + in btrfsic_handle_extent_data()
|
D | extent-tree.c | 4354 int items; in shrink_delalloc() local 4358 items = calc_reclaim_items_nr(root, to_reclaim); in shrink_delalloc() 4359 to_reclaim = items * EXTENT_SIZE_PER_ITEM; in shrink_delalloc() 4371 btrfs_wait_ordered_roots(root->fs_info, items); in shrink_delalloc() 4379 btrfs_writeback_inodes_sb_nr(root, nr_pages, items); in shrink_delalloc() 4410 btrfs_wait_ordered_roots(root->fs_info, items); in shrink_delalloc() 5241 int items, in btrfs_subvolume_reserve_metadata() argument 5261 num_bytes = btrfs_calc_trans_metadata_size(root, items); in btrfs_subvolume_reserve_metadata()
|
D | ctree.h | 567 struct btrfs_item items[]; member 2656 return offsetof(struct btrfs_leaf, items) + in btrfs_item_nr_offset() 3109 return offsetof(struct btrfs_leaf, items); in btrfs_leaf_data()
|
D | ctree.c | 1814 offsetof(struct btrfs_leaf, items), in bin_search() 2593 offsetof(struct btrfs_leaf, items[0].key), in key_search_validate()
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/ |
D | fwsignal.c | 448 struct brcmf_fws_hanger_item items[BRCMF_FWS_HANGER_MAXITEMS]; member 594 for (i = 0; i < ARRAY_SIZE(hanger->items); i++) in brcmf_fws_hanger_init() 595 hanger->items[i].state = BRCMF_FWS_HANGER_ITEM_STATE_FREE; in brcmf_fws_hanger_init() 605 if (h->items[i].state == BRCMF_FWS_HANGER_ITEM_STATE_FREE) { in brcmf_fws_hanger_get_free_slot() 626 if (h->items[slot_id].state != BRCMF_FWS_HANGER_ITEM_STATE_FREE) { in brcmf_fws_hanger_pushpkt() 632 h->items[slot_id].state = BRCMF_FWS_HANGER_ITEM_STATE_INUSE; in brcmf_fws_hanger_pushpkt() 633 h->items[slot_id].pkt = pkt; in brcmf_fws_hanger_pushpkt() 645 if (h->items[slot_id].state == BRCMF_FWS_HANGER_ITEM_STATE_FREE) { in brcmf_fws_hanger_poppkt() 651 *pktout = h->items[slot_id].pkt; in brcmf_fws_hanger_poppkt() 653 h->items[slot_id].state = BRCMF_FWS_HANGER_ITEM_STATE_FREE; in brcmf_fws_hanger_poppkt() [all …]
|
D | commonring.c | 261 brcmf_dma_invalidate_cache(ret_addr, *n_ items * commonring->item_len); in brcmf_commonring_get_read_ptr()
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | fault_injection.txt | 23 process the first n items it finds. So if you want to forget 5 locks, echo '5' 25 all corresponding items. A log message will be created containing the number 26 of items forgotten (check dmesg).
|
D | rpc-cache.txt | 26 - allowing an EXPIRED time on cache items, and removing 27 items after they expire, and are no longer in-use. 48 to work with particular cache items.
|
/linux-4.1.27/virt/kvm/ |
D | eventfd.c | 400 list_for_each_entry(tmp, &kvm->irqfds.items, list) { in kvm_irqfd_assign() 413 list_add_tail(&irqfd->list, &kvm->irqfds.items); in kvm_irqfd_assign() 514 INIT_LIST_HEAD(&kvm->irqfds.items); in kvm_eventfd_init() 537 list_for_each_entry_safe(irqfd, tmp, &kvm->irqfds.items, list) { in kvm_irqfd_deassign() 588 list_for_each_entry_safe(irqfd, tmp, &kvm->irqfds.items, list) in kvm_irqfd_release() 611 list_for_each_entry(irqfd, &kvm->irqfds.items, list) in kvm_irq_routing_update()
|
D | Kconfig | 1 # KVM common configuration items and defaults
|
/linux-4.1.27/Documentation/filesystems/configfs/ |
D | configfs.txt | 30 As with sysfs, readdir(3) queries the list of items and/or attributes. 31 symlink(2) can be used to group items together. Unlike sysfs, the 33 kernel modules backing the items must respond to this. 111 collection of items that share the same attributes and operations. 183 operations can be performed on a config_item. All items that have been 231 However, it can do more: it can create child items or groups. This is 247 A group creates child items by providing the 283 A config_group cannot be removed while it still has child items. This 388 Rather than have a group where some items behave differently than 393 "parent/subgroup1", and items of type N can be created in [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/power/ |
D | opp.txt | 8 - operating-points: An array of 2-tuples items, and each item consists
|
/linux-4.1.27/sound/pci/ |
D | rme96.c | 1932 unsigned int items = 3; in snd_rme96_get_inputtype_control() local 1940 items = 3; in snd_rme96_get_inputtype_control() 1943 items = 4; in snd_rme96_get_inputtype_control() 1951 items = 4; in snd_rme96_get_inputtype_control() 1953 items = 5; in snd_rme96_get_inputtype_control() 1960 if (ucontrol->value.enumerated.item[0] >= items) { in snd_rme96_get_inputtype_control() 1961 ucontrol->value.enumerated.item[0] = items - 1; in snd_rme96_get_inputtype_control() 1972 int change, items = 3; in snd_rme96_put_inputtype_control() local 1977 items = 3; in snd_rme96_put_inputtype_control() 1980 items = 4; in snd_rme96_put_inputtype_control() [all …]
|
D | rme32.c | 1634 unsigned int items = 3; in snd_rme32_get_inputtype_control() local 1642 items = 3; in snd_rme32_get_inputtype_control() 1645 items = 4; in snd_rme32_get_inputtype_control() 1651 if (ucontrol->value.enumerated.item[0] >= items) { in snd_rme32_get_inputtype_control() 1652 ucontrol->value.enumerated.item[0] = items - 1; in snd_rme32_get_inputtype_control() 1664 int change, items = 3; in snd_rme32_put_inputtype_control() local 1669 items = 3; in snd_rme32_put_inputtype_control() 1672 items = 4; in snd_rme32_put_inputtype_control() 1678 val = ucontrol->value.enumerated.item[0] % items; in snd_rme32_put_inputtype_control()
|
/linux-4.1.27/sound/usb/ |
D | mixer_scarlett.c | 383 unsigned int items = opt->len; in scarlett_ctl_enum_dynamic_info() local 387 uinfo->value.enumerated.items = items; in scarlett_ctl_enum_dynamic_info() 389 if (uinfo->value.enumerated.item >= items) in scarlett_ctl_enum_dynamic_info() 390 uinfo->value.enumerated.item = items - 1; in scarlett_ctl_enum_dynamic_info()
|
/linux-4.1.27/fs/ |
D | binfmt_elf.c | 127 #define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) + (items)) argument 128 #define STACK_ROUND(sp, items) \ argument 129 ((15 + (unsigned long) ((sp) + (items))) &~ 15UL) 134 #define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) - (items)) argument 135 #define STACK_ROUND(sp, items) \ argument 136 (((unsigned long) (sp - items)) &~ 15UL) 165 int items; in create_elf_tables() local 274 items = (argc + 1) + (envc + 1) + 1; in create_elf_tables() 275 bprm->p = STACK_ROUND(sp, items); in create_elf_tables() 279 sp = (elf_addr_t __user *)bprm->p - items - ei_index; in create_elf_tables()
|
/linux-4.1.27/include/linux/crush/ |
D | crush.h | 118 __s32 *items; member
|
/linux-4.1.27/Documentation/arm/Samsung/ |
D | GPIO.txt | 23 specific calls for the items that require Samsung specific handling, such
|
/linux-4.1.27/sound/core/ |
D | control.c | 1066 item = min(item, uinfo->value.enumerated.items - 1); in snd_ctl_elem_user_enum_info() 1172 for (i = 0; i < ue->info.value.enumerated.items; ++i) { in snd_ctl_elem_init_enum_names() 1270 info->value.enumerated.items == 0) in snd_ctl_elem_add() 1878 unsigned int items, const char *const names[]) in snd_ctl_enum_info() argument 1882 info->value.enumerated.items = items; in snd_ctl_enum_info() 1883 if (!items) in snd_ctl_enum_info() 1885 if (info->value.enumerated.item >= items) in snd_ctl_enum_info() 1886 info->value.enumerated.item = items - 1; in snd_ctl_enum_info()
|
D | control_compat.c | 83 u32 items; member
|
/linux-4.1.27/sound/isa/msnd/ |
D | msnd_pinnacle_mixer.c | 62 unsigned items = test_bit(F_HAVEDIGITAL, &chip->flags) ? 3 : 2; in snd_msndmix_info_mux() local 64 return snd_ctl_enum_info(uinfo, 1, items, texts); in snd_msndmix_info_mux()
|
/linux-4.1.27/Documentation/devicetree/bindings/ |
D | resource-names.txt | 5 items. The names property consists of a list of strings in the same
|
/linux-4.1.27/tools/perf/scripts/python/ |
D | event_analyzing_sample.py | 189 print ' '.join(['%s=%s'%(k,str(v))for k,v in sorted(event_fields_dict.items())])
|
/linux-4.1.27/drivers/mmc/host/ |
D | dw_mmc.c | 1816 int items = len >> 1; in dw_mci_push_data16() local 1823 for (i = 0; i < items; ++i) in dw_mci_push_data16() 1852 int items = len >> 1; in dw_mci_pull_data16() local 1854 for (i = 0; i < items; ++i) in dw_mci_pull_data16() 1895 int items = len >> 2; in dw_mci_push_data32() local 1902 for (i = 0; i < items; ++i) in dw_mci_push_data32() 1931 int items = len >> 2; in dw_mci_pull_data32() local 1933 for (i = 0; i < items; ++i) in dw_mci_pull_data32() 1975 int items = len >> 3; in dw_mci_push_data64() local 1982 for (i = 0; i < items; ++i) in dw_mci_push_data64() [all …]
|
/linux-4.1.27/drivers/net/wireless/mwifiex/ |
D | util.c | 28 static struct mwifiex_debug_data items[] = { variable 116 static int num_of_items = ARRAY_SIZE(items); 240 struct mwifiex_debug_data *d = &items[0]; in mwifiex_debug_info_to_buffer()
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-platform-asus-laptop | 30 used to display several items of information.
|
/linux-4.1.27/sound/pci/hda/ |
D | hda_codec.c | 1812 struct hda_nid_item *items = codec->mixers.list; in snd_hda_ctls_clear() local 1814 snd_ctl_remove(codec->card, items[i].kctl); in snd_hda_ctls_clear() 1903 struct hda_nid_item *items; in map_slaves() local 1907 items = codec->mixers.list; in map_slaves() 1909 struct snd_kcontrol *sctl = items[i].kctl; in map_slaves() 4012 uinfo->value.enumerated.items = imux->num_items; in snd_hda_input_mux_info() 4018 strcpy(uinfo->value.enumerated.name, imux->items[index].label); in snd_hda_input_mux_info() 4047 imux->items[idx].index); in snd_hda_input_mux_put() 4501 if (!strncmp(label, imux->items[i].label, strlen(label))) in snd_hda_add_imux_item() 4507 snprintf(imux->items[imux->num_items].label, in snd_hda_add_imux_item() [all …]
|
D | patch_conexant.c | 358 .items = { 423 val = olpc_xo_dc_bias.items[spec->dc_input_bias].index; in olpc_xo_update_mic_pins()
|
D | hda_proc.c | 81 struct hda_nid_item *items = array->list, *item; in print_nid_array() local 84 item = &items[i]; in print_nid_array()
|
D | patch_ca0132.c | 3578 unsigned int items = sizeof(ca0132_voicefx_presets) in ca0132_voicefx_info() local 3583 uinfo->value.enumerated.items = items; in ca0132_voicefx_info() 3584 if (uinfo->value.enumerated.item >= items) in ca0132_voicefx_info() 3585 uinfo->value.enumerated.item = items - 1; in ca0132_voicefx_info() 3608 unsigned int items = sizeof(ca0132_voicefx_presets) in ca0132_voicefx_put() local 3611 if (sel >= items) in ca0132_voicefx_put()
|
D | hda_local.h | 262 struct hda_input_mux_item items[HDA_MAX_NUM_INPUTS]; member
|
D | hda_generic.c | 2293 uinfo->value.enumerated.items = spec->multi_ios + 1; in ch_mode_info() 2885 uinfo->value.enumerated.items = out_jacks + in_jacks; in hp_mic_jack_mode_info() 2886 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) in hp_mic_jack_mode_info() 2887 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1; in hp_mic_jack_mode_info() 3692 idx = imux->items[i].index; in create_multi_cap_vol_ctl() 3843 idx = imux->items[i].index; in parse_mic_boost()
|
/linux-4.1.27/Documentation/fmc/ |
D | identifiers.txt | 35 more items of the FRU standard for your boards, please submit patches. 44 binary file to be burned in your EEPROM, you need the following items: 59 You can pass the items to the FRU generator either in the environment
|
D | carrier.txt | 232 pointer to an array of struct fmc_gpio items, as well as the length of
|
/linux-4.1.27/sound/drivers/pcsp/ |
D | pcsp_mixer.c | 50 uinfo->value.enumerated.items = chip->max_treble + 1; in pcsp_treble_info()
|
/linux-4.1.27/Documentation/sound/alsa/soc/ |
D | platform.txt | 66 Please see codec.txt for a description of items 1 - 4.
|
/linux-4.1.27/drivers/net/wireless/libertas/ |
D | debugfs.c | 840 static struct debug_data items[] = { variable 845 static int num_of_items = ARRAY_SIZE(items); 983 items[i].addr += (size_t) priv; in lbs_debug_init() 986 priv->debugfs_dir, &items[0], in lbs_debug_init()
|
/linux-4.1.27/sound/soc/codecs/ |
D | wm8958-dsp2.c | 943 wm8994->mbc_enum.items = pdata->num_mbc_cfgs; in wm8958_dsp2_init() 968 wm8994->vss_enum.items = pdata->num_vss_cfgs; in wm8958_dsp2_init() 994 wm8994->vss_hpf_enum.items = pdata->num_vss_hpf_cfgs; in wm8958_dsp2_init() 1021 wm8994->enh_eq_enum.items = pdata->num_enh_eq_cfgs; in wm8958_dsp2_init()
|
D | adau17x1.c | 165 if (ucontrol->value.enumerated.item[0] >= e->items) in adau17x1_dsp_mux_enum_put()
|
D | wm8904.c | 1996 wm8904->retune_mobile_enum.items = wm8904->num_retune_mobile_texts; in wm8904_handle_retune_mobile_pdata() 2033 wm8904->drc_enum.items = pdata->num_drc_cfgs; in wm8904_handle_pdata()
|
D | max98095.c | 1890 max98095->eq_enum.items = max98095->eq_textcnt; in max98095_handle_eq_pdata() 2045 max98095->bq_enum.items = max98095->bq_textcnt; in max98095_handle_bq_pdata()
|
D | max98088.c | 1851 max98088->eq_enum.items = max98088->eq_textcnt; in max98088_handle_eq_pdata()
|
D | wm8994.c | 3254 wm8994->retune_mobile_enum.items = wm8994->num_retune_mobile_texts; in wm8994_handle_retune_mobile_pdata() 3306 wm8994->drc_enum.items = pdata->num_drc_cfgs; in wm8994_handle_pdata()
|
D | wm8996.c | 2599 wm8996->retune_mobile_enum.items = wm8996->num_retune_mobile_texts; in wm8996_retune_mobile_pdata()
|
/linux-4.1.27/include/sound/ |
D | soc.h | 184 .items = xitems, .texts = xtexts, \ 189 { .items = xitems, .texts = xtexts } 192 .mask = xmask, .items = xitems, .texts = xtexts, .values = xvalues} 1201 unsigned int items; member 1452 for (i = 0; i < e->items; i++) in snd_soc_enum_val_to_item()
|
D | control.h | 185 unsigned int items, const char *const names[]);
|
/linux-4.1.27/Documentation/RCU/ |
D | UP.txt | 64 1. If a number of items need to be passed to call_rcu() within 74 arbitrary data items to be passed back up through them.
|
D | whatisRCU.txt | 51 "reclamation" phases. The removal phase removes references to data items 53 new versions of these data items), and can run concurrently with readers. 58 (e.g., freeing) the data items removed from the data structure during the 59 removal phase. Because reclaiming data items can disrupt any readers 60 concurrently referencing those data items, the reclamation phase must 61 not start until readers no longer hold references to those data items. 70 data items, and therefore cannot be disrupted by the reclamation phase. 90 This is because lock-based updaters typically update data items in place, 94 and replacement of data items in a linked structure without disrupting
|
D | rculist_nulls.txt | 77 not detect it missed following items in original chain.
|
D | RTFP.txt | 782 Each thread keeps an array of pointers to items that it is
|
/linux-4.1.27/sound/soc/ |
D | soc-ops.c | 51 e->items, e->texts); in snd_soc_info_enum_double() 107 if (item[0] >= e->items) in snd_soc_put_enum_double() 112 if (item[1] >= e->items) in snd_soc_put_enum_double()
|
D | soc-dapm.c | 589 for (i = 0; i < e->items; i++) { in dapm_connect_mux() 2958 if (item[0] >= e->items) in snd_soc_dapm_put_enum_double() 2964 if (item[1] > e->items) in snd_soc_dapm_put_enum_double() 3411 w_param_enum[0].items = num_params; in snd_soc_dapm_new_pcm()
|
/linux-4.1.27/Documentation/networking/ |
D | xfrm_sync.txt | 18 Because the above items change for every packet the SA receives, 26 The identified items that need to be synchronized are:
|
D | skfp.txt | 82 If you run into problems during installation, check those items:
|
D | de4x5.txt | 178 lack of commas to separate items.
|
/linux-4.1.27/drivers/iio/dac/ |
D | ad5624r_spi.c | 110 .items = ad5624r_powerdown_modes,
|
D | mcp4725.c | 186 .items = mcp4725_powerdown_modes,
|
D | ad5504.c | 164 .items = ad5504_powerdown_modes,
|
D | ad5686.c | 159 .items = ad5686_powerdown_modes,
|
D | max5821.c | 77 .items = max5821_powerdown_modes,
|
D | ad5791.c | 172 .items = ad5791_powerdown_modes,
|
D | ad5380.c | 151 .items = ad5380_powerdown_modes,
|
D | ad5446.c | 83 .items = ad5446_powerdown_modes,
|
D | ad5064.c | 178 .items = ad5064_powerdown_modes,
|
/linux-4.1.27/arch/hexagon/ |
D | Kconfig | 7 # Other pending projects/to-do items.
|
/linux-4.1.27/drivers/iio/ |
D | industrialio-core.c | 341 len += scnprintf(buf + len, PAGE_SIZE - len, "%s ", e->items[i]); in iio_enum_available_read() 365 return snprintf(buf, PAGE_SIZE, "%s\n", e->items[i]); in iio_enum_read() 381 if (sysfs_streq(buf, e->items[i])) in iio_enum_write()
|
/linux-4.1.27/Documentation/sound/oss/ |
D | Opti | 6 Some items in this README file are based on features 31 Answer 'm' for these items:
|
D | AudioExcelDSP16 | 21 check off all the configuration items before re-configure it.
|
/linux-4.1.27/include/linux/iio/ |
D | iio.h | 100 const char * const *items; member
|
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/ |
D | Overview.txt | 41 This directory should be kept to items shared between the platform 133 should keep this in mind before altering items outside of their own
|
/linux-4.1.27/Documentation/usb/ |
D | gadget_configfs.txt | 295 In configfs there are items and groups, both represented as directories. 298 Both items and groups can have attributes, which are represented as files.
|
/linux-4.1.27/sound/soc/omap/ |
D | ams-delta.c | 111 if (ucontrol->value.enumerated.item[0] >= control->items) in ams_delta_set_audio_mode()
|
/linux-4.1.27/sound/pci/asihpi/ |
D | asihpi.c | 2214 uinfo->value.enumerated.items = in snd_asihpi_mux_info() 2217 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) in snd_asihpi_mux_info() 2219 uinfo->value.enumerated.items - 1; in snd_asihpi_mux_info() 2399 uinfo->value.enumerated.items = clkcache->count; in snd_asihpi_clksrc_info() 2401 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) in snd_asihpi_clksrc_info() 2403 uinfo->value.enumerated.items - 1; in snd_asihpi_clksrc_info()
|
/linux-4.1.27/sound/usb/line6/ |
D | toneport.c | 201 uinfo->value.enumerated.items = size; in snd_toneport_source_info()
|
/linux-4.1.27/Documentation/scsi/ |
D | 53c700.txt | 42 Usually you can find items 2. and 3. from general spec. documents or
|
/linux-4.1.27/Documentation/devicetree/bindings/regulator/ |
D | ti-abb-regulator.txt | 27 - ti,abb_info: An array of 6-tuples u32 items providing information about ABB
|
/linux-4.1.27/Documentation/target/ |
D | tcm_mod_builder.txt | 137 Future TODO items:
|
/linux-4.1.27/net/ipv6/ |
D | addrconf.c | 4623 int items, int bytes) in __snmp6_fill_statsdev() argument 4626 int pad = bytes - sizeof(u64) * items; in __snmp6_fill_statsdev() 4630 put_unaligned(items, &stats[0]); in __snmp6_fill_statsdev() 4631 for (i = 1; i < items; i++) in __snmp6_fill_statsdev() 4634 memset(&stats[items], 0, pad); in __snmp6_fill_statsdev() 4638 int items, int bytes, size_t syncpoff) in __snmp6_fill_stats64() argument 4641 int pad = bytes - sizeof(u64) * items; in __snmp6_fill_stats64() 4645 put_unaligned(items, &stats[0]); in __snmp6_fill_stats64() 4646 for (i = 1; i < items; i++) in __snmp6_fill_stats64() 4649 memset(&stats[items], 0, pad); in __snmp6_fill_stats64()
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-diff.txt | 85 Show only items with match in baseline.
|
/linux-4.1.27/net/ceph/ |
D | osdmap.c | 246 b->items = kcalloc(b->size, sizeof(__s32), GFP_NOFS); in crush_decode() 247 if (b->items == NULL) in crush_decode() 256 b->items[j] = ceph_decode_32(p); in crush_decode()
|
/linux-4.1.27/Documentation/video4linux/ |
D | v4l2-controls.txt | 201 control with driver-specific items in the menu. It differs from 398 to easily exclude certain menu items. This is used in the VIDIOC_QUERYMENU 406 mask you can tell the framework which menu items should be skipped. Setting 407 it to 0 means that all menu items are supported.
|
D | vivid.txt | 526 meaning that one or more menu items return EINVAL when VIDIOC_QUERYMENU is called.
|
/linux-4.1.27/Documentation/input/ |
D | ntrig.txt | 43 Additional sysfs items
|
/linux-4.1.27/arch/m68k/ifpsp060/ |
D | ilsp.doc | 113 other items off of the stack.
|
/linux-4.1.27/sound/pci/ac97/ |
D | ac97_patch.c | 3648 const char * const items[4]; member 3658 .items = { 3666 .items = { 3674 .items = { 3684 vt1618_uaj[kcontrol->private_value].items); in snd_ac97_vt1618_UAJ_info()
|
/linux-4.1.27/drivers/scsi/ |
D | libiscsi.c | 2523 iscsi_pool_init(struct iscsi_pool *q, int max, void ***items, int item_size) in iscsi_pool_init() argument 2533 if (items) in iscsi_pool_init() 2550 if (items) { in iscsi_pool_init() 2551 *items = q->pool + max; in iscsi_pool_init() 2552 memcpy(*items, q->pool, max * sizeof(void *)); in iscsi_pool_init()
|
/linux-4.1.27/Documentation/arm/nwfpe/ |
D | README.FPE | 11 Note: items enclosed in {} are optional.
|
/linux-4.1.27/fs/cramfs/ |
D | README | 5 a bit looser, e.g. it doesn't care if the <file_data> items are
|
/linux-4.1.27/Documentation/laptops/ |
D | asus-laptop.txt | 180 several items of information.
|
/linux-4.1.27/sound/pci/ice1712/ |
D | ice1724.c | 1860 uinfo->value.enumerated.items = hw_rates_count; in snd_vt1724_pro_internal_clock_info() 1864 uinfo->value.enumerated.items += ice->ext_clock_count; in snd_vt1724_pro_internal_clock_info() 1866 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items) in snd_vt1724_pro_internal_clock_info() 1867 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1; in snd_vt1724_pro_internal_clock_info()
|
/linux-4.1.27/include/uapi/sound/ |
D | asound.h | 898 unsigned int items; /* R: number of items */ member
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | pinctrl-bindings.txt | 161 Many data items that are represented in a pin configuration node are common
|
/linux-4.1.27/drivers/iio/accel/ |
D | bma180.c | 564 .items = bma180_power_modes,
|
D | mma9553.c | 950 .items = calibgender_modes,
|
/linux-4.1.27/fs/reiserfs/ |
D | README | 102 align files), and he invented and implemented indirect items and
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | mpc5200.txt | 28 should have two items in the compatible list:
|
/linux-4.1.27/drivers/media/usb/pwc/ |
D | philips.txt | 185 'trace' of some of the calls the module makes; it logs all items in your
|
/linux-4.1.27/Documentation/sysctl/ |
D | fs.txt | 132 The file inode-nr contains the first two items from
|
/linux-4.1.27/include/linux/ |
D | kvm_host.h | 365 struct list_head items; member
|
/linux-4.1.27/arch/arm/mach-s3c24xx/ |
D | Kconfig | 127 # cpu frequency items common between s3c2410 and s3c2440/s3c2442
|
/linux-4.1.27/sound/soc/sh/rcar/ |
D | core.c | 774 uinfo->value.enumerated.items = cfg->max; in rsnd_kctrl_info()
|
/linux-4.1.27/Documentation/power/ |
D | runtime_pm.txt | 13 put their PM-related work items. It is strongly recommended that pm_wq be 14 used for queuing all work items related to runtime PM, because this allows 213 - work structure used for queuing up requests (i.e. work items in pm_wq)
|
D | pci.txt | 1000 by work items put into the power management workqueue, pm_wq. Although there
|
/linux-4.1.27/sound/soc/intel/atom/ |
D | sst-atom-controls.c | 142 uinfo->value.enumerated.items = e->max; in sst_slot_enum_info()
|
/linux-4.1.27/Documentation/m68k/ |
D | kernel-options.txt | 644 items: 657 All of the items can also be prefixed with "ov_", i.e. "ov_ikbd",
|
/linux-4.1.27/Documentation/development-process/ |
D | 5.Posting | 152 The items above, together, form the changelog for the patch. Writing good
|
/linux-4.1.27/sound/core/oss/ |
D | mixer_oss.c | 1068 …for (slot.capture_item = 1; slot.capture_item < uinfo->value.enumerated.items; slot.capture_item++… in snd_mixer_oss_build_input()
|
/linux-4.1.27/drivers/net/wireless/ |
D | rndis_wlan.c | 3113 __le32 items[8]; in rndis_wlan_get_caps() member 3130 switch (le32_to_cpu(networks_supported.items[i])) { in rndis_wlan_get_caps()
|
/linux-4.1.27/tools/usb/usbip/ |
D | COPYING | 324 mouse-clicks or menu items--whatever suits your program.
|
/linux-4.1.27/drivers/staging/rtl8192e/ |
D | license | 323 mouse-clicks or menu items--whatever suits your program.
|
/linux-4.1.27/drivers/staging/rtl8192u/ |
D | copying | 324 mouse-clicks or menu items--whatever suits your program.
|
/linux-4.1.27/Documentation/cdrom/ |
D | ide-cd | 169 IDE support code. Some of these items apply only to earlier versions
|
/linux-4.1.27/ |
D | COPYING | 340 mouse-clicks or menu items--whatever suits your program.
|
/linux-4.1.27/Documentation/hwmon/ |
D | sysfs-interface | 49 "fan" (fan). Usual items are "input" (measured value), "max" (high
|
/linux-4.1.27/Documentation/arm64/ |
D | arm-acpi.txt | 456 Individual items specific to Linux on ARM, contained in the the Linux
|
/linux-4.1.27/drivers/scsi/aic7xxx/ |
D | aic7xxx.seq | 1230 * some items in the PCI block. The ULTRA2
|