Home
last modified time | relevance | path

Searched refs:_ds (Results 1 – 7 of 7) sorted by relevance

/linux/include/net/
H A Ddsa.h183 #define dsa_hsr_foreach_port(_dp, _ds, _hsr) \ argument
184 list_for_each_entry((_dp), &(_ds)->dst->ports, list) \
185 if ((_dp)->ds == (_ds) && (_dp)->hsr_dev == (_hsr))
583 #define dsa_switch_for_each_port(_dp, _ds) \ argument
584 list_for_each_entry((_dp), &(_ds)->dst->ports, list) \
585 if ((_dp)->ds == (_ds))
587 #define dsa_switch_for_each_port_safe(_dp, _next, _ds) \ argument
588 list_for_each_entry_safe((_dp), (_next), &(_ds)->dst->ports, list) \
589 if ((_dp)->ds == (_ds))
591 #define dsa_switch_for_each_port_continue_reverse(_dp, _ds) \ argument
[all …]
/linux/drivers/net/wireless/ath/ath9k/
H A Dar9003_mac.h53 #define AR9003TXC_CONST(_ds) ((const struct ar9003_txc *) _ds) argument
H A Dmac.h318 #define AR5416DESC(_ds) ((struct ar5416_desc *)(_ds)) argument
319 #define AR5416DESC_CONST(_ds) ((const struct ar5416_desc *)(_ds)) argument
H A Dath9k.h66 #define DS2PHYS(_dd, _ds) \ argument
67 ((_dd)->dd_desc_paddr + ((caddr_t)(_ds) - (caddr_t)(_dd)->dd_desc))
/linux/arch/x86/kernel/
H A Dprocess_64.c532 u16 _cs, u16 _ss, u16 _ds) in start_thread_common() argument
545 loadsegment(es, _ds); in start_thread_common()
546 loadsegment(ds, _ds); in start_thread_common()
/linux/drivers/usb/gadget/function/
H A Df_fs.c2484 struct usb_descriptor_header *_ds = (void *)data; in ffs_do_single_desc() local
2495 length = _ds->bLength; in ffs_do_single_desc()
2510 ret = entity(FFS_ ##type, &val, _ds, priv); \ in ffs_do_single_desc()
2519 switch (_ds->bDescriptorType) { in ffs_do_single_desc()
2526 _ds->bDescriptorType); in ffs_do_single_desc()
2530 struct usb_interface_descriptor *ds = (void *)_ds; in ffs_do_single_desc()
2544 struct usb_endpoint_descriptor *ds = (void *)_ds; in ffs_do_single_desc()
2572 _ds->bDescriptorType, *current_class); in ffs_do_single_desc()
2582 struct usb_interface_assoc_descriptor *ds = (void *)_ds; in ffs_do_single_desc()
2603 pr_vdebug("unimplemented descriptor: %d\n", _ds->bDescriptorType); in ffs_do_single_desc()
[all …]
/linux/drivers/net/dsa/
H A Dyt921x.c185 #define to_yt921x_priv(_ds) container_of_const(_ds, struct yt921x_priv, ds) argument