Home
last modified time | relevance | path

Searched refs:srcp (Results 1 – 25 of 33) sorted by relevance

12

/linux/arch/nios2/lib/
H A Dmemcpy.c72 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/rust/helpers/
H A Dcpumask.c30 bool rust_helper_cpumask_test_cpu(int cpu, struct cpumask *srcp) in rust_helper_cpumask_setall()
32 return cpumask_test_cpu(cpu, srcp); in rust_helper_cpumask_setall()
42 bool rust_helper_cpumask_empty(struct cpumask *srcp) in rust_helper_cpumask_full()
44 return cpumask_empty(srcp);
48 bool rust_helper_cpumask_full(struct cpumask *srcp) in rust_helper_cpumask_weight()
50 return cpumask_full(srcp); in rust_helper_cpumask_copy() argument
54 unsigned int rust_helper_cpumask_weight(struct cpumask *srcp)
56 return cpumask_weight(srcp); in rust_helper_alloc_cpumask_var()
60 void rust_helper_cpumask_copy(struct cpumask *dstp, const struct cpumask *srcp) in rust_helper_zalloc_cpumask_var()
62 cpumask_copy(dstp, srcp); in rust_helper_zalloc_cpumask_var()
25 rust_helper_cpumask_test_cpu(int cpu,struct cpumask * srcp) rust_helper_cpumask_test_cpu() argument
35 rust_helper_cpumask_empty(struct cpumask * srcp) rust_helper_cpumask_empty() argument
40 rust_helper_cpumask_full(struct cpumask * srcp) rust_helper_cpumask_full() argument
45 rust_helper_cpumask_weight(struct cpumask * srcp) rust_helper_cpumask_weight() argument
[all...]
/linux/fs/smb/client/compress/
H A Dlz77.c134 const void *srcp, *end; in lz77_compress() local
140 srcp = src; in lz77_compress()
157 hash = ((lz77_read64(srcp) << 24) * 889523592379ULL) >> (64 - LZ77_HASH_LOG); in lz77_compress()
159 htable[hash] = srcp - src; in lz77_compress()
160 dist = srcp - wnd; in lz77_compress()
163 len = lz77_match_len(wnd, srcp, end); in lz77_compress()
166 lz77_write8(dstp, lz77_read8(srcp)); in lz77_compress()
169 srcp++; in lz77_compress()
193 srcp += len; in lz77_compress()
203 } while (likely(srcp + LZ77_STEP_SIZE < end)); in lz77_compress()
[all …]
/linux/tools/testing/selftests/powerpc/copyloops/
H A Dvalidate.c25 char *srcp, *dstp; in do_one() local
29 srcp = src + MIN_REDZONE + src_off; in do_one()
34 memcpy(srcp, fill, len); in do_one()
36 ret = COPY_LOOP(dstp, srcp, len); in do_one()
38 printf("(%p,%p,%ld) returned %ld\n", dstp, srcp, len, ret); in do_one()
42 if (memcmp(dstp, srcp, len)) { in do_one()
43 printf("(%p,%p,%ld) miscompare\n", dstp, srcp, len); in do_one()
46 printf("%02x ", srcp[i]); in do_one()
56 dstp, srcp, len); in do_one()
62 dstp, srcp, len); in do_one()
H A Dexc_validate.c60 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/include/linux/
H A Dcpumask.h155 static __always_inline unsigned int cpumask_first(const struct cpumask *srcp) in cpumask_first() argument
157 return find_first_bit(cpumask_bits(srcp), small_cpumask_bits); in cpumask_first()
166 static __always_inline unsigned int cpumask_first_zero(const struct cpumask *srcp) in cpumask_first_zero() argument
168 return find_first_zero_bit(cpumask_bits(srcp), small_cpumask_bits); in cpumask_first_zero()
220 static __always_inline unsigned int cpumask_last(const struct cpumask *srcp) in cpumask_last() argument
222 return find_last_bit(cpumask_bits(srcp), small_cpumask_bits); in cpumask_last()
233 unsigned int cpumask_next(int n, const struct cpumask *srcp) in cpumask_next() argument
238 return find_next_bit(cpumask_bits(srcp), small_cpumask_bits, n + 1); in cpumask_next()
249 unsigned int cpumask_next_zero(int n, const struct cpumask *srcp) in cpumask_next_zero() argument
254 return find_next_zero_bit(cpumask_bits(srcp), small_cpumask_bits, n+1); in cpumask_next_zero()
[all …]
H A Dnodemask.h192 const nodemask_t *srcp, unsigned int nbits) in __nodes_copy() argument
194 bitmap_copy(dstp->bits, srcp->bits, nbits); in __nodes_copy()
200 const nodemask_t *srcp, unsigned int nbits) in __nodes_complement() argument
202 bitmap_complement(dstp->bits, srcp->bits, nbits); in __nodes_complement()
230 static __always_inline bool __nodes_empty(const nodemask_t *srcp, unsigned int nbits) in __nodes_empty() argument
232 return bitmap_empty(srcp->bits, nbits); in __nodes_empty()
236 static __always_inline bool __nodes_full(const nodemask_t *srcp, unsigned int nbits) in __nodes_full() argument
238 return bitmap_full(srcp->bits, nbits); in __nodes_full()
242 static __always_inline int __nodes_weight(const nodemask_t *srcp, unsigned int nbits) in __nodes_weight() argument
244 return bitmap_weight(srcp->bits, nbits); in __nodes_weight()
[all …]
H A Ddmaengine.h1438 __dma_has_cap(enum dma_transaction_type tx_type, dma_cap_mask_t *srcp) in __dma_has_cap() argument
1440 return test_bit(tx_type, srcp->bits); in __dma_has_cap()
/linux/tools/testing/selftests/bpf/progs/
H A Dsock_destroy_prog.c80 __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()
H A Dbpf_iter_tcp4.c82 __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()
H A Dbpf_iter_tcp6.c83 __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()
H A Dbpf_iter_udp4.c30 __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()
H A Dbpf_iter_udp6.c39 __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/sound/synth/emux/
H A Demux_effect.c168 unsigned char *srcp, *origp; in snd_emux_send_effect() local
202 srcp = (unsigned char *)&vp->reg.parm + offset; in snd_emux_send_effect()
205 *srcp = *origp; in snd_emux_send_effect()
206 effect_set_byte(srcp, chan, type); in snd_emux_send_effect()
208 *(unsigned short *)srcp = *(unsigned short *)origp; in snd_emux_send_effect()
209 effect_set_word((unsigned short *)srcp, chan, type); in snd_emux_send_effect()
225 unsigned char *srcp; in snd_emux_setup_effect() local
247 srcp = (unsigned char*)&vp->reg.parm + offset; in snd_emux_setup_effect()
249 effect_set_byte(srcp, chan, i); in snd_emux_setup_effect()
251 effect_set_word((unsigned short*)srcp, chan, i); in snd_emux_setup_effect()
/linux/include/net/
H A Dtransp_v6.h48 __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/lib/
H A Dcpumask.c156 unsigned int cpumask_any_distribute(const struct cpumask *srcp) in cpumask_any_distribute() argument
162 next = cpumask_next_wrap(prev, srcp); in cpumask_any_distribute()
/linux/net/sunrpc/xprtrdma/
H A Drpc_rdma.c1040 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/net/ipv6/
H A Dping.c240 __u16 srcp = ntohs(inet->inet_sport); in ping_v6_seq_show() local
242 ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket); in ping_v6_seq_show()
H A Dtcp_ipv6.c2131 __u16 destp, srcp; local
2145 srcp = ntohs(inet->inet_sport);
2179 src->s6_addr32[2], src->s6_addr32[3], srcp,
2207 __u16 destp, srcp; local
2212 srcp = ntohs(tw->tw_sport);
2219 src->s6_addr32[2], src->s6_addr32[3], srcp,
H A Ddatagram.c1060 __u16 srcp, __u16 destp, int rqueue, int bucket) in __ip6_dgram_sock_seq_show()
1071 src->s6_addr32[2], src->s6_addr32[3], srcp, in __ip6_dgram_sock_seq_show()
1050 __ip6_dgram_sock_seq_show(struct seq_file * seq,struct sock * sp,__u16 srcp,__u16 destp,int rqueue,int bucket) __ip6_dgram_sock_seq_show() argument
H A Draw.c1230 __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/drivers/scsi/bnx2i/
H A Dbnx2i_iscsi.c1133 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/tools/testing/selftests/arm64/abi/
H A Dhwcap.c197 register char *srcp asm ("x1") = src; in mops_sigill()
202 : "+r" (dstp), "+r" (srcp), "+r" (size) in mops_sigill()
/linux/drivers/scsi/qedi/
H A Dqedi_fw.c1897 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/net/ipv4/
H A Draw.c1041 srcp = inet->inet_num; in raw_sock_seq_show() local
1045 i, src, srcp, dest, destp, sp->sk_state, in raw_sock_seq_show()

12