/include/linux/ |
D | signal.h | 64 static inline void sigaddset(sigset_t *set, int _sig) in sigaddset() argument 68 set->sig[0] |= 1UL << sig; in sigaddset() 70 set->sig[sig / _NSIG_BPW] |= 1UL << (sig % _NSIG_BPW); in sigaddset() 73 static inline void sigdelset(sigset_t *set, int _sig) in sigdelset() argument 77 set->sig[0] &= ~(1UL << sig); in sigdelset() 79 set->sig[sig / _NSIG_BPW] &= ~(1UL << (sig % _NSIG_BPW)); in sigdelset() 82 static inline int sigismember(sigset_t *set, int _sig) in sigismember() argument 86 return 1 & (set->sig[0] >> sig); in sigismember() 88 return 1 & (set->sig[sig / _NSIG_BPW] >> (sig % _NSIG_BPW)); in sigismember() 93 static inline int sigisemptyset(sigset_t *set) in sigisemptyset() argument [all …]
|
D | ioasid.h | 35 ioasid_t ioasid_alloc(struct ioasid_set *set, ioasid_t min, ioasid_t max, 39 void *ioasid_find(struct ioasid_set *set, ioasid_t ioasid, 46 static inline ioasid_t ioasid_alloc(struct ioasid_set *set, ioasid_t min, in ioasid_alloc() argument 61 static inline void *ioasid_find(struct ioasid_set *set, ioasid_t ioasid, in ioasid_find() argument
|
D | nsproxy.h | 60 static inline struct cred *nsset_cred(struct nsset *set) in nsset_cred() argument 62 if (set->flags & CLONE_NEWUSER) in nsset_cred() 63 return (struct cred *)set->cred; in nsset_cred()
|
D | blk-mq.h | 358 int (*init_request)(struct blk_mq_tag_set *set, struct request *, 363 void (*exit_request)(struct blk_mq_tag_set *set, struct request *, 386 int (*map_queues)(struct blk_mq_tag_set *set); 435 struct gendisk *__blk_mq_alloc_disk(struct blk_mq_tag_set *set, void *queuedata, 437 #define blk_mq_alloc_disk(set, queuedata) \ argument 441 __blk_mq_alloc_disk(set, queuedata, &__key); \ 444 int blk_mq_init_allocated_queue(struct blk_mq_tag_set *set, 448 int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set); 449 int blk_mq_alloc_sq_tag_set(struct blk_mq_tag_set *set, 452 void blk_mq_free_tag_set(struct blk_mq_tag_set *set); [all …]
|
D | sm501.h | 24 unsigned long set, unsigned long clear); 34 unsigned long set, 99 unsigned long set; member
|
D | compat.h | 411 extern int get_compat_sigset(sigset_t *set, const compat_sigset_t __user *compat); 418 put_compat_sigset(compat_sigset_t __user *compat, const sigset_t *set, in put_compat_sigset() argument 425 case 4: v.sig[7] = (set->sig[3] >> 32); v.sig[6] = set->sig[3]; in put_compat_sigset() 427 case 3: v.sig[5] = (set->sig[2] >> 32); v.sig[4] = set->sig[2]; in put_compat_sigset() 429 case 2: v.sig[3] = (set->sig[1] >> 32); v.sig[2] = set->sig[1]; in put_compat_sigset() 431 case 1: v.sig[1] = (set->sig[0] >> 32); v.sig[0] = set->sig[0]; in put_compat_sigset() 435 return copy_to_user(compat, set, size) ? -EFAULT : 0; in put_compat_sigset() 440 #define unsafe_put_compat_sigset(compat, set, label) do { \ argument 442 const sigset_t *__s = set; \ 463 #define unsafe_get_compat_sigset(set, compat, label) do { \ argument [all …]
|
D | linkmode.h | 61 int set) in linkmode_mod_bit() argument 63 if (set) in linkmode_mod_bit()
|
D | sysctl.h | 155 struct ctl_table_set *set; member 193 extern void retire_sysctl_set(struct ctl_table_set *set); 196 struct ctl_table_set *set, 199 struct ctl_table_set *set,
|
D | console_struct.h | 177 #define CUR_MAKE(size, change, set) ((size) | ((change) << 8) | \ argument 178 ((set) << 16))
|
D | logic_iomem.h | 29 void (*set)(void *priv, unsigned int offset, u8 value, int size); member
|
/include/soc/fsl/qe/ |
D | ucc.h | 45 int ucc_mux_set_grant_tsa_bkpt(unsigned int ucc_num, int set, u32 mask); 49 static inline int ucc_set_qe_mux_grant(unsigned int ucc_num, int set) in ucc_set_qe_mux_grant() argument 51 return ucc_mux_set_grant_tsa_bkpt(ucc_num, set, QE_CMXUCR_GRANT); in ucc_set_qe_mux_grant() 54 static inline int ucc_set_qe_mux_tsa(unsigned int ucc_num, int set) in ucc_set_qe_mux_tsa() argument 56 return ucc_mux_set_grant_tsa_bkpt(ucc_num, set, QE_CMXUCR_TSA); in ucc_set_qe_mux_tsa() 59 static inline int ucc_set_qe_mux_bkpt(unsigned int ucc_num, int set) in ucc_set_qe_mux_bkpt() argument 61 return ucc_mux_set_grant_tsa_bkpt(ucc_num, set, QE_CMXUCR_BKPT); in ucc_set_qe_mux_bkpt()
|
/include/linux/netfilter/ipset/ |
D | ip_set.h | 85 void (*destroy)(struct ip_set *set, void *ext); 137 typedef int (*ipset_adtfn)(struct ip_set *set, void *value, 156 int (*kadt)(struct ip_set *set, const struct sk_buff *skb, 164 int (*uadt)(struct ip_set *set, struct nlattr *tb[], 171 int (*resize)(struct ip_set *set, bool retried); 173 void (*destroy)(struct ip_set *set); 175 void (*flush)(struct ip_set *set); 177 void (*expire)(struct ip_set *set); 179 int (*head)(struct ip_set *set, struct sk_buff *skb); 181 int (*list)(const struct ip_set *set, struct sk_buff *skb, [all …]
|
/include/trace/events/ |
D | thp.h | 49 TP_PROTO(unsigned long addr, unsigned long pte, unsigned long clr, unsigned long set), 50 TP_ARGS(addr, pte, clr, set), 55 __field(unsigned long, set) 62 __entry->set = set; 66 …and pte = 0x%lx clr = 0x%lx, set = 0x%lx", __entry->addr, __entry->pte, __entry->clr, __entry->set)
|
/include/net/netfilter/ |
D | nf_tables_core.h | 103 bool nft_rhash_lookup(const struct net *net, const struct nft_set *set, 105 bool nft_rbtree_lookup(const struct net *net, const struct nft_set *set, 107 bool nft_bitmap_lookup(const struct net *net, const struct nft_set *set, 110 const struct nft_set *set, 112 bool nft_hash_lookup(const struct net *net, const struct nft_set *set, 114 bool nft_set_do_lookup(const struct net *net, const struct nft_set *set, 118 nft_set_do_lookup(const struct net *net, const struct nft_set *set, in nft_set_do_lookup() argument 121 return set->ops->lookup(net, set, key, ext); in nft_set_do_lookup() 126 bool nft_pipapo_lookup(const struct net *net, const struct nft_set *set, 129 bool nft_pipapo_avx2_lookup(const struct net *net, const struct nft_set *set,
|
D | nf_tables.h | 293 struct nft_set *set, 408 const struct nft_set *set, 411 bool (*update)(struct nft_set *set, 419 bool (*delete)(const struct nft_set *set, 423 const struct nft_set *set, 427 const struct nft_set *set, 430 const struct nft_set *set, 433 const struct nft_set *set, 436 const struct nft_set *set, 439 struct nft_set *set, [all …]
|
/include/video/ |
D | newport.h | 287 struct newport_rexregs set; member 390 regs->set.dcbmode = (NPORT_DMODE_AVC2 | VC2_REGADDR_INDEX | NPORT_DMODE_W3 | in newport_vc2_set() 392 regs->set.dcbdata0.byword = (vc2ireg << 24) | (val << 8); in newport_vc2_set() 398 regs->set.dcbmode = (NPORT_DMODE_AVC2 | VC2_REGADDR_INDEX | NPORT_DMODE_W1 | in newport_vc2_get() 400 regs->set.dcbdata0.bybytes.b3 = vc2ireg; in newport_vc2_get() 401 regs->set.dcbmode = (NPORT_DMODE_AVC2 | VC2_REGADDR_IREG | NPORT_DMODE_W2 | in newport_vc2_get() 403 return regs->set.dcbdata0.byshort.s1; in newport_vc2_get() 432 regs->set.dcbmode = (NPORT_DMODE_ACMALL | NCMAP_PROTOCOL | in newport_cmap_setaddr() 435 regs->set.dcbdata0.byshort.s1 = addr; in newport_cmap_setaddr() 436 regs->set.dcbmode = (NPORT_DMODE_ACMALL | NCMAP_PROTOCOL | in newport_cmap_setaddr() [all …]
|
/include/trace/hooks/ |
D | block.h | 17 TP_PROTO(size_t *rq_size, struct blk_mq_tag_set *set, 19 TP_ARGS(rq_size, set, tags));
|
/include/linux/byteorder/ |
D | little_endian.h | 8 #warning inconsistent configuration, CONFIG_CPU_BIG_ENDIAN is set
|
/include/linux/bcma/ |
D | bcma_driver_chipcommon.h | 665 #define bcma_cc_set32(cc, offset, set) \ argument 666 bcma_cc_write32(cc, offset, bcma_cc_read32(cc, offset) | (set)) 667 #define bcma_cc_maskset32(cc, offset, mask, set) \ argument 668 bcma_cc_write32(cc, offset, (bcma_cc_read32(cc, offset) & (mask)) | (set)) 678 #define bcma_pmu_set32(cc, offset, set) \ argument 679 bcma_pmu_write32(cc, offset, bcma_pmu_read32(cc, offset) | (set)) 680 #define bcma_pmu_maskset32(cc, offset, mask, set) \ argument 681 bcma_pmu_write32(cc, offset, (bcma_pmu_read32(cc, offset) & (mask)) | (set)) 705 u32 mask, u32 set); 707 u32 offset, u32 mask, u32 set); [all …]
|
D | bcma.h | 421 static inline void bcma_set32(struct bcma_device *cc, u16 offset, u32 set) in bcma_set32() argument 423 bcma_write32(cc, offset, bcma_read32(cc, offset) | set); in bcma_set32() 426 u16 offset, u32 mask, u32 set) in bcma_maskset32() argument 428 bcma_write32(cc, offset, (bcma_read32(cc, offset) & mask) | set); in bcma_maskset32() 434 static inline void bcma_set16(struct bcma_device *cc, u16 offset, u16 set) in bcma_set16() argument 436 bcma_write16(cc, offset, bcma_read16(cc, offset) | set); in bcma_set16() 439 u16 offset, u16 mask, u16 set) in bcma_maskset16() argument 441 bcma_write16(cc, offset, (bcma_read16(cc, offset) & mask) | set); in bcma_maskset16()
|
/include/linux/usb/ |
D | typec_mux.h | 20 typec_switch_set_fn_t set; member 54 typec_mux_set_fn_t set; member
|
D | isp1362.h | 34 void (*reset) (struct device *dev, int set);
|
D | audio.h | 32 int (*set)(struct usb_audio_control *con, u8 cmd, int value); member
|
/include/linux/platform_data/ |
D | i2c-omap.h | 36 void (*set_mpu_wkup_lat)(struct device *dev, long set);
|
/include/drm/ |
D | drm_crtc_helper.h | 47 int drm_crtc_helper_set_config(struct drm_mode_set *set,
|