/include/linux/isdn/ |
D | capiutil.h | 19 #define CAPIMSG_U8(m, off) (m[off]) argument 20 #define CAPIMSG_U16(m, off) (m[off]|(m[(off)+1]<<8)) argument 21 #define CAPIMSG_U32(m, off) (m[off]|(m[(off)+1]<<8)|(m[(off)+2]<<16)|(m[(off)+3]<<24)) argument 33 static inline void capimsg_setu8(void *m, int off, __u8 val) in capimsg_setu8() argument 35 ((__u8 *)m)[off] = val; in capimsg_setu8() 38 static inline void capimsg_setu16(void *m, int off, __u16 val) in capimsg_setu16() argument 40 ((__u8 *)m)[off] = val & 0xff; in capimsg_setu16() 41 ((__u8 *)m)[off+1] = (val >> 8) & 0xff; in capimsg_setu16() 44 static inline void capimsg_setu32(void *m, int off, __u32 val) in capimsg_setu32() argument 46 ((__u8 *)m)[off] = val & 0xff; in capimsg_setu32() [all …]
|
/include/trace/events/ |
D | percpu.h | 15 size_t align, void *base_addr, int off, 18 TP_ARGS(call_site, reserved, is_atomic, size, align, base_addr, off, 28 __field( int, off ) 40 __entry->off = off; 50 __entry->base_addr, __entry->off, __entry->ptr, 56 TP_PROTO(void *base_addr, int off, void __percpu *ptr), 58 TP_ARGS(base_addr, off, ptr), 62 __field( int, off ) 68 __entry->off = off; 73 __entry->base_addr, __entry->off, __entry->ptr)
|
/include/linux/reset/ |
D | bcm63xx_pmb.h | 34 u32 off, u32 op) in __bpcm_do_op() argument 39 cmd = (PMC_PMBM_START | op | (addr & 0xff) << 12 | off); in __bpcm_do_op() 59 u32 off, u32 *val) in bpcm_rd() argument 63 ret = __bpcm_do_op(master, addr, off >> 2, PMC_PMBM_READ); in bpcm_rd() 70 u32 off, u32 val) in bpcm_wr() argument 75 ret = __bpcm_do_op(master, addr, off >> 2, PMC_PMBM_WRITE); in bpcm_wr()
|
/include/linux/mfd/ |
D | rz-mtu3.h | 179 u8 rz_mtu3_8bit_ch_read(struct rz_mtu3_channel *ch, u16 off); 180 u16 rz_mtu3_16bit_ch_read(struct rz_mtu3_channel *ch, u16 off); 181 u32 rz_mtu3_32bit_ch_read(struct rz_mtu3_channel *ch, u16 off); 182 u16 rz_mtu3_shared_reg_read(struct rz_mtu3_channel *ch, u16 off); 184 void rz_mtu3_8bit_ch_write(struct rz_mtu3_channel *ch, u16 off, u8 val); 185 void rz_mtu3_16bit_ch_write(struct rz_mtu3_channel *ch, u16 off, u16 val); 186 void rz_mtu3_32bit_ch_write(struct rz_mtu3_channel *ch, u16 off, u32 val); 187 void rz_mtu3_shared_reg_write(struct rz_mtu3_channel *ch, u16 off, u16 val); 188 void rz_mtu3_shared_reg_update_bit(struct rz_mtu3_channel *ch, u16 off,
|
/include/net/netfilter/ |
D | nf_conntrack_seqadj.h | 35 s32 off); 37 __be32 seq, s32 off); 39 enum ip_conntrack_info ctinfo, s32 off);
|
/include/linux/ |
D | filter.h | 101 .off = OFF, \ 112 .off = OFF, \ 125 .off = 0, \ 133 .off = 0, \ 143 .off = 0, \ 153 .off = 0, \ 161 .off = 0, \ 171 .off = 0, \ 179 .off = 0, \ 188 .off = 0, \ [all …]
|
D | compiler.h | 166 # define RELOC_HIDE(ptr, off) \ argument 169 (typeof(ptr)) (__ptr + (off)); }) 223 static inline void *offset_to_ptr(const int *off) in offset_to_ptr() argument 225 return (void *)((unsigned long)off + *off); in offset_to_ptr()
|
D | icmp.h | 41 int thlen, int off);
|
D | compiler-gcc.h | 31 #define RELOC_HIDE(ptr, off) \ argument 35 (typeof(ptr)) (__ptr + (off)); \
|
D | virtio_net.h | 98 u32 off = __virtio16_to_cpu(little_endian, hdr->csum_offset); in virtio_net_hdr_to_skb() local 99 u32 needed = start + max_t(u32, thlen, off + sizeof(__sum16)); in virtio_net_hdr_to_skb() 104 if (!skb_partial_csum_set(skb, start, off)) in virtio_net_hdr_to_skb()
|
D | vfio_pci_core.h | 23 #define VFIO_PCI_OFFSET_TO_INDEX(off) (off >> VFIO_PCI_OFFSET_SHIFT) argument
|
D | bpf.h | 132 u64 *imm, u32 off); 134 u64 imm, u32 *off); 946 bool (*is_valid_access)(int off, int size, enum bpf_access_type type, 959 int off, int size); 969 int (*replace_insn)(struct bpf_verifier_env *env, u32 off, 971 int (*remove_insns)(struct bpf_verifier_env *env, u32 off, u32 cnt); 1835 unsigned long off, unsigned long len); 2410 bool btf_ctx_access(int off, int size, enum bpf_access_type type, 2414 static inline bool bpf_tracing_ctx_access(int off, int size, in bpf_tracing_ctx_access() argument 2417 if (off < 0 || off >= sizeof(__u64) * MAX_BPF_FUNC_ARGS) in bpf_tracing_ctx_access() [all …]
|
/include/net/tc_act/ |
D | tc_pedit.h | 110 u32 off; in tcf_pedit_offset() local 114 off = parms->tcfp_keys[index].off; in tcf_pedit_offset() 117 return off; in tcf_pedit_offset()
|
/include/linux/ceph/ |
D | striper.h | 11 u64 off, u64 len, 36 int ceph_file_to_extents(struct ceph_file_layout *l, u64 off, u64 len, 42 int ceph_iterate_extents(struct ceph_file_layout *l, u64 off, u64 len,
|
D | libceph.h | 180 static inline int calc_pages_for(u64 off, u64 len) in calc_pages_for() argument 182 return ((off+len+PAGE_SIZE-1) >> PAGE_SHIFT) - in calc_pages_for() 183 (off >> PAGE_SHIFT); in calc_pages_for() 322 loff_t off, size_t len); 325 loff_t off, size_t len); 328 loff_t off, size_t len); 329 extern void ceph_zero_page_vector_range(int off, int len, struct page **pages);
|
/include/net/ |
D | udplite.h | 69 const int off = skb_transport_offset(skb); in udplite_csum() local 71 int len = skb->len - off; in udplite_csum() 84 return skb_checksum(skb, off, len, 0); in udplite_csum()
|
D | gro.h | 315 unsigned int off, size_t hdrlen, in skb_gro_remcsum_process() argument 326 NAPI_GRO_CB(skb)->gro_remcsum_start = off + hdrlen + start; in skb_gro_remcsum_process() 330 ptr = skb_gro_header(skb, off + plen, off); in skb_gro_remcsum_process() 340 grc->offset = off + hdrlen + offset; in skb_gro_remcsum_process() 424 unsigned int hlen, off; in udp_gro_udphdr() local 426 off = skb_gro_offset(skb); in udp_gro_udphdr() 427 hlen = off + sizeof(*uh); in udp_gro_udphdr() 428 uh = skb_gro_header(skb, hlen, off); in udp_gro_udphdr()
|
/include/uapi/linux/tc_ematch/ |
D | tc_em_nbyte.h | 9 __u16 off; member
|
D | tc_em_cmp.h | 11 __u16 off; member
|
/include/uapi/linux/ |
D | cachefiles.h | 58 __u64 off; member
|
D | mman.h | 46 __u64 off; member
|
/include/uapi/linux/tc_act/ |
D | tc_pedit.h | 55 __u32 off; /*offset */ member
|
/include/crypto/ |
D | algapi.h | 236 static inline u32 crypto_requires_off(struct crypto_attr_type *algt, u32 off) in crypto_requires_off() argument 238 return (algt->type ^ off) & algt->mask & off; in crypto_requires_off()
|
/include/video/ |
D | pm3fb.h | 70 #define PM3ByApertureMode_PATCH_OFFSET_X(off) (((off) & 0x7f) << 9) argument 71 #define PM3ByApertureMode_PATCH_OFFSET_Y(off) (((off) & 0x7f) << 16) argument 147 #define PM3VideoControl_PATCH_OFFSET_X(off) (((off) & 0x3f) << 22) argument 148 #define PM3VideoControl_PATCH_OFFSET_Y(off) (((off) & 0x3f) << 28) argument
|
/include/linux/lockd/ |
D | xdr4.h | 25 void nlm4svc_set_file_lock_range(struct file_lock *fl, u64 off, u64 len);
|