Searched refs:copy (Results 176 - 200 of 384) sorted by relevance

1234567891011>>

/linux-master/drivers/input/misc/
H A Dyealink.c112 } master, copy; member in struct:yealink_dev
332 /* find update candidates: copy != master */
335 if (val != yld->copy.b[ix])
349 yld->copy.b[ix] = val;
387 yld->copy.b[ix] = val;
510 yld->copy.b[i] = ~yld->master.b[i];
/linux-master/drivers/scsi/
H A Discsi_tcp.c306 unsigned int offset, copy; local
310 copy = segment->size - offset;
323 bvec_set_page(&bv, sg_page(sg), copy, offset);
325 bvec_set_virt(&bv, segment->data + offset, copy);
327 iov_iter_bvec(&msg.msg_iter, ITER_SOURCE, &bv, 1, copy);
436 * Simply copy the data_segment to the send segment, and return.
/linux-master/drivers/net/ethernet/sfc/
H A Defx_channels.c865 if (channel->type->copy)
866 channel = channel->type->copy(channel);
884 if (!channel->type->copy)
898 if (channel && channel->type->copy) {
1341 .copy = efx_copy_channel,
/linux-master/kernel/bpf/
H A Dmemalloc.c723 struct bpf_mem_alloc *copy; local
733 copy = kmemdup(ma, sizeof(*ma), GFP_KERNEL);
734 if (!copy) {
742 INIT_WORK(&copy->work, free_mem_alloc_deferred);
743 queue_work(system_unbound_wq, &copy->work);
/linux-master/tools/testing/selftests/hid/tests/
H A Dtest_tablet.py10 import copy namespace
606 self._old_values = copy.copy(self)
963 internal_pen = copy.copy(pen)
/linux-master/drivers/media/test-drivers/vicodec/
H A Dcodec-fwht.c762 * header, so when we copy the YUV data we replace 0xff
842 s16 copy[8 * 8]; local
876 memcpy(cf->de_fwht, copy, sizeof(copy));
899 memcpy(copy, cf->de_fwht, sizeof(copy));
/linux-master/drivers/s390/block/
H A Ddasd_fba.c501 char *copy = kmem_cache_alloc(dasd_page_cache, local
503 if (copy && rq_data_dir(req) == WRITE)
504 memcpy(copy + bv.bv_offset, dst, bv.bv_len);
505 if (copy)
506 dst = copy + bv.bv_offset;
/linux-master/arch/m68k/fpsp040/
H A Dskeleton.S391 | If you don't have copyout, use the local copy of the function below.
431 | If you don't have copyin, use the local copy of the function below.
444 | the EXC_SR is checked and a simple memory copy is done if reading
H A Dround.S369 movel %d1,%d6 |copy ls mant into d6
440 movew #dbl_thresh,%d1 |put copy of threshold in d1
441 movel %d1,%d0 |copy d1 into d0
453 movew #sgl_thresh,%d1 |put copy of threshold in d1
454 movel %d1,%d0 |copy d1 into d0
514 movel %d1,%d0 |copy the denorm threshold
/linux-master/drivers/mtd/ubi/
H A Dvtbl.c17 * eraseblock stores one volume table copy, i.e. LEB 0 and LEB 1 duplicate each
276 * create_vtbl - create a copy of volume table.
279 * @copy: number of the volume table copy
286 int copy, void *vtbl)
293 dbg_gen("create volume table (copy #%d)", copy + 1);
313 vid_hdr->lnum = cpu_to_be32(copy);
390 * we compare it with LEB 1, and if they are different, we copy LEB
392 * b. if LEB 0 is corrupted, but LEB 1 has to be OK, and we copy LE
285 create_vtbl(struct ubi_device *ubi, struct ubi_attach_info *ai, int copy, void *vtbl) argument
[all...]
/linux-master/include/net/
H A Dsock.h2230 int copy, int offset)
2234 if (!csum_and_copy_from_iter_full(to, copy, &csum, from))
2238 if (!copy_from_iter_full_nocache(to, copy, from))
2240 } else if (!copy_from_iter_full(to, copy, from))
2247 struct iov_iter *from, int copy)
2251 err = skb_do_copy_data_nocache(sk, skb, from, skb_put(skb, copy),
2252 copy, offset);
2262 int off, int copy)
2267 copy, skb->len);
2271 skb_len_add(skb, copy);
2228 skb_do_copy_data_nocache(struct sock *sk, struct sk_buff *skb, struct iov_iter *from, char *to, int copy, int offset) argument
2246 skb_add_data_nocache(struct sock *sk, struct sk_buff *skb, struct iov_iter *from, int copy) argument
2259 skb_copy_to_page_nocache(struct sock *sk, struct iov_iter *from, struct sk_buff *skb, struct page *page, int off, int copy) argument
[all...]
/linux-master/drivers/xen/
H A Dgntdev.c16 * You should have received a copy of the GNU General Public License
955 struct ioctl_gntdev_grant_copy copy; local
960 if (copy_from_user(&copy, u, sizeof(copy)))
966 for (i = 0; i < copy.count; i++) {
969 if (copy_from_user(&seg, &copy.segments[i], sizeof(seg))) {
974 ret = gntdev_grant_copy_seg(&batch, &seg, &copy.segments[i].status);
/linux-master/drivers/net/ethernet/sfc/siena/
H A Defx_channels.c874 if (channel->type->copy)
897 if (channel->type->copy)
898 channel = channel->type->copy(channel);
919 if (!channel->type->copy)
932 if (channel && channel->type->copy) {
1366 .copy = efx_copy_channel,
/linux-master/sound/soc/qcom/qdsp6/
H A Dq6asm-dai.c1059 size_t copy; local
1080 copy = prtd->pcm_size - app_pointer;
1081 if (copy_from_user(dstn, buf, copy))
1083 if (copy_from_user(prtd->dma_buffer.area, buf + copy,
1084 count - copy))
1176 .copy = q6asm_compr_copy,
/linux-master/drivers/dma/
H A Dk3dma.c494 size_t copy = 0; local
518 copy = min_t(size_t, len, DMA_MAX_SIZE);
519 k3_dma_fill_desc(ds, dst, src, copy, num++, c->ccfg);
521 src += copy;
522 dst += copy;
523 len -= copy;
/linux-master/net/ipv6/
H A Draw.c715 int copy = min(rfv->hlen - offset, len); local
718 memcpy(to, rfv->c + offset, copy);
723 to, copy),
727 offset += copy;
728 to += copy;
729 len -= copy;
/linux-master/fs/nfsd/
H A Dnfs4xdr.c1979 struct nfsd4_copy *copy = &u->copy; local
1984 memset(copy, 0, sizeof(*copy));
1985 status = nfsd4_decode_stateid4(argp, &copy->cp_src_stateid);
1988 status = nfsd4_decode_stateid4(argp, &copy->cp_dst_stateid);
1991 if (xdr_stream_decode_u64(argp->xdr, &copy->cp_src_pos) < 0)
1993 if (xdr_stream_decode_u64(argp->xdr, &copy->cp_dst_pos) < 0)
1995 if (xdr_stream_decode_u64(argp->xdr, &copy->cp_count) < 0)
2002 nfsd4_copy_set_sync(copy, syn
5099 nfsd4_encode_write_response4(struct xdr_stream *xdr, const struct nfsd4_copy *copy) argument
5126 nfsd4_encode_copy_requirements4(struct xdr_stream *xdr, const struct nfsd4_copy *copy) argument
5143 struct nfsd4_copy *copy = &u->copy; local
[all...]
H A Dstate.h132 stateid_t cp_p_stateid; /* copy of parent's stateid */
133 clientid_t cp_p_clid; /* copy of parent's clid */
721 int nfs4_init_copy_state(struct nfsd_net *nn, struct nfsd4_copy *copy);
722 void nfs4_free_copy_state(struct nfsd4_copy *copy);
/linux-master/arch/sh/lib/
H A Dchecksum.S51 mov r4, r7 ! Keep a copy to check for alignment
218 ! This is not common, so simple byte by byte copy will do.
/linux-master/tools/testing/selftests/arm64/fp/
H A Dfp-stress.c124 * In parent, remember the child and close our copy of the
309 static void start_fpsimd(struct child_data *child, int cpu, int copy) argument
313 ret = asprintf(&child->name, "FPSIMD-%d-%d", cpu, copy);
/linux-master/arch/xtensa/lib/
H A Dmemset.S44 mov a5, a2 # copy dst so that a2 is return value
/linux-master/drivers/gpu/drm/radeon/
H A Dradeon_test.c6 * copy of this software and associated documentation files (the "Software"),
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
51 DRM_ERROR("Unknown copy method\n");
129 DRM_ERROR("Failed GTT->VRAM copy %d\n", i);
144 DRM_ERROR("Failed to map VRAM object after copy %d\n", i);
153 DRM_ERROR("Incorrect GTT->VRAM copy %d: Got 0x%p, "
180 DRM_ERROR("Failed VRAM->GTT copy %d\n", i);
195 DRM_ERROR("Failed to map GTT object after copy %d\n", i);
204 DRM_ERROR("Incorrect VRAM->GTT copy %d: Got 0x%p, "
221 DRM_INFO("Tested GTT->VRAM and VRAM->GTT copy fo
[all...]
/linux-master/include/sound/
H A Dsoc-component.h51 int (*copy)(struct snd_soc_component *component, member in struct:snd_compress_ops
140 int (*copy)(struct snd_soc_component *component, member in struct:snd_soc_component_driver
/linux-master/arch/arm/lib/
H A Dmemset.S140 mov r3, r1 @ copy r1 to r3 and fall into memset64
/linux-master/drivers/md/
H A Ddm-cache-target.c1095 static void copy(struct dm_cache_migration *mg, bool promote) function
1146 * The overwrite bio is part of the copy operation, as such it does
1163 * 3) copy or issue overwrite bio
1304 * Did the copy succeed?
1318 * Did the copy succeed?
1354 copy(mg, is_policy_promote);
1369 * Fallback to a real full copy after doing some tidying up.
2575 const char **copy; local
2577 copy = kcalloc(argc, sizeof(*copy), GFP_KERNE
[all...]

Completed in 388 milliseconds

1234567891011>>