/kernel/linux/linux-6.6/drivers/crypto/marvell/octeontx/ |
H A D | otx_cptvf_algs.c | 164 scatterwalk_map_and_copy(sreq->iv, sreq->dst, start, in output_iv_copyback() 167 if (sreq->src != sreq->dst) { in output_iv_copyback() 258 req->src == req->dst) { in create_ctx_hdr() 336 update_output_data(req_info, req->dst, 0, req->cryptlen, &argcnt); in create_output_list() 700 __be64 *dst = buf; in swap_data64() local 704 for (i = 0 ; i < len / 8; i++, src++, dst++) in swap_data64() 705 *dst = cpu_to_be64p(src); in swap_data64() 1106 update_output_data(req_info, req->dst, 0, outputlen, &argcnt); in create_aead_output_list() 1136 struct scatterlist *dst; in create_aead_null_output_list() local 1150 if (req->src != req->dst) { in create_aead_null_output_list() [all...] |
/kernel/linux/linux-6.6/drivers/net/fddi/ |
H A D | defza.c | 123 u64 *dst = to; in fza_reads() local 127 *dst++ = readq_u(src++); in fza_reads() 130 dst_trail = (u32 *)dst; in fza_reads() 135 u32 *dst = to; in fza_reads() local 138 *dst++ = readl_u(src++); in fza_reads() 148 u64 __iomem *dst = to; in fza_writes() local 152 writeq_u(*src++, dst++); in fza_writes() 155 dst_trail = (u32 __iomem *)dst; in fza_writes() 160 u32 __iomem *dst = to; in fza_writes() local 163 writel_u(*src++, dst in fza_writes() 173 u64 __iomem *dst = to; fza_moves() local 185 u32 __iomem *dst = to; fza_moves() local 195 u64 __iomem *dst = to; fza_zeros() local 205 u32 __iomem *dst = to; fza_zeros() local [all...] |
/third_party/ffmpeg/libavutil/ |
H A D | cast5.c | 396 static void encipher(AVCAST5* cs, uint8_t* dst, const uint8_t* src) in encipher() argument 419 AV_WB32(dst, r); in encipher() 420 AV_WB32(dst + 4, l); in encipher() 423 static void decipher(AVCAST5* cs, uint8_t* dst, const uint8_t* src, uint8_t *iv) in decipher() argument 451 AV_WB32(dst, r); in decipher() 452 AV_WB32(dst + 4, l); in decipher() 480 void av_cast5_crypt2(AVCAST5* cs, uint8_t* dst, const uint8_t* src, int count, uint8_t *iv, int decrypt) in av_cast5_crypt2() argument 485 decipher(cs, dst, src, iv); in av_cast5_crypt2() 489 dst[i] = src[i] ^ iv[i]; in av_cast5_crypt2() 490 encipher(cs, dst, ds in av_cast5_crypt2() 500 av_cast5_crypt(AVCAST5* cs, uint8_t* dst, const uint8_t* src, int count, int decrypt) av_cast5_crypt() argument [all...] |
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_descriptor_set.c | 1009 unsigned *dst, struct radeon_winsys_bo **buffer_list, in write_texel_buffer_descriptor() 1015 memset(dst, 0, 4 * 4); in write_texel_buffer_descriptor() 1021 memcpy(dst, buffer_view->state, 4 * 4); in write_texel_buffer_descriptor() 1031 unsigned *dst, struct radeon_winsys_bo **buffer_list, in write_buffer_descriptor() 1037 memset(dst, 0, 4 * 4); in write_buffer_descriptor() 1071 dst[0] = va; in write_buffer_descriptor() 1072 dst[1] = S_008F04_BASE_ADDRESS_HI(va >> 32); in write_buffer_descriptor() 1073 dst[2] = range; in write_buffer_descriptor() 1074 dst[3] = rsrc_word3; in write_buffer_descriptor() 1083 write_block_descriptor(struct radv_device *device, struct radv_cmd_buffer *cmd_buffer, void *dst, in write_block_descriptor() argument 1008 write_texel_buffer_descriptor(struct radv_device *device, struct radv_cmd_buffer *cmd_buffer, unsigned *dst, struct radeon_winsys_bo **buffer_list, const VkBufferView _buffer_view) write_texel_buffer_descriptor() argument 1030 write_buffer_descriptor(struct radv_device *device, struct radv_cmd_buffer *cmd_buffer, unsigned *dst, struct radeon_winsys_bo **buffer_list, const VkDescriptorBufferInfo *buffer_info) write_buffer_descriptor() argument 1126 write_image_descriptor(struct radv_device *device, struct radv_cmd_buffer *cmd_buffer, unsigned size, unsigned *dst, struct radeon_winsys_bo **buffer_list, VkDescriptorType descriptor_type, const VkDescriptorImageInfo *image_info) write_image_descriptor() argument 1163 write_combined_image_sampler_descriptor(struct radv_device *device, struct radv_cmd_buffer *cmd_buffer, unsigned sampler_offset, unsigned *dst, struct radeon_winsys_bo **buffer_list, VkDescriptorType descriptor_type, const VkDescriptorImageInfo *image_info, bool has_sampler) write_combined_image_sampler_descriptor() argument 1179 write_sampler_descriptor(struct radv_device *device, unsigned *dst, const VkDescriptorImageInfo *image_info) write_sampler_descriptor() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineImageSamplingInstance.cpp | 1078 void swizzleT (const tcu::ConstPixelBufferAccess& src, const tcu::PixelBufferAccess& dst, const vk::VkComponentMapping& swz) in swizzleT() argument 1080 for (int z = 0; z < dst.getDepth(); ++z) in swizzleT() 1081 for (int y = 0; y < dst.getHeight(); ++y) in swizzleT() 1082 for (int x = 0; x < dst.getWidth(); ++x) in swizzleT() 1083 dst.setPixel(swizzle(src.getPixelT<ScalarType>(x, y, z), swz), x, y, z); in swizzleT() 1086 void swizzleFromSRGB (const tcu::ConstPixelBufferAccess& src, const tcu::PixelBufferAccess& dst, const vk::VkComponentMapping& swz) in swizzleFromSRGB() argument 1088 for (int z = 0; z < dst.getDepth(); ++z) in swizzleFromSRGB() 1089 for (int y = 0; y < dst.getHeight(); ++y) in swizzleFromSRGB() 1090 for (int x = 0; x < dst.getWidth(); ++x) in swizzleFromSRGB() 1091 dst in swizzleFromSRGB() 1094 swizzle(const tcu::ConstPixelBufferAccess& src, const tcu::PixelBufferAccess& dst, const vk::VkComponentMapping& swz) swizzle() argument [all...] |
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | quant_enc.c | 536 static void CopyScore(VP8ModeScore* const dst, const VP8ModeScore* const src) { in CopyScore() argument 537 dst->D = src->D; in CopyScore() 538 dst->SD = src->SD; in CopyScore() 539 dst->R = src->R; in CopyScore() 540 dst->H = src->H; in CopyScore() 541 dst->nz = src->nz; // note that nz is not accumulated, but just copied. in CopyScore() 542 dst->score = src->score; in CopyScore() 545 static void AddScore(VP8ModeScore* const dst, const VP8ModeScore* const src) { in AddScore() argument 546 dst->D += src->D; in AddScore() 547 dst in AddScore() 1153 uint8_t* dst = dst0; PickBestUV() local 1211 uint8_t* const dst = it->yuv_out_ + Y_OFF_ENC + VP8Scan[it->i4_]; SimpleQuantize() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/ |
H A D | vktPipelineImageSamplingInstance.cpp | 1072 void swizzleT (const tcu::ConstPixelBufferAccess& src, const tcu::PixelBufferAccess& dst, const vk::VkComponentMapping& swz) in swizzleT() argument 1074 for (int z = 0; z < dst.getDepth(); ++z) in swizzleT() 1075 for (int y = 0; y < dst.getHeight(); ++y) in swizzleT() 1076 for (int x = 0; x < dst.getWidth(); ++x) in swizzleT() 1077 dst.setPixel(swizzle(src.getPixelT<ScalarType>(x, y, z), swz), x, y, z); in swizzleT() 1080 void swizzleFromSRGB (const tcu::ConstPixelBufferAccess& src, const tcu::PixelBufferAccess& dst, const vk::VkComponentMapping& swz) in swizzleFromSRGB() argument 1082 for (int z = 0; z < dst.getDepth(); ++z) in swizzleFromSRGB() 1083 for (int y = 0; y < dst.getHeight(); ++y) in swizzleFromSRGB() 1084 for (int x = 0; x < dst.getWidth(); ++x) in swizzleFromSRGB() 1085 dst in swizzleFromSRGB() 1088 swizzle(const tcu::ConstPixelBufferAccess& src, const tcu::PixelBufferAccess& dst, const vk::VkComponentMapping& swz) swizzle() argument [all...] |
/third_party/vk-gl-cts/framework/randomshaders/ |
H A D | rsgExpression.cpp | 629 void convertValueRangeTempl (ConstValueRangeAccess src, ValueRangeAccess dst) in convertValueRangeTempl() argument 633 getValueAccessValue<DstType>(dst.getMin()) = dMin; in convertValueRangeTempl() 634 getValueAccessValue<DstType>(dst.getMax()) = dMax; in convertValueRangeTempl() 638 void convertExecValueTempl (ExecConstValueAccess src, ExecValueAccess dst) in convertExecValueTempl() argument 641 dst.as<DstType>(ndx) = convert<SrcType, DstType>(src.as<SrcType>(ndx)); in convertExecValueTempl() 661 // [src][dst] in isConversionOk() 671 void convertValueRange (ConstValueRangeAccess src, ValueRangeAccess dst) in convertValueRange() argument 673 // [src][dst] in convertValueRange() 681 convTable[getBaseTypeConvNdx(src.getType().getBaseType())][getBaseTypeConvNdx(dst.getType().getBaseType())](src, dst); in convertValueRange() 684 convertExecValue(ExecConstValueAccess src, ExecValueAccess dst) convertExecValue() argument 828 ExecValueAccess dst = m_value.getValue(type); evaluate() local 1660 ExecValueAccess dst = m_value.getValue(m_valueType); evaluate() local [all...] |
/kernel/linux/linux-5.10/net/openvswitch/ |
H A D | flow_netlink.c | 696 SW_FLOW_KEY_PUT(match, tun_key.u.ipv4.dst, in ip_tun_from_nlattr() 706 SW_FLOW_KEY_PUT(match, tun_key.u.ipv6.dst, in ip_tun_from_nlattr() 809 OVS_NLERR(log, "IP tunnel dst address not specified"); in ip_tun_from_nlattr() 815 match->key->tun_key.u.ipv4.dst || in ip_tun_from_nlattr() 824 } else if (!match->key->tun_key.u.ipv4.dst) { in ip_tun_from_nlattr() 825 OVS_NLERR(log, "IPv4 tunnel dst address is zero"); in ip_tun_from_nlattr() 829 if (ipv6 && ipv6_addr_any(&match->key->tun_key.u.ipv6.dst)) { in ip_tun_from_nlattr() 830 OVS_NLERR(log, "IPv6 tunnel dst address is zero"); in ip_tun_from_nlattr() 880 if (output->u.ipv4.dst && in __ip_tun_to_nlattr() 882 output->u.ipv4.dst)) in __ip_tun_to_nlattr() [all...] |
/kernel/linux/linux-6.6/net/openvswitch/ |
H A D | flow_netlink.c | 708 SW_FLOW_KEY_PUT(match, tun_key.u.ipv4.dst, in ip_tun_from_nlattr() 718 SW_FLOW_KEY_PUT(match, tun_key.u.ipv6.dst, in ip_tun_from_nlattr() 821 OVS_NLERR(log, "IP tunnel dst address not specified"); in ip_tun_from_nlattr() 827 match->key->tun_key.u.ipv4.dst || in ip_tun_from_nlattr() 836 } else if (!match->key->tun_key.u.ipv4.dst) { in ip_tun_from_nlattr() 837 OVS_NLERR(log, "IPv4 tunnel dst address is zero"); in ip_tun_from_nlattr() 841 if (ipv6 && ipv6_addr_any(&match->key->tun_key.u.ipv6.dst)) { in ip_tun_from_nlattr() 842 OVS_NLERR(log, "IPv6 tunnel dst address is zero"); in ip_tun_from_nlattr() 892 if (output->u.ipv4.dst && in __ip_tun_to_nlattr() 894 output->u.ipv4.dst)) in __ip_tun_to_nlattr() [all...] |
H A D | flow.c | 407 key->ipv6.addr.dst = nh->daddr; in parse_ipv6hdr() 563 key->tp.dst = htons(icmp->icmp6_code); in parse_icmpv6() 704 key->ipv4.addr.dst = nh->daddr; in key_extract_l3l4() 727 key->tp.dst = tcp->dest; in key_extract_l3l4() 737 key->tp.dst = udp->dest; in key_extract_l3l4() 745 key->tp.dst = sctp->dest; in key_extract_l3l4() 756 key->tp.dst = htons(icmp->code); in key_extract_l3l4() 782 memcpy(&key->ipv4.addr.dst, arp->ar_tip, sizeof(key->ipv4.addr.dst)); in key_extract_l3l4() 851 key->tp.dst in key_extract_l3l4() [all...] |
/kernel/linux/linux-5.10/drivers/dma/ |
H A D | k3dma.c | 448 static void k3_dma_fill_desc(struct k3_dma_desc_sw *ds, dma_addr_t dst, in k3_dma_fill_desc() argument 458 ds->desc_hw[num].daddr = dst; in k3_dma_fill_desc() 491 struct dma_chan *chan, dma_addr_t dst, dma_addr_t src, in k3_dma_prep_memcpy() 521 k3_dma_fill_desc(ds, dst, src, copy, num++, c->ccfg); in k3_dma_prep_memcpy() 524 dst += copy; in k3_dma_prep_memcpy() 540 dma_addr_t addr, src = 0, dst = 0; in k3_dma_prep_slave_sg() local 570 dst = c->dev_addr; in k3_dma_prep_slave_sg() 573 dst = addr; in k3_dma_prep_slave_sg() 576 k3_dma_fill_desc(ds, dst, src, len, num++, c->ccfg); in k3_dma_prep_slave_sg() 597 dma_addr_t addr, src = 0, dst in k3_dma_prep_dma_cyclic() local 490 k3_dma_prep_memcpy( struct dma_chan *chan, dma_addr_t dst, dma_addr_t src, size_t len, unsigned long flags) k3_dma_prep_memcpy() argument [all...] |
H A D | zx_dma.c | 302 dev_warn(d->slave.dev, "DMA ERR src 0x%x, dst 0x%x, cfg 0x%x\n", in zx_dma_int_handler() 404 static void zx_dma_fill_desc(struct zx_dma_desc_sw *ds, dma_addr_t dst, in zx_dma_fill_desc() argument 411 ds->desc_hw[num].daddr = dst; in zx_dma_fill_desc() 473 /* dst len is calculated from src width, len and dst width. in zx_pre_config() 474 * We need make sure dst len not exceed MAX LEN. in zx_pre_config() 476 * burst also require identical src/dst data width. in zx_pre_config() 505 struct dma_chan *chan, dma_addr_t dst, dma_addr_t src, in zx_dma_prep_memcpy() 530 zx_dma_fill_desc(ds, dst, src, copy, num++, c->ccfg); in zx_dma_prep_memcpy() 533 dst in zx_dma_prep_memcpy() 504 zx_dma_prep_memcpy( struct dma_chan *chan, dma_addr_t dst, dma_addr_t src, size_t len, unsigned long flags) zx_dma_prep_memcpy() argument 551 dma_addr_t addr, src = 0, dst = 0; zx_dma_prep_slave_sg() local 608 dma_addr_t src = 0, dst = 0; zx_dma_prep_dma_cyclic() local [all...] |
/kernel/linux/linux-5.10/drivers/crypto/ccree/ |
H A D | cc_cipher.c | 769 struct scatterlist *dst, struct scatterlist *src, in cc_setup_mlli_desc() 796 struct scatterlist *dst, struct scatterlist *src, in cc_setup_flow_desc() 811 &sg_dma_address(dst), nbytes); in cc_setup_flow_desc() 815 set_dout_dlli(&desc[*seq_size], sg_dma_address(dst), in cc_setup_flow_desc() 858 struct scatterlist *dst = req->dst; in cc_cipher_complete() local 866 cc_unmap_cipher_request(dev, req_ctx, ivsize, src, dst); in cc_cipher_complete() 881 struct scatterlist *dst = req->dst; in cc_cipher_process() local 947 req_ctx->iv, src, dst, flag in cc_cipher_process() 767 cc_setup_mlli_desc(struct crypto_tfm *tfm, struct cipher_req_ctx *req_ctx, struct scatterlist *dst, struct scatterlist *src, unsigned int nbytes, void *areq, struct cc_hw_desc desc[], unsigned int *seq_size) cc_setup_mlli_desc() argument 794 cc_setup_flow_desc(struct crypto_tfm *tfm, struct cipher_req_ctx *req_ctx, struct scatterlist *dst, struct scatterlist *src, unsigned int nbytes, struct cc_hw_desc desc[], unsigned int *seq_size) cc_setup_flow_desc() argument [all...] |
/kernel/linux/linux-5.10/block/ |
H A D | bio.c | 1199 void bio_copy_data_iter(struct bio *dst, struct bvec_iter *dst_iter, in bio_copy_data_iter() argument 1208 dst_bv = bio_iter_iovec(dst, *dst_iter); in bio_copy_data_iter() 1225 bio_advance_iter(dst, dst_iter, bytes); in bio_copy_data_iter() 1233 * @dst: destination bio 1235 * Stops when it reaches the end of either @src or @dst - that is, copies 1236 * min(src->bi_size, dst->bi_size) bytes (or the equivalent for lists of bios). 1238 void bio_copy_data(struct bio *dst, struct bio *src) in bio_copy_data() argument 1241 struct bvec_iter dst_iter = dst->bi_iter; in bio_copy_data() 1243 bio_copy_data_iter(dst, &dst_iter, src, &src_iter); in bio_copy_data() 1251 * @dst 1257 bio_list_copy_data(struct bio *dst, struct bio *src) bio_list_copy_data() argument [all...] |
/kernel/linux/linux-5.10/net/phonet/ |
H A D | pep.c | 196 struct sockaddr_pn dst; in pep_ctrlreq_error() local 213 pn_skb_get_src_sockaddr(oskb, &dst); in pep_ctrlreq_error() 214 return pn_skb_send(sk, skb, &dst); in pep_ctrlreq_error() 626 const struct sockaddr_pn *dst, in pep_find_pipe() 630 u16 dobj = pn_sockaddr_get_object(dst); in pep_find_pipe() 659 struct sockaddr_pn dst; in pep_do_rcv() local 670 pn_skb_get_dst_sockaddr(skb, &dst); in pep_do_rcv() 673 sknode = pep_find_pipe(&pn->hlist, &dst, pipe_handle); in pep_do_rcv() 769 struct sockaddr_pn dst, src; in pep_sock_accept() local 828 newsk = pep_find_pipe(&pn->hlist, &dst, pipe_handl in pep_sock_accept() 625 pep_find_pipe(const struct hlist_head *hlist, const struct sockaddr_pn *dst, u8 pipe_handle) pep_find_pipe() argument [all...] |
/kernel/linux/linux-5.10/tools/include/nolibc/ |
H A D | nolibc.h | 2295 void *memmove(void *dst, const void *src, size_t len) in memmove() argument 2297 ssize_t pos = (dst <= src) ? -1 : (long)len; in memmove() 2298 void *ret = dst; in memmove() 2301 pos += (dst <= src) ? 1 : -1; in memmove() 2302 ((char *)dst)[pos] = ((char *)src)[pos]; in memmove() 2308 void *memset(void *dst, int b, size_t len) in memset() argument 2310 char *p = dst; in memset() 2314 return dst; in memset() 2330 char *strcpy(char *dst, const char *src) in strcpy() argument 2332 char *ret = dst; in strcpy() [all...] |
/kernel/linux/linux-5.10/drivers/media/usb/msi2500/ |
H A D | msi2500.c | 242 static int msi2500_convert_stream(struct msi2500_dev *dev, u8 *dst, u8 *src, in msi2500_convert_stream() argument 274 u8 *u8dst = (u8 *)dst; in msi2500_convert_stream() 280 dst += 1008; in msi2500_convert_stream() 288 u16 *u16dst = (u16 *)dst; in msi2500_convert_stream() 302 dst += 1008; in msi2500_convert_stream() 310 memcpy(dst, src, 984); in msi2500_convert_stream() 312 dst += 984; in msi2500_convert_stream() 317 memcpy(dst, src, 1008); in msi2500_convert_stream() 319 dst += 1008; in msi2500_convert_stream() 324 memcpy(dst, sr in msi2500_convert_stream() [all...] |
/kernel/linux/linux-6.6/drivers/media/usb/msi2500/ |
H A D | msi2500.c | 242 static int msi2500_convert_stream(struct msi2500_dev *dev, u8 *dst, u8 *src, in msi2500_convert_stream() argument 274 u8 *u8dst = (u8 *)dst; in msi2500_convert_stream() 280 dst += 1008; in msi2500_convert_stream() 288 u16 *u16dst = (u16 *)dst; in msi2500_convert_stream() 302 dst += 1008; in msi2500_convert_stream() 310 memcpy(dst, src, 984); in msi2500_convert_stream() 312 dst += 984; in msi2500_convert_stream() 317 memcpy(dst, src, 1008); in msi2500_convert_stream() 319 dst += 1008; in msi2500_convert_stream() 324 memcpy(dst, sr in msi2500_convert_stream() [all...] |
/kernel/linux/linux-6.6/drivers/dma/ |
H A D | k3dma.c | 447 static void k3_dma_fill_desc(struct k3_dma_desc_sw *ds, dma_addr_t dst, in k3_dma_fill_desc() argument 457 ds->desc_hw[num].daddr = dst; in k3_dma_fill_desc() 490 struct dma_chan *chan, dma_addr_t dst, dma_addr_t src, in k3_dma_prep_memcpy() 520 k3_dma_fill_desc(ds, dst, src, copy, num++, c->ccfg); in k3_dma_prep_memcpy() 523 dst += copy; in k3_dma_prep_memcpy() 539 dma_addr_t addr, src = 0, dst = 0; in k3_dma_prep_slave_sg() local 569 dst = c->dev_addr; in k3_dma_prep_slave_sg() 572 dst = addr; in k3_dma_prep_slave_sg() 575 k3_dma_fill_desc(ds, dst, src, len, num++, c->ccfg); in k3_dma_prep_slave_sg() 596 dma_addr_t addr, src = 0, dst in k3_dma_prep_dma_cyclic() local 489 k3_dma_prep_memcpy( struct dma_chan *chan, dma_addr_t dst, dma_addr_t src, size_t len, unsigned long flags) k3_dma_prep_memcpy() argument [all...] |
/kernel/linux/linux-6.6/drivers/crypto/ccree/ |
H A D | cc_cipher.c | 772 struct scatterlist *dst, struct scatterlist *src, in cc_setup_mlli_desc() 799 struct scatterlist *dst, struct scatterlist *src, in cc_setup_flow_desc() 814 &sg_dma_address(dst), nbytes); in cc_setup_flow_desc() 818 set_dout_dlli(&desc[*seq_size], sg_dma_address(dst), in cc_setup_flow_desc() 861 struct scatterlist *dst = req->dst; in cc_cipher_complete() local 869 cc_unmap_cipher_request(dev, req_ctx, ivsize, src, dst); in cc_cipher_complete() 884 struct scatterlist *dst = req->dst; in cc_cipher_process() local 950 req_ctx->iv, src, dst, flag in cc_cipher_process() 770 cc_setup_mlli_desc(struct crypto_tfm *tfm, struct cipher_req_ctx *req_ctx, struct scatterlist *dst, struct scatterlist *src, unsigned int nbytes, void *areq, struct cc_hw_desc desc[], unsigned int *seq_size) cc_setup_mlli_desc() argument 797 cc_setup_flow_desc(struct crypto_tfm *tfm, struct cipher_req_ctx *req_ctx, struct scatterlist *dst, struct scatterlist *src, unsigned int nbytes, struct cc_hw_desc desc[], unsigned int *seq_size) cc_setup_flow_desc() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/selftests/ |
H A D | intel_memory_region.c | 1194 static void igt_memcpy_long(void *dst, const void *src, size_t size) in igt_memcpy_long() argument 1196 unsigned long *tmp = dst; in igt_memcpy_long() 1204 static inline void igt_memcpy(void *dst, const void *src, size_t size) in igt_memcpy() argument 1206 memcpy(dst, src, size); in igt_memcpy() 1209 static inline void igt_memcpy_from_wc(void *dst, const void *src, size_t size) in igt_memcpy_from_wc() argument 1211 i915_memcpy_from_wc(dst, src, size); in igt_memcpy_from_wc() 1221 void (*copy)(void *dst, const void *src, size_t size); in _perf_memcpy() 1238 struct drm_i915_gem_object *src, *dst; in _perf_memcpy() local 1249 dst = create_region_for_mapping(dst_mr, size, dst_type, &dst_addr); in _perf_memcpy() 1250 if (IS_ERR(dst)) { in _perf_memcpy() [all...] |
/kernel/linux/linux-6.6/net/phonet/ |
H A D | pep.c | 196 struct sockaddr_pn dst; in pep_ctrlreq_error() local 213 pn_skb_get_src_sockaddr(oskb, &dst); in pep_ctrlreq_error() 214 return pn_skb_send(sk, skb, &dst); in pep_ctrlreq_error() 626 const struct sockaddr_pn *dst, in pep_find_pipe() 630 u16 dobj = pn_sockaddr_get_object(dst); in pep_find_pipe() 659 struct sockaddr_pn dst; in pep_do_rcv() local 670 pn_skb_get_dst_sockaddr(skb, &dst); in pep_do_rcv() 673 sknode = pep_find_pipe(&pn->hlist, &dst, pipe_handle); in pep_do_rcv() 769 struct sockaddr_pn dst, src; in pep_sock_accept() local 829 newsk = pep_find_pipe(&pn->hlist, &dst, pipe_handl in pep_sock_accept() 625 pep_find_pipe(const struct hlist_head *hlist, const struct sockaddr_pn *dst, u8 pipe_handle) pep_find_pipe() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | clearvideo.c | 225 static int copy_block(AVCodecContext *avctx, AVFrame *dst, AVFrame *src, in copy_block() argument 243 dstride = dst->linesize[plane]; in copy_block() 247 dbuf = dst->data[plane]; in copy_block() 261 static int copyadd_block(AVCodecContext *avctx, AVFrame *dst, AVFrame *src, in copyadd_block() argument 268 int dstride = dst->linesize[plane]; in copyadd_block() 272 uint8_t *dbuf = dst->data[plane]; in copyadd_block() 418 static int tile_do_block(AVCodecContext *avctx, AVFrame *dst, AVFrame *src, in tile_do_block() argument 424 ret = copy_block(avctx, dst, src, plane, x, y, dx, dy, size); in tile_do_block() 426 ret = copyadd_block(avctx, dst, src, plane, x, y, dx, dy, size, bias); in tile_do_block() 432 static int restore_tree(AVCodecContext *avctx, AVFrame *dst, AVFram argument [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_hqx.c | 169 static av_always_inline void hq3x_interp_2x1(uint32_t *dst, int dst_linesize, in hq3x_interp_2x1() argument 180 uint32_t *dst00 = &dst[dst_linesize*(pos00>>1) + (pos00&1)]; in hq3x_interp_2x1() 181 uint32_t *dst01 = &dst[dst_linesize*(pos01>>1) + (pos01&1)]; in hq3x_interp_2x1() 235 static av_always_inline void hq4x_interp_2x2(uint32_t *dst, int dst_linesize, in hq4x_interp_2x2() argument 246 uint32_t *dst00 = &dst[dst_linesize*(pos00>>1) + (pos00&1)]; in hq4x_interp_2x2() 247 uint32_t *dst01 = &dst[dst_linesize*(pos01>>1) + (pos01&1)]; in hq4x_interp_2x2() 248 uint32_t *dst10 = &dst[dst_linesize*(pos10>>1) + (pos10&1)]; in hq4x_interp_2x2() 249 uint32_t *dst11 = &dst[dst_linesize*(pos11>>1) + (pos11&1)]; in hq4x_interp_2x2() 394 uint8_t *dst = out->data[0] + slice_start * dst_linesize * n; in hqx_filter() local 402 uint32_t *dst32 = (uint32_t *)dst; in hqx_filter() [all...] |