| /include/linux/ |
| A D | indirect_call_wrapper.h | 19 likely(f == f1) ? f1(__VA_ARGS__) : f(__VA_ARGS__); \ 37 #define INDIRECT_CALLABLE_DECLARE(f) f argument 39 #define EXPORT_INDIRECT_CALLABLE(f) EXPORT_SYMBOL(f) argument 42 #define INDIRECT_CALL_1(f, f1, ...) f(__VA_ARGS__) argument 43 #define INDIRECT_CALL_2(f, f2, f1, ...) f(__VA_ARGS__) argument 44 #define INDIRECT_CALL_3(f, f3, f2, f1, ...) f(__VA_ARGS__) argument 45 #define INDIRECT_CALL_4(f, f4, f3, f2, f1, ...) f(__VA_ARGS__) argument 60 #define INDIRECT_CALL_INET(f, f2, f1, ...) INDIRECT_CALL_1(f, f1, __VA_ARGS__) argument 62 #define INDIRECT_CALL_INET(f, f2, f1, ...) f(__VA_ARGS__) argument 66 #define INDIRECT_CALL_INET_1(f, f1, ...) INDIRECT_CALL_1(f, f1, __VA_ARGS__) argument [all …]
|
| A D | file.h | 44 #define fd_file(f) ((struct file *)((f).word & ~(FDPUT_FPUT|FDPUT_POS_UNLOCK))) argument 45 static inline bool fd_empty(struct fd f) in fd_empty() argument 47 return unlikely(!f.word); in fd_empty() 51 static inline struct fd BORROWED_FD(struct file *f) in BORROWED_FD() argument 53 return (struct fd){(unsigned long)f}; in BORROWED_FD() 55 static inline struct fd CLONED_FD(struct file *f) in CLONED_FD() argument 57 return (struct fd){(unsigned long)f | FDPUT_FPUT}; in CLONED_FD() 76 static inline void fdput_pos(struct fd f) in fdput_pos() argument 78 if (f.word & FDPUT_POS_UNLOCK) in fdput_pos() 79 __f_unlock_pos(fd_file(f)); in fdput_pos() [all …]
|
| A D | skbuff_ref.h | 30 static inline void skb_frag_ref(struct sk_buff *skb, int f) in skb_frag_ref() argument 32 __skb_frag_ref(&skb_shinfo(skb)->frags[f]); in skb_frag_ref() 66 static inline void skb_frag_unref(struct sk_buff *skb, int f) in skb_frag_unref() argument 71 __skb_frag_unref(&shinfo->frags[f], skb->pp_recycle); in skb_frag_unref()
|
| A D | nubus.h | 125 #define for_each_func_rsrc(f) \ argument 126 for (f = nubus_first_rsrc_or_null(); f; f = nubus_next_rsrc_or_null(f)) 128 #define for_each_board_func_rsrc(b, f) \ argument 129 for_each_func_rsrc(f) if (f->board != b) {} else
|
| A D | elfnote.h | 45 .long 2f - 1f /* namesz */ ; \ 46 .long 4484f - 3f /* descsz */ ; \
|
| A D | ptr_ring.h | 425 #define __PTR_RING_PEEK_CALL(r, f) ((f)(__ptr_ring_peek(r))) argument 427 #define PTR_RING_PEEK_CALL(r, f) ({ \ argument 428 typeof((f)(NULL)) __PTR_RING_PEEK_CALL_v; \ 431 __PTR_RING_PEEK_CALL_v = __PTR_RING_PEEK_CALL(r, f); \ 436 #define PTR_RING_PEEK_CALL_IRQ(r, f) ({ \ argument 437 typeof((f)(NULL)) __PTR_RING_PEEK_CALL_v; \ 440 __PTR_RING_PEEK_CALL_v = __PTR_RING_PEEK_CALL(r, f); \ 445 #define PTR_RING_PEEK_CALL_BH(r, f) ({ \ argument 446 typeof((f)(NULL)) __PTR_RING_PEEK_CALL_v; \ 454 #define PTR_RING_PEEK_CALL_ANY(r, f) ({ \ argument [all …]
|
| A D | if_tun.h | 48 static inline struct socket *tun_get_socket(struct file *f) in tun_get_socket() argument 53 static inline struct ptr_ring *tun_get_tx_ring(struct file *f) in tun_get_tx_ring() argument
|
| A D | damon.h | 849 #define damos_for_each_filter(f, scheme) \ argument 850 list_for_each_entry(f, &(scheme)->filters, list) 852 #define damos_for_each_filter_safe(f, next, scheme) \ argument 853 list_for_each_entry_safe(f, next, &(scheme)->filters, list) 855 #define damos_for_each_ops_filter(f, scheme) \ argument 856 list_for_each_entry(f, &(scheme)->ops_filters, list) 858 #define damos_for_each_ops_filter_safe(f, next, scheme) \ argument 859 list_for_each_entry_safe(f, next, &(scheme)->ops_filters, list) 885 void damos_add_filter(struct damos *s, struct damos_filter *f); 887 void damos_destroy_filter(struct damos_filter *f);
|
| /include/linux/ceph/ |
| A D | ceph_frag.h | 27 static inline __u32 ceph_frag_bits(__u32 f) in ceph_frag_bits() argument 29 return f >> 24; in ceph_frag_bits() 33 return f & 0xffffffu; in ceph_frag_value() 35 static inline __u32 ceph_frag_mask(__u32 f) in ceph_frag_mask() argument 41 return 24 - ceph_frag_bits(f); in ceph_frag_mask_shift() 46 return (v & ceph_frag_mask(f)) == ceph_frag_value(f); in ceph_frag_contains_value() 51 int newbits = ceph_frag_bits(f) + by; in ceph_frag_make_child() 57 return ceph_frag_value(f) == 0; in ceph_frag_is_leftmost() 61 return ceph_frag_value(f) == ceph_frag_mask(f); in ceph_frag_is_rightmost() 65 return ceph_frag_make(ceph_frag_bits(f), in ceph_frag_next() [all …]
|
| A D | rados.h | 203 #define __CEPH_FORALL_OSD_OPS(f) \ argument 206 f(READ, __CEPH_OSD_OP(RD, DATA, 1), "read") \ 207 f(STAT, __CEPH_OSD_OP(RD, DATA, 2), "stat") \ 228 f(WRITE, __CEPH_OSD_OP(WR, DATA, 1), "write") \ 231 f(ZERO, __CEPH_OSD_OP(WR, DATA, 4), "zero") \ 246 f(WATCH, __CEPH_OSD_OP(WR, DATA, 15), "watch") \ 294 f(PULL, __CEPH_OSD_OP1(SUB, 1), "pull") \ 295 f(PUSH, __CEPH_OSD_OP1(SUB, 2), "push") \ 298 f(SCRUB, __CEPH_OSD_OP1(SUB, 5), "scrub") \ 314 f(CALL, __CEPH_OSD_OP(RD, EXEC, 1), "call") \ [all …]
|
| /include/linux/mtd/ |
| A D | sh_flctl.h | 18 #define FLCMNCR(f) (f->reg + 0x0) argument 19 #define FLCMDCR(f) (f->reg + 0x4) argument 20 #define FLCMCDR(f) (f->reg + 0x8) argument 21 #define FLADR(f) (f->reg + 0xC) argument 22 #define FLADR2(f) (f->reg + 0x3C) argument 23 #define FLDATAR(f) (f->reg + 0x10) argument 24 #define FLDTCNTR(f) (f->reg + 0x14) argument 26 #define FLBSYTMR(f) (f->reg + 0x1C) argument 27 #define FLBSYCNT(f) (f->reg + 0x20) argument 28 #define FLDTFIFO(f) (f->reg + 0x24) argument [all …]
|
| /include/media/ |
| A D | v4l2-device.h | 296 if ((cond) && (sd)->ops->o && (sd)->ops->o->f) \ 297 (sd)->ops->o->f((sd) , ##args); \ 323 f , ##args); \ 355 if ((cond) && (sd)->ops->o && (sd)->ops->o->f) \ 356 __err = (sd)->ops->o->f((sd) , ##args); \ 389 f , ##args); \ 417 (grpid) == 0 || __sd->grp_id == (grpid), o, f , \ 478 f , ##args); \ 509 f , ##args); \ 533 if (v4l2_subdev_has_op(__sd, o, f)) { \ [all …]
|
| A D | v4l2-ioctl.h | 311 struct v4l2_fmtdesc *f); 313 struct v4l2_fmtdesc *f); 317 struct v4l2_format *f); 319 struct v4l2_format *f); 321 struct v4l2_format *f); 325 struct v4l2_format *f); 327 struct v4l2_format *f); 329 struct v4l2_format *f); 331 struct v4l2_format *f); 349 struct v4l2_format *f); [all …]
|
| A D | videobuf2-dvb.h | 53 int vb2_dvb_register_bus(struct vb2_dvb_frontends *f, 61 void vb2_dvb_unregister_bus(struct vb2_dvb_frontends *f); 63 struct vb2_dvb_frontend *vb2_dvb_alloc_frontend(struct vb2_dvb_frontends *f, int id); 64 void vb2_dvb_dealloc_frontends(struct vb2_dvb_frontends *f); 66 struct vb2_dvb_frontend *vb2_dvb_get_frontend(struct vb2_dvb_frontends *f, int id); 67 int vb2_dvb_find_frontend(struct vb2_dvb_frontends *f, struct dvb_frontend *p);
|
| /include/uapi/linux/ |
| A D | if_tunnel.h | 35 #define GRE_IS_CSUM(f) ((f) & GRE_CSUM) argument 36 #define GRE_IS_ROUTING(f) ((f) & GRE_ROUTING) argument 37 #define GRE_IS_KEY(f) ((f) & GRE_KEY) argument 38 #define GRE_IS_SEQ(f) ((f) & GRE_SEQ) argument 39 #define GRE_IS_STRICT(f) ((f) & GRE_STRICT) argument 40 #define GRE_IS_REC(f) ((f) & GRE_REC) argument 41 #define GRE_IS_ACK(f) ((f) & GRE_ACK) argument
|
| /include/linux/mmc/ |
| A D | sdio_func.h | 62 #define sdio_func_present(f) ((f)->state & SDIO_STATE_PRESENT) argument 64 #define sdio_func_set_present(f) ((f)->state |= SDIO_STATE_PRESENT) argument 66 #define sdio_func_id(f) (dev_name(&(f)->dev)) argument 68 #define sdio_get_drvdata(f) dev_get_drvdata(&(f)->dev) argument 69 #define sdio_set_drvdata(f,d) dev_set_drvdata(&(f)->dev, d) argument
|
| /include/dt-bindings/pinctrl/ |
| A D | r7s72100-pinctrl.h | 15 #define RZA1_PINMUX(b, p, f) ((b) * RZA1_PINS_PER_PORT + (p) | (f << 16)) argument
|
| A D | rzg2l-pinctrl.h | 18 #define RZG2L_PORT_PINMUX(b, p, f) ((b) * RZG2L_PINS_PER_PORT + (p) | ((f) << 16)) argument
|
| A D | rzv2m-pinctrl.h | 18 #define RZV2M_PORT_PINMUX(b, p, f) ((b) * RZV2M_PINS_PER_PORT + (p) | ((f) << 16)) argument
|
| A D | renesas,r9a09g057-pinctrl.h | 28 #define RZV2H_PORT_PINMUX(b, p, f) RZG2L_PORT_PINMUX(RZV2H_P##b, p, f) argument
|
| A D | r7s9210-pinctrl.h | 40 #define RZA2_PINMUX(b, p, f) ((b) * RZA2_PINS_PER_PORT + (p) | (f << 16)) argument
|
| A D | renesas,r9a09g047-pinctrl.h | 38 #define RZG3E_PORT_PINMUX(b, p, f) RZG2L_PORT_PINMUX(RZG3E_P##b, p, f) argument
|
| /include/video/ |
| A D | trident.h | 8 #define debug(f, a...) printk("%s:" f, __func__ , ## a); argument 10 #define debug(f, a...) argument 13 #define output(f, a...) pr_info("tridentfb: " f, ## a) argument
|
| /include/crypto/internal/ |
| A D | blake2b.h | 23 state->f[0] = -1; in blake2b_set_lastblock() 24 state->f[1] = 0; in blake2b_set_lastblock() 29 state->f[0] = 0; in blake2b_set_nonlast() 30 state->f[1] = 0; in blake2b_set_nonlast()
|
| /include/acpi/platform/ |
| A D | aclinux.h | 120 #define ACPI_OFFSET(d, f) offsetof(d, f) argument 187 #define ACPI_OFFSET(d, f) offsetof(d, f) argument
|