| /linux/arch/nios2/lib/ |
| H A 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/rust/helpers/ |
| H A D | cpumask.c | 25 bool rust_helper_cpumask_test_cpu(int cpu, struct cpumask *srcp) in rust_helper_cpumask_test_cpu() argument 27 return cpumask_test_cpu(cpu, srcp); in rust_helper_cpumask_test_cpu() 35 bool rust_helper_cpumask_empty(struct cpumask *srcp) in rust_helper_cpumask_empty() argument 37 return cpumask_empty(srcp); in rust_helper_cpumask_empty() 40 bool rust_helper_cpumask_full(struct cpumask *srcp) in rust_helper_cpumask_full() argument 42 return cpumask_full(srcp); in rust_helper_cpumask_full() 45 unsigned int rust_helper_cpumask_weight(struct cpumask *srcp) in rust_helper_cpumask_weight() argument 47 return cpumask_weight(srcp); in rust_helper_cpumask_weight() 50 void rust_helper_cpumask_copy(struct cpumask *dstp, const struct cpumask *srcp) in rust_helper_cpumask_copy() argument 52 cpumask_copy(dstp, srcp); in rust_helper_cpumask_copy()
|
| /linux/fs/smb/client/compress/ |
| H A D | lz77.c | 134 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 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()
|
| H A 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/include/linux/ |
| H A D | cpumask.h | 155 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 D | nodemask.h | 192 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 D | dmaengine.h | 1438 __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 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()
|
| H A 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()
|
| H A 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()
|
| /linux/include/net/ |
| H A 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/net/sunrpc/xprtrdma/ |
| H A 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/tools/testing/selftests/arm64/abi/ |
| H A D | hwcap.c | 195 register char *srcp asm ("x1") = src; in mops_sigill() 200 : "+r" (dstp), "+r" (srcp), "+r" (size) in mops_sigill()
|
| /linux/drivers/scsi/bnx2i/ |
| H A 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/net/ipv6/ |
| H A D | tcp_ipv6.c | 2145 __u16 destp, srcp; 2159 srcp = ntohs(inet->inet_sport); 2193 src->s6_addr32[2], src->s6_addr32[3], srcp, 2221 __u16 destp, srcp; 2226 srcp = ntohs(tw->tw_sport); 2233 src->s6_addr32[2], src->s6_addr32[3], srcp, 2190 __u16 destp, srcp; global() local 2266 __u16 destp, srcp; global() local
|
| /linux/drivers/scsi/qedi/ |
| H A 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/net/ipv4/ |
| H A D | udp.c | 3407 __u16 srcp = ntohs(inet->inet_sport); in udp4_format_sock() local 3411 bucket, src, srcp, dest, destp, sp->sk_state, in udp4_format_sock()
|
| /linux/drivers/scsi/lpfc/ |
| H A D | lpfc_sli.c | 240 lpfc_sli4_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt) in lpfc_sli4_pcimem_bcopy() argument 242 uint64_t *src = srcp; in lpfc_sli4_pcimem_bcopy() 12180 lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt) in lpfc_sli_pcimem_bcopy() argument 12182 uint32_t *src = srcp; in lpfc_sli_pcimem_bcopy() 12208 lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt) in lpfc_sli_bemem_bcopy() argument 12210 uint32_t *src = srcp; in lpfc_sli_bemem_bcopy()
|