/linux-6.6.21/arch/nios2/lib/ |
D | memcpy.c | 72 static void _wordcopy_fwd_aligned(long int dstp, long int srcp, size_t len) in _wordcopy_fwd_aligned() argument 77 a0 = ((op_t *) srcp)[0]; in _wordcopy_fwd_aligned() 78 a1 = ((op_t *) srcp)[1]; in _wordcopy_fwd_aligned() 79 a2 = ((op_t *) srcp)[2]; in _wordcopy_fwd_aligned() 80 a3 = ((op_t *) srcp)[3]; in _wordcopy_fwd_aligned() 81 a4 = ((op_t *) srcp)[4]; in _wordcopy_fwd_aligned() 82 a5 = ((op_t *) srcp)[5]; in _wordcopy_fwd_aligned() 83 a6 = ((op_t *) srcp)[6]; in _wordcopy_fwd_aligned() 84 a7 = ((op_t *) srcp)[7]; in _wordcopy_fwd_aligned() 94 srcp += 8 * OPSIZ; in _wordcopy_fwd_aligned() [all …]
|
/linux-6.6.21/tools/testing/selftests/powerpc/copyloops/ |
D | validate.c | 21 char *srcp, *dstp; in do_one() local 25 srcp = src + MIN_REDZONE + src_off; in do_one() 30 memcpy(srcp, fill, len); in do_one() 32 ret = COPY_LOOP(dstp, srcp, len); in do_one() 34 printf("(%p,%p,%ld) returned %ld\n", dstp, srcp, len, ret); in do_one() 38 if (memcmp(dstp, srcp, len)) { in do_one() 39 printf("(%p,%p,%ld) miscompare\n", dstp, srcp, len); in do_one() 42 printf("%02x ", srcp[i]); in do_one() 52 dstp, srcp, len); in do_one() 58 dstp, srcp, len); in do_one()
|
D | exc_validate.c | 60 static void do_one_test(char *dstp, char *srcp, unsigned long len) in do_one_test() argument 64 got = COPY_LOOP(dstp, srcp, len); in do_one_test() 65 expected = test_copy_tofrom_user_reference(dstp, srcp, len); in do_one_test() 70 srcp, dstp, len, got, expected); in do_one_test()
|
/linux-6.6.21/include/linux/ |
D | cpumask.h | 160 static inline unsigned int cpumask_first(const struct cpumask *srcp) in cpumask_first() argument 162 return find_first_bit(cpumask_bits(srcp), small_cpumask_bits); in cpumask_first() 171 static inline unsigned int cpumask_first_zero(const struct cpumask *srcp) in cpumask_first_zero() argument 173 return find_first_zero_bit(cpumask_bits(srcp), small_cpumask_bits); in cpumask_first_zero() 195 static inline unsigned int cpumask_last(const struct cpumask *srcp) in cpumask_last() argument 197 return find_last_bit(cpumask_bits(srcp), small_cpumask_bits); in cpumask_last() 208 unsigned int cpumask_next(int n, const struct cpumask *srcp) in cpumask_next() argument 213 return find_next_bit(cpumask_bits(srcp), small_cpumask_bits, n + 1); in cpumask_next() 223 static inline unsigned int cpumask_next_zero(int n, const struct cpumask *srcp) in cpumask_next_zero() argument 228 return find_next_zero_bit(cpumask_bits(srcp), small_cpumask_bits, n+1); in cpumask_next_zero() [all …]
|
D | nodemask.h | 197 const nodemask_t *srcp, unsigned int nbits) in __nodes_complement() argument 199 bitmap_complement(dstp->bits, srcp->bits, nbits); in __nodes_complement() 227 static inline bool __nodes_empty(const nodemask_t *srcp, unsigned int nbits) in __nodes_empty() argument 229 return bitmap_empty(srcp->bits, nbits); in __nodes_empty() 233 static inline bool __nodes_full(const nodemask_t *srcp, unsigned int nbits) in __nodes_full() argument 235 return bitmap_full(srcp->bits, nbits); in __nodes_full() 239 static inline int __nodes_weight(const nodemask_t *srcp, unsigned int nbits) in __nodes_weight() argument 241 return bitmap_weight(srcp->bits, nbits); in __nodes_weight() 247 const nodemask_t *srcp, int n, int nbits) in __nodes_shift_right() argument 249 bitmap_shift_right(dstp->bits, srcp->bits, n, nbits); in __nodes_shift_right() [all …]
|
D | dmaengine.h | 1404 __dma_has_cap(enum dma_transaction_type tx_type, dma_cap_mask_t *srcp) in __dma_has_cap() argument 1406 return test_bit(tx_type, srcp->bits); in __dma_has_cap()
|
/linux-6.6.21/tools/testing/selftests/bpf/progs/ |
D | sock_destroy_prog.c | 80 __be16 srcp; in iter_tcp6_server() local 94 srcp = inet->inet_sport; in iter_tcp6_server() 97 if (srcp == serv_port) in iter_tcp6_server() 132 __be16 srcp; in iter_udp6_server() local 138 srcp = inet->inet_sport; in iter_udp6_server() 139 if (srcp == serv_port) in iter_udp6_server()
|
D | bpf_iter_tcp4.c | 82 __u16 destp, srcp; in dump_tcp_sock() local 96 srcp = bpf_ntohs(inet->inet_sport); in dump_tcp_sock() 124 seq_num, src, srcp, dest, destp); in dump_tcp_sock() 151 __u16 destp, srcp; in dump_tw_sock() local 159 srcp = bpf_ntohs(tw->tw_sport); in dump_tw_sock() 162 seq_num, src, srcp, dest, destp); in dump_tw_sock()
|
D | bpf_iter_tcp6.c | 83 __u16 destp, srcp; in dump_tcp6_sock() local 96 srcp = bpf_ntohs(inet->inet_sport); in dump_tcp6_sock() 126 src->s6_addr32[2], src->s6_addr32[3], srcp, in dump_tcp6_sock() 157 __u16 destp, srcp; in dump_tw_sock() local 164 srcp = bpf_ntohs(tw->tw_sport); in dump_tw_sock() 169 src->s6_addr32[2], src->s6_addr32[3], srcp, in dump_tw_sock()
|
D | bpf_iter_udp4.c | 30 __u16 srcp, destp; in dump_udp4() local 53 srcp = bpf_ntohs(inet->inet_sport); in dump_udp4() 58 ctx->bucket, src, srcp, dest, destp); in dump_udp4()
|
D | bpf_iter_udp6.c | 39 __u16 srcp, destp; in dump_udp6() local 55 srcp = bpf_ntohs(inet->inet_sport); in dump_udp6() 64 src->s6_addr32[2], src->s6_addr32[3], srcp, in dump_udp6()
|
/linux-6.6.21/sound/synth/emux/ |
D | emux_effect.c | 168 unsigned char *srcp, *origp; in snd_emux_send_effect() local 203 srcp = (unsigned char*)&vp->reg.parm + offset; in snd_emux_send_effect() 206 *srcp = *origp; in snd_emux_send_effect() 207 effect_set_byte(srcp, chan, type); in snd_emux_send_effect() 209 *(unsigned short*)srcp = *(unsigned short*)origp; in snd_emux_send_effect() 210 effect_set_word((unsigned short*)srcp, chan, type); in snd_emux_send_effect() 226 unsigned char *srcp; in snd_emux_setup_effect() local 248 srcp = (unsigned char*)&vp->reg.parm + offset; in snd_emux_setup_effect() 250 effect_set_byte(srcp, chan, i); in snd_emux_setup_effect() 252 effect_set_word((unsigned short*)srcp, chan, i); in snd_emux_setup_effect()
|
/linux-6.6.21/include/net/ |
D | transp_v6.h | 48 __u16 srcp, __u16 destp, int rqueue, int bucket); 50 ip6_dgram_sock_seq_show(struct seq_file *seq, struct sock *sp, __u16 srcp, in ip6_dgram_sock_seq_show() argument 53 __ip6_dgram_sock_seq_show(seq, sp, srcp, destp, sk_rmem_alloc_get(sp), in ip6_dgram_sock_seq_show()
|
/linux-6.6.21/lib/ |
D | cpumask.c | 187 unsigned int cpumask_any_distribute(const struct cpumask *srcp) in cpumask_any_distribute() argument 193 next = find_next_bit_wrap(cpumask_bits(srcp), nr_cpumask_bits, prev + 1); in cpumask_any_distribute()
|
/linux-6.6.21/net/sunrpc/xprtrdma/ |
D | rpc_rdma.c | 1040 rpcrdma_inline_fixup(struct rpc_rqst *rqst, char *srcp, int copy_len, int pad) in rpcrdma_inline_fixup() argument 1051 rqst->rq_rcv_buf.head[0].iov_base = srcp; in rpcrdma_inline_fixup() 1052 rqst->rq_private_buf.head[0].iov_base = srcp; in rpcrdma_inline_fixup() 1060 srcp += curlen; in rpcrdma_inline_fixup() 1080 memcpy(destp + page_base, srcp, curlen); in rpcrdma_inline_fixup() 1083 srcp += curlen; in rpcrdma_inline_fixup() 1099 srcp -= pad; in rpcrdma_inline_fixup() 1106 rqst->rq_rcv_buf.tail[0].iov_base = srcp; in rpcrdma_inline_fixup() 1107 rqst->rq_private_buf.tail[0].iov_base = srcp; in rpcrdma_inline_fixup()
|
/linux-6.6.21/net/ipv6/ |
D | ping.c | 243 __u16 srcp = ntohs(inet->inet_sport); in ping_v6_seq_show() local 245 ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket); in ping_v6_seq_show()
|
D | tcp_ipv6.c | 1995 __u16 destp, srcp; in get_tcp6_sock() local 2008 srcp = ntohs(inet->inet_sport); in get_tcp6_sock() 2041 src->s6_addr32[2], src->s6_addr32[3], srcp, in get_tcp6_sock() 2069 __u16 destp, srcp; in get_timewait6_sock() local 2074 srcp = ntohs(tw->tw_sport); in get_timewait6_sock() 2081 src->s6_addr32[2], src->s6_addr32[3], srcp, in get_timewait6_sock()
|
D | datagram.c | 1050 __u16 srcp, __u16 destp, int rqueue, int bucket) in __ip6_dgram_sock_seq_show() argument 1061 src->s6_addr32[2], src->s6_addr32[3], srcp, in __ip6_dgram_sock_seq_show()
|
D | raw.c | 1230 __u16 srcp = inet_sk(sp)->inet_num; in raw6_seq_show() local 1231 ip6_dgram_sock_seq_show(seq, v, srcp, 0, in raw6_seq_show()
|
/linux-6.6.21/tools/testing/selftests/arm64/abi/ |
D | hwcap.c | 88 register char *srcp asm ("x1") = src; in mops_sigill() 93 : "+r" (dstp), "+r" (srcp), "+r" (size) in mops_sigill()
|
/linux-6.6.21/drivers/scsi/bnx2i/ |
D | bnx2i_iscsi.c | 1133 u8 *srcp; in bnx2i_cpy_scsi_cdb() local 1142 srcp = (u8 *) sc->cmnd; in bnx2i_cpy_scsi_cdb() 1145 memcpy(&dword, (const void *) srcp, 4); in bnx2i_cpy_scsi_cdb() 1147 srcp += 4; in bnx2i_cpy_scsi_cdb() 1151 dword = (u32) srcp[0] | ((u32) srcp[1] << 8); in bnx2i_cpy_scsi_cdb()
|
/linux-6.6.21/drivers/scsi/qedi/ |
D | qedi_fw.c | 1897 u8 *srcp; in qedi_cpy_scsi_cdb() local 1900 srcp = (u8 *)sc->cmnd; in qedi_cpy_scsi_cdb() 1902 memcpy(&dword, (const void *)srcp, 4); in qedi_cpy_scsi_cdb() 1904 srcp += 4; in qedi_cpy_scsi_cdb() 1908 dword = (u32)srcp[0] | ((u32)srcp[1] << 8); in qedi_cpy_scsi_cdb()
|
/linux-6.6.21/net/ipv4/ |
D | raw.c | 1026 srcp = inet->inet_num; in raw_sock_seq_show() local 1030 i, src, srcp, dest, destp, sp->sk_state, in raw_sock_seq_show()
|
D | ping.c | 1122 __u16 srcp = ntohs(inet->inet_sport); in ping_v4_format_sock() local 1126 bucket, src, srcp, dest, destp, sp->sk_state, in ping_v4_format_sock()
|
D | tcp_ipv4.c | 2665 __u16 srcp = ntohs(inet->inet_sport); in get_tcp4_sock() local 2697 i, src, srcp, dest, destp, state, in get_tcp4_sock() 2721 __u16 destp, srcp; in get_timewait4_sock() local 2726 srcp = ntohs(tw->tw_sport); in get_timewait4_sock() 2730 i, src, srcp, dest, destp, tw->tw_substate, 0, 0, in get_timewait4_sock()
|