Home
last modified time | relevance | path

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

12

/openbmc/u-boot/arch/arm/mach-snapdragon/
H A Dmisc.c16 const int __size = size; \
17 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \
23 if (__size + __shft > 32) \
/openbmc/linux/include/linux/
H A Dregset.h67 size_t __size = sizeof(__v); \
68 if (unlikely(__size > __s->left)) { \
69 __size = __s->left; \
70 memcpy(__s->p, &__v, __size); \
74 __s->p += __size; \
75 __s->left -= __size; \
H A Dfilter.h457 const int __size = bytes_to_bpf_size(sizeof(type)); \
458 BUILD_BUG_ON(__size < 0); \
459 __size; \
464 const int __size = bytes_to_bpf_size(sizeof_field(type, field)); \
465 BUILD_BUG_ON(__size < 0); \
466 __size; \
471 const int __size = bpf_size_to_bytes(BPF_SIZE((insn)->code)); \
472 WARN_ON(__size < 0); \
473 __size; \
H A Dsocket.h153 static inline struct cmsghdr * __cmsg_nxthdr(void *__ctl, __kernel_size_t __size, in __cmsg_nxthdr() argument
159 if ((unsigned long)((char*)(__ptr+1) - (char *) __ctl) > __size) in __cmsg_nxthdr()
/openbmc/linux/arch/sparc/include/asm/
H A Dstring.h27 size_t __size = (__arg2); \
30 __retval = __memscan_zero(__addr, __size); \
32 __retval = __memscan_generic(__addr, (__char), __size); \
/openbmc/linux/include/xen/interface/io/
H A Dring.h139 #define FRONT_RING_ATTACH(_r, _s, _i, __size) do { \ argument
142 (_r)->nr_ents = __RING_SIZE(_s, __size); \
146 #define FRONT_RING_INIT(_r, _s, __size) FRONT_RING_ATTACH(_r, _s, 0, __size) argument
153 #define BACK_RING_ATTACH(_r, _s, _i, __size) do { \ argument
156 (_r)->nr_ents = __RING_SIZE(_s, __size); \
160 #define BACK_RING_INIT(_r, _s, __size) BACK_RING_ATTACH(_r, _s, 0, __size) argument
/openbmc/qemu/include/hw/xen/interface/io/
H A Dring.h160 #define FRONT_RING_ATTACH(_r, _s, _i, __size) do { \ argument
163 (_r)->nr_ents = __RING_SIZE(_s, __size); \
167 #define FRONT_RING_INIT(_r, _s, __size) FRONT_RING_ATTACH(_r, _s, 0, __size) argument
174 #define BACK_RING_ATTACH(_r, _s, _i, __size) do { \ argument
177 (_r)->nr_ents = __RING_SIZE(_s, __size); \
181 #define BACK_RING_INIT(_r, _s, __size) BACK_RING_ATTACH(_r, _s, 0, __size) argument
/openbmc/linux/arch/arm/mach-sa1100/
H A Dgeneric.h17 #define SET_BANK(__nr,__start,__size) \ argument
19 mi->bank[__nr].size = (__size)
/openbmc/linux/arch/arm/mach-pxa/
H A Dgeneric.h18 #define SET_BANK(__nr,__start,__size) \ argument
20 mi->bank[__nr].size = (__size)
/openbmc/linux/include/linux/netfilter_arp/
H A Darp_tables.h29 #define ARPT_ENTRY_INIT(__size) \ argument
32 .next_offset = (__size), \
/openbmc/linux/include/linux/netfilter_ipv4/
H A Dip_tables.h43 #define IPT_ENTRY_INIT(__size) \ argument
46 .next_offset = (__size), \
/openbmc/sdbusplus/include/sdbusplus/async/stdexec/__detail/
H A D__meta.hpp196 constexpr std::size_t __mpow2(std::size_t __size) noexcept in __mpow2() argument
198 --__size; in __mpow2()
199 __size |= __size >> 1; in __mpow2()
200 __size |= __size >> 2; in __mpow2()
201 __size |= __size >> 4; in __mpow2()
202 __size |= __size >> 8; in __mpow2()
203 if constexpr (sizeof(__size) >= 4) in __mpow2()
204 __size |= __size >> 16; in __mpow2()
205 if constexpr (sizeof(__size) >= 8) in __mpow2()
206 __size |= __size >> 32; in __mpow2()
[all …]
/openbmc/u-boot/include/
H A Dsearch.h93 const char __sep, int __flag, char **__resp, size_t __size,
101 const char *__env, size_t __size, const char __sep,
/openbmc/linux/include/uapi/linux/netfilter/
H A Dx_tables.h57 #define XT_TARGET_INIT(__name, __size) \ argument
60 .target_size = XT_ALIGN(__size), \
/openbmc/linux/include/uapi/linux/netfilter_ipv6/
H A Dip6_tables.h142 #define IP6T_ENTRY_INIT(__size) \ argument
145 .next_offset = (__size), \
/openbmc/linux/tools/include/nolibc/
H A Dtypes.h155 int __size = (FD_SETSIZE+FD_SETBITMASK) / FD_SETIDXMASK;\
156 for (__idx = 0; __idx < __size; __idx++) \
/openbmc/linux/kernel/trace/
H A Dtrace_fprobe.c282 int size, __size, dsize; in fentry_perf_func() local
290 __size = sizeof(*entry) + tf->tp.size + dsize; in fentry_perf_func()
291 size = ALIGN(__size + sizeof(u32), sizeof(u64)); in fentry_perf_func()
315 int size, __size, dsize; in fexit_perf_func() local
323 __size = sizeof(*entry) + tf->tp.size + dsize; in fexit_perf_func()
324 size = ALIGN(__size + sizeof(u32), sizeof(u64)); in fexit_perf_func()
H A Dtrace_kprobe.c1576 int size, __size, dsize; in kprobe_perf_func() local
1601 __size = sizeof(*entry) + tk->tp.size + dsize; in kprobe_perf_func()
1602 size = ALIGN(__size + sizeof(u32), sizeof(u64)); in kprobe_perf_func()
1626 int size, __size, dsize; in kretprobe_perf_func() local
1637 __size = sizeof(*entry) + tk->tp.size + dsize; in kretprobe_perf_func()
1638 size = ALIGN(__size + sizeof(u32), sizeof(u64)); in kretprobe_perf_func()
/openbmc/linux/drivers/net/wireless/ralink/rt2x00/
H A Drt2x00.h84 #define GET_DURATION(__size, __rate) (((__size) * 8 * 10) / (__rate)) argument
85 #define GET_DURATION_RES(__size, __rate)(((__size) * 8 * 10) % (__rate)) argument
/openbmc/linux/tools/perf/trace/beauty/include/linux/
H A Dsocket.h153 static inline struct cmsghdr * __cmsg_nxthdr(void *__ctl, __kernel_size_t __size, in __cmsg_nxthdr() argument
159 if ((unsigned long)((char*)(__ptr+1) - (char *) __ctl) > __size) in __cmsg_nxthdr()
/openbmc/linux/arch/arm/include/asm/
H A Duaccess.h361 #define __put_user_nocheck(x, __pu_ptr, __err, __size) \ argument
364 __put_user_nocheck_##__size(x, __pu_addr, __err, TUSER());\
/openbmc/linux/include/kunit/
H A Dtest.h780 const size_t __size = (size_); \
788 if (likely(memcmp(__left, __right, __size) op 0)) \
798 .size = __size), \
/openbmc/linux/include/net/netfilter/
H A Dnf_tables.h522 #define nft_setelem_expr_foreach(__expr, __elem_expr, __size) \ argument
523 for (__expr = nft_setelem_expr_at(__elem_expr, 0), __size = 0; \
524 __size < (__elem_expr)->size; \
525 __size += (__expr)->ops->size, __expr = ((void *)(__expr)) + (__expr)->ops->size)
/openbmc/linux/drivers/scsi/bfa/
H A Dbfa.h65 #define CQ_INCR(__index, __size) do { \ argument
67 (__index) &= ((__size) - 1); \
/openbmc/linux/drivers/mmc/core/
H A Dsd.c61 const int __size = size; \
62 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \
68 if (__size + __shft > 32) \

12