Home
last modified time | relevance | path

Searched refs:dstp (Results 1 – 18 of 18) sorted by relevance

/OK3568_Linux_fs/kernel/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
85 ((op_t *) dstp)[0] = a0; in _wordcopy_fwd_aligned()
86 ((op_t *) dstp)[1] = a1; in _wordcopy_fwd_aligned()
87 ((op_t *) dstp)[2] = a2; in _wordcopy_fwd_aligned()
88 ((op_t *) dstp)[3] = a3; in _wordcopy_fwd_aligned()
89 ((op_t *) dstp)[4] = a4; in _wordcopy_fwd_aligned()
90 ((op_t *) dstp)[5] = a5; in _wordcopy_fwd_aligned()
91 ((op_t *) dstp)[6] = a6; in _wordcopy_fwd_aligned()
92 ((op_t *) dstp)[7] = a7; in _wordcopy_fwd_aligned()
95 dstp += 8 * OPSIZ; in _wordcopy_fwd_aligned()
[all …]
/OK3568_Linux_fs/kernel/arch/parisc/lib/
H A Dmemset.c12 long int dstp = (long int) dstpp; in memset() local
28 while (dstp % OPSIZ != 0) in memset()
30 ((unsigned char *) dstp)[0] = c; in memset()
31 dstp += 1; in memset()
39 ((op_t *) dstp)[0] = cccc; in memset()
40 ((op_t *) dstp)[1] = cccc; in memset()
41 ((op_t *) dstp)[2] = cccc; in memset()
42 ((op_t *) dstp)[3] = cccc; in memset()
43 ((op_t *) dstp)[4] = cccc; in memset()
44 ((op_t *) dstp)[5] = cccc; in memset()
[all …]
/OK3568_Linux_fs/u-boot/arch/x86/lib/
H A Dstring.c20 unsigned long int dstp = (unsigned long int) dstpp; in memset() local
37 len -= (-dstp) % sizeof(op_t); in memset()
48 "=D" (dstp), "=c" (d0) : in memset()
49 "0" (dstp), "1" ((-dstp) % sizeof(op_t)), "a" (x) : in memset()
56 "=D" (dstp), "=c" (d0) : in memset()
57 "0" (dstp), "1" (len / sizeof(op_t)), "a" (x) : in memset()
66 "=D" (dstp), "=c" (d0) : in memset()
67 "0" (dstp), "1" (len), "a" (x) : in memset()
107 unsigned long int dstp = (long int)dstpp; in memcpy() local
115 len -= (-dstp) % OPSIZ; in memcpy()
[all …]
/OK3568_Linux_fs/kernel/include/linux/
H A Dcpumask.h332 static inline void cpumask_set_cpu(unsigned int cpu, struct cpumask *dstp) in cpumask_set_cpu() argument
334 set_bit(cpumask_check(cpu), cpumask_bits(dstp)); in cpumask_set_cpu()
337 static inline void __cpumask_set_cpu(unsigned int cpu, struct cpumask *dstp) in __cpumask_set_cpu() argument
339 __set_bit(cpumask_check(cpu), cpumask_bits(dstp)); in __cpumask_set_cpu()
348 static inline void cpumask_clear_cpu(int cpu, struct cpumask *dstp) in cpumask_clear_cpu() argument
350 clear_bit(cpumask_check(cpu), cpumask_bits(dstp)); in cpumask_clear_cpu()
353 static inline void __cpumask_clear_cpu(int cpu, struct cpumask *dstp) in __cpumask_clear_cpu() argument
355 __clear_bit(cpumask_check(cpu), cpumask_bits(dstp)); in __cpumask_clear_cpu()
402 static inline void cpumask_setall(struct cpumask *dstp) in cpumask_setall() argument
404 bitmap_fill(cpumask_bits(dstp), nr_cpumask_bits); in cpumask_setall()
[all …]
H A Dnodemask.h128 static __always_inline void __node_set(int node, volatile nodemask_t *dstp) in __node_set() argument
130 set_bit(node, dstp->bits); in __node_set()
134 static inline void __node_clear(int node, volatile nodemask_t *dstp) in __node_clear() argument
136 clear_bit(node, dstp->bits); in __node_clear()
140 static inline void __nodes_setall(nodemask_t *dstp, unsigned int nbits) in __nodes_setall() argument
142 bitmap_fill(dstp->bits, nbits); in __nodes_setall()
146 static inline void __nodes_clear(nodemask_t *dstp, unsigned int nbits) in __nodes_clear() argument
148 bitmap_zero(dstp->bits, nbits); in __nodes_clear()
163 static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_and() argument
166 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_and()
[all …]
H A Ddmaengine.h1384 __dma_cap_set(enum dma_transaction_type tx_type, dma_cap_mask_t *dstp) in __dma_cap_set() argument
1386 set_bit(tx_type, dstp->bits); in __dma_cap_set()
1391 __dma_cap_clear(enum dma_transaction_type tx_type, dma_cap_mask_t *dstp) in __dma_cap_clear() argument
1393 clear_bit(tx_type, dstp->bits); in __dma_cap_clear()
1397 static inline void __dma_cap_zero(dma_cap_mask_t *dstp) in __dma_cap_zero() argument
1399 bitmap_zero(dstp->bits, DMA_TX_TYPE_END); in __dma_cap_zero()
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/copyloops/
H A Dvalidate.c21 char *srcp, *dstp; in do_one() local
26 dstp = dst + MIN_REDZONE + dst_off; in do_one()
32 ret = COPY_LOOP(dstp, srcp, len); in do_one()
33 if (ret && ret != (unsigned long)dstp) { 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()
45 printf("%02x ", dstp[i]); in do_one()
50 if (memcmp(dst, redzone, dstp - dst)) { in do_one()
52 dstp, srcp, len); in do_one()
[all …]
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()
/OK3568_Linux_fs/kernel/drivers/cpufreq/
H A Dqoriq-cpufreq.c88 struct cpumask *dstp = policy->cpus; in set_affected_cpus() local
100 cpumask_set_cpu(i, dstp); in set_affected_cpus()
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkisp_demo/demo/
H A Ddisplay.c233 void display_win(void *srcp, int fmt, int srcw, int srch, int rotation, void *dstp, int dstw, int d… in display_win() argument
244 dst.virAddr = dstp; in display_win()
/OK3568_Linux_fs/kernel/tools/testing/selftests/kvm/include/
H A Dsparsebit.h33 void sparsebit_copy(struct sparsebit *dstp, struct sparsebit *src);
/OK3568_Linux_fs/kernel/drivers/media/test-drivers/vicodec/
H A Dcodec-fwht.c872 u8 *dstp = dst + j * 8 * dst_stride + i * 8 * dst_step; in decode_plane() local
879 fill_decoder_block(dstp, cf->de_fwht, in decode_plane()
902 fill_decoder_block(dstp, cf->de_fwht, dst_stride, in decode_plane()
/OK3568_Linux_fs/kernel/drivers/infiniband/hw/cxgb4/
H A Dqp.c417 u8 *dstp, *srcp; in build_immd() local
422 dstp = (u8 *)immdp->data; in build_immd()
430 if (dstp == (u8 *)&sq->queue[sq->size]) in build_immd()
431 dstp = (u8 *)sq->queue; in build_immd()
432 if (rem <= (u8 *)&sq->queue[sq->size] - dstp) in build_immd()
435 len = (u8 *)&sq->queue[sq->size] - dstp; in build_immd()
436 memcpy(dstp, srcp, len); in build_immd()
437 dstp += len; in build_immd()
444 memset(dstp, 0, len); in build_immd()
/OK3568_Linux_fs/kernel/drivers/scsi/bnx2i/
H A Dbnx2i_iscsi.c1134 u32 *dstp; in bnx2i_cpy_scsi_cdb() local
1143 dstp = (u32 *) cmd->req.cdb; in bnx2i_cpy_scsi_cdb()
1146 *dstp = cpu_to_be32(dword); in bnx2i_cpy_scsi_cdb()
1148 dstp++; in bnx2i_cpy_scsi_cdb()
1152 *dstp = cpu_to_be32(dword); in bnx2i_cpy_scsi_cdb()
/OK3568_Linux_fs/u-boot/lib/
H A Dfdtdec.c1213 static int uncompress_blob(const void *src, ulong sz_src, void **dstp) in uncompress_blob() argument
1253 *dstp = dst; in uncompress_blob()
1257 static int uncompress_blob(const void *src, ulong sz_src, void **dstp) in uncompress_blob() argument
/OK3568_Linux_fs/kernel/net/ipv6/
H A Draw.c619 struct flowi6 *fl6, struct dst_entry **dstp, in rawv6_send_hdrinc() argument
627 struct rt6_info *rt = (struct rt6_info *)*dstp; in rawv6_send_hdrinc()
672 *dstp = NULL; in rawv6_send_hdrinc()
/OK3568_Linux_fs/kernel/drivers/scsi/qedi/
H A Dqedi_fw.c1950 static void qedi_cpy_scsi_cdb(struct scsi_cmnd *sc, u32 *dstp) in qedi_cpy_scsi_cdb() argument
1960 *dstp = cpu_to_be32(dword); in qedi_cpy_scsi_cdb()
1962 dstp++; in qedi_cpy_scsi_cdb()
1966 *dstp = cpu_to_be32(dword); in qedi_cpy_scsi_cdb()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/myricom/myri10ge/
H A Dmyri10ge.c2536 struct mcp_kreq_ether_send __iomem *dstp, *dst; in myri10ge_submit_req() local
2545 dst = dstp = &tx->lanai[idx]; in myri10ge_submit_req()
2550 myri10ge_pio_copy(dstp, srcp, 2 * sizeof(*src)); in myri10ge_submit_req()
2553 dstp += 2; in myri10ge_submit_req()
2563 myri10ge_pio_copy(dstp, srcp, sizeof(*src)); in myri10ge_submit_req()