Home
last modified time | relevance | path

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

/include/xen/interface/io/
Dring.h157 #define FRONT_RING_ATTACH(_r, _s, _i, __size) do { \ argument
160 (_r)->nr_ents = __RING_SIZE(_s, __size); \
164 #define FRONT_RING_INIT(_r, _s, __size) FRONT_RING_ATTACH(_r, _s, 0, __size) argument
166 #define BACK_RING_ATTACH(_r, _s, _i, __size) do { \ argument
169 (_r)->nr_ents = __RING_SIZE(_s, __size); \
173 #define BACK_RING_INIT(_r, _s, __size) BACK_RING_ATTACH(_r, _s, 0, __size) argument
/include/linux/netfilter_arp/
Darp_tables.h29 #define ARPT_ENTRY_INIT(__size) \ argument
32 .next_offset = (__size), \
/include/linux/netfilter_ipv4/
Dip_tables.h42 #define IPT_ENTRY_INIT(__size) \ argument
45 .next_offset = (__size), \
/include/uapi/linux/netfilter/
Dx_tables.h57 #define XT_TARGET_INIT(__name, __size) \ argument
60 .target_size = XT_ALIGN(__size), \
/include/uapi/linux/netfilter_ipv6/
Dip6_tables.h142 #define IP6T_ENTRY_INIT(__size) \ argument
145 .next_offset = (__size), \
/include/linux/
Dfilter.h428 const int __size = bytes_to_bpf_size(sizeof(type)); \
429 BUILD_BUG_ON(__size < 0); \
430 __size; \
435 const int __size = bytes_to_bpf_size(FIELD_SIZEOF(type, field)); \
436 BUILD_BUG_ON(__size < 0); \
437 __size; \
442 const int __size = bpf_size_to_bytes(BPF_SIZE((insn)->code)); \
443 WARN_ON(__size < 0); \
444 __size; \
Dsocket.h127 static inline struct cmsghdr * __cmsg_nxthdr(void *__ctl, __kernel_size_t __size, in __cmsg_nxthdr() argument
133 if ((unsigned long)((char*)(__ptr+1) - (char *) __ctl) > __size) in __cmsg_nxthdr()