/include/linux/ |
D | radix-tree.h | 348 radix_tree_next_slot(void **slot, struct radix_tree_iter *iter, unsigned flags) in radix_tree_next_slot() argument 354 return slot + 1; in radix_tree_next_slot() 361 return slot + offset + 1; in radix_tree_next_slot() 367 slot++; in radix_tree_next_slot() 369 if (likely(*slot)) in radix_tree_next_slot() 370 return slot; in radix_tree_next_slot() 392 #define radix_tree_for_each_chunk(slot, root, iter, start, flags) \ argument 393 for (slot = radix_tree_iter_init(iter, start) ; \ 394 (slot = radix_tree_next_chunk(root, iter, flags)) ;) 406 #define radix_tree_for_each_chunk_slot(slot, iter, flags) \ argument [all …]
|
D | pci_hotplug.h | 75 int (*enable_slot) (struct hotplug_slot *slot); 76 int (*disable_slot) (struct hotplug_slot *slot); 77 int (*set_attention_status) (struct hotplug_slot *slot, u8 value); 78 int (*hardware_test) (struct hotplug_slot *slot, u32 value); 79 int (*get_power_status) (struct hotplug_slot *slot, u8 *value); 80 int (*get_attention_status) (struct hotplug_slot *slot, u8 *value); 81 int (*get_latch_status) (struct hotplug_slot *slot, u8 *value); 82 int (*get_adapter_status) (struct hotplug_slot *slot, u8 *value); 114 void (*release) (struct hotplug_slot *slot); 123 static inline const char *hotplug_slot_name(const struct hotplug_slot *slot) in hotplug_slot_name() argument [all …]
|
D | cb710.h | 42 struct cb710_slot slot[0]; member 55 static inline void cb710_write_port_##t(struct cb710_slot *slot, \ 58 iowrite##t(value, slot->iobase + port); \ 61 static inline u##t cb710_read_port_##t(struct cb710_slot *slot, \ 64 return ioread##t(slot->iobase + port); \ 67 static inline void cb710_modify_port_##t(struct cb710_slot *slot, \ 71 (ioread##t(slot->iobase + port) & ~clear)|set, \ 72 slot->iobase + port); \ 81 void cb710_set_irq_handler(struct cb710_slot *slot, 92 static inline struct cb710_chip *cb710_slot_to_chip(struct cb710_slot *slot) in cb710_slot_to_chip() argument [all …]
|
D | dlm.h | 21 int slot; /* 1 to MAX_INT */ member 35 void (*recover_slot) (void *ops_arg, struct dlm_slot *slot);
|
D | atmel-mci.h | 36 struct mci_slot_pdata slot[ATMCI_MAX_NR_SLOTS]; member
|
D | dca.h | 78 int dca_sysfs_add_req(struct dca_provider *dca, struct device *dev, int slot); 79 void dca_sysfs_remove_req(struct dca_provider *dca, int slot);
|
D | fsl_devices.h | 133 void(*hw_ctrl)(int slot, int enable); 134 int(*voltage_set)(int slot, int vcc, int vpp);
|
D | kvm_host.h | 467 struct kvm_memory_slot *slot; in id_to_memslot() local 469 slot = &slots->memslots[index]; in id_to_memslot() 471 WARN_ON(slot->id != id); in id_to_memslot() 472 return slot; in id_to_memslot() 499 int kvm_arch_create_memslot(struct kvm_memory_slot *slot, unsigned long npages); 514 struct kvm_memory_slot *slot); 521 unsigned long gfn_to_hva_memslot(struct kvm_memory_slot *slot, gfn_t gfn); 533 pfn_t gfn_to_pfn_memslot(struct kvm_memory_slot *slot, gfn_t gfn); 534 pfn_t gfn_to_pfn_memslot_atomic(struct kvm_memory_slot *slot, gfn_t gfn); 738 int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot); [all …]
|
D | nubus.h | 24 int slot; member 100 struct nubus_dev* nubus_find_slot(unsigned int slot,
|
D | mISDNhw.h | 95 int slot; /* multiport card channel slot */ member 156 int slot; /* multiport card channel slot */ member
|
D | eisa.h | 36 int slot; member
|
D | tc.h | 91 int slot; member
|
D | ipack.h | 98 unsigned int slot; member
|
D | kprobes.h | 268 extern void free_insn_slot(kprobe_opcode_t *slot, int dirty); 291 extern void free_optinsn_slot(kprobe_opcode_t *slot, int dirty);
|
/include/linux/platform_data/ |
D | mmc-omap.h | 50 int (*switch_slot)(struct device *dev, int slot); 58 int (*suspend)(struct device *dev, int slot); 59 int (*resume)(struct device *dev, int slot); 119 int (*set_bus_mode)(struct device *dev, int slot, int bus_mode); 120 int (*set_power)(struct device *dev, int slot, 122 int (*get_ro)(struct device *dev, int slot); 123 void (*remux)(struct device *dev, int slot, int power_on); 125 void (*before_set_reg)(struct device *dev, int slot, 128 void (*after_set_reg)(struct device *dev, int slot, 139 int (*get_cover_state)(struct device *dev, int slot); [all …]
|
/include/linux/input/ |
D | mt.h | 49 int slot; member 56 static inline void input_mt_set_value(struct input_mt_slot *slot, in input_mt_set_value() argument 59 slot->abs[code - ABS_MT_FIRST] = value; in input_mt_set_value() 62 static inline int input_mt_get_value(const struct input_mt_slot *slot, in input_mt_get_value() argument 65 return slot->abs[code - ABS_MT_FIRST]; in input_mt_get_value() 68 static inline bool input_mt_is_active(const struct input_mt_slot *slot) in input_mt_is_active() argument 70 return input_mt_get_value(slot, ABS_MT_TRACKING_ID) >= 0; in input_mt_is_active() 74 const struct input_mt_slot *slot) in input_mt_is_used() argument 76 return slot->frame == mt->frame; in input_mt_is_used() 88 static inline void input_mt_slot(struct input_dev *dev, int slot) in input_mt_slot() argument [all …]
|
/include/uapi/linux/ |
D | pci.h | 30 #define PCI_DEVFN(slot, func) ((((slot) & 0x1f) << 3) | ((func) & 0x07)) argument
|
D | nubus.h | 239 static inline void *nubus_slot_addr(int slot) in nubus_slot_addr() argument 241 return (void *)(0xF0000000|(slot<<24)); in nubus_slot_addr()
|
/include/linux/mfd/ |
D | menelaus.h | 17 extern int menelaus_set_mmc_opendrain(int slot, int enable); 18 extern int menelaus_set_mmc_slot(int slot, int enable, int power, int cd_on);
|
/include/linux/ssb/ |
D | ssb_driver_pci.h | 97 int ssb_pcicore_pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin); 124 int ssb_pcicore_pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) in ssb_pcicore_pcibios_map_irq() argument
|
/include/net/ |
D | sch_generic.h | 655 int slot = pktlen + rtab->rate.cell_align + rtab->rate.overhead; in qdisc_l2t() local 656 if (slot < 0) in qdisc_l2t() 657 slot = 0; in qdisc_l2t() 658 slot >>= rtab->rate.cell_log; in qdisc_l2t() 659 if (slot > 255) in qdisc_l2t() 660 return rtab->data[255]*(slot >> 8) + rtab->data[slot & 0xFF]; in qdisc_l2t() 661 return rtab->data[slot]; in qdisc_l2t()
|
/include/sound/ |
D | mixer_oss.h | 48 void (*private_free)(struct snd_mixer_oss_slot *slot);
|
/include/trace/events/ |
D | kvm.h | 208 TP_PROTO(ulong hva, struct kvm_memory_slot *slot, int ref), 209 TP_ARGS(hva, slot, ref), 220 slot->base_gfn + ((hva - slot->userspace_addr) >> PAGE_SHIFT);
|
/include/net/irda/ |
D | irlap.h | 111 int slot; /* Random chosen slot */ member 192 __u8 slot; /* Random chosen slot */ member
|
/include/linux/mmc/ |
D | dw_mmc.h | 169 struct dw_mci_slot *slot[MAX_MCI_SLOTS]; member
|