Searched refs:cpy (Results 1 - 9 of 9) sorted by relevance
/linux-4.1.27/tools/perf/util/include/asm/ |
H A D | dwarf2.h | 5 /* dwarf2.h ... dummy header file for including arch/x86/lib/mem{cpy,set}_64.S */
|
/linux-4.1.27/lib/lz4/ |
H A D | lz4_decompress.c | 61 BYTE *cpy; lz4_uncompress() local 82 cpy = op + length; lz4_uncompress() 83 if (unlikely(cpy > oend - COPYLENGTH)) { lz4_uncompress() 88 if (cpy != oend) lz4_uncompress() 95 LZ4_WILDCOPY(ip, op, cpy); lz4_uncompress() 96 ip -= (op - cpy); lz4_uncompress() 97 op = cpy; lz4_uncompress() 100 LZ4_READ_LITTLEENDIAN_16(ref, cpy, ip); lz4_uncompress() 137 cpy = op + length - (STEPSIZE - 4); lz4_uncompress() 138 if (cpy > (oend - COPYLENGTH)) { lz4_uncompress() 141 if (cpy > oend) lz4_uncompress() 147 while (op < cpy) lz4_uncompress() 149 op = cpy; lz4_uncompress() 158 LZ4_SECURECOPY(ref, op, cpy); lz4_uncompress() 159 op = cpy; /* correction */ lz4_uncompress() 179 BYTE *cpy; lz4_uncompress_unknownoutputsize() local 200 cpy = op + length; lz4_uncompress_unknownoutputsize() 201 if ((cpy > oend - COPYLENGTH) || lz4_uncompress_unknownoutputsize() 204 if (cpy > oend) lz4_uncompress_unknownoutputsize() 217 LZ4_WILDCOPY(ip, op, cpy); lz4_uncompress_unknownoutputsize() 218 ip -= (op - cpy); lz4_uncompress_unknownoutputsize() 219 op = cpy; lz4_uncompress_unknownoutputsize() 222 LZ4_READ_LITTLEENDIAN_16(ref, cpy, ip); lz4_uncompress_unknownoutputsize() 265 cpy = op + length - (STEPSIZE-4); lz4_uncompress_unknownoutputsize() 266 if (cpy > oend - COPYLENGTH) { lz4_uncompress_unknownoutputsize() 267 if (cpy > oend) lz4_uncompress_unknownoutputsize() 271 while (op < cpy) lz4_uncompress_unknownoutputsize() 273 op = cpy; lz4_uncompress_unknownoutputsize() 282 LZ4_SECURECOPY(ref, op, cpy); lz4_uncompress_unknownoutputsize() 283 op = cpy; /* correction */ lz4_uncompress_unknownoutputsize()
|
/linux-4.1.27/drivers/media/usb/go7007/ |
H A D | snd-go7007.c | 86 int cpy = runtime->dma_bytes - gosnd->w_idx; parse_audio_stream_data() local 88 memcpy(runtime->dma_area + gosnd->w_idx, buf, cpy); parse_audio_stream_data() 89 length -= cpy; parse_audio_stream_data() 90 buf += cpy; parse_audio_stream_data()
|
/linux-4.1.27/drivers/tty/serial/ |
H A D | sunhv.c | 441 unsigned int cpy = fill_con_write_page(s, n, sunhv_console_write_paged() local 444 n -= cpy; sunhv_console_write_paged() 445 s += cpy; sunhv_console_write_paged()
|
/linux-4.1.27/fs/ |
H A D | file.c | 65 unsigned int cpy, set; copy_fdtable() local 69 cpy = ofdt->max_fds * sizeof(struct file *); copy_fdtable() 71 memcpy(nfdt->fd, ofdt->fd, cpy); copy_fdtable() 72 memset((char *)(nfdt->fd) + cpy, 0, set); copy_fdtable() 74 cpy = ofdt->max_fds / BITS_PER_BYTE; copy_fdtable() 76 memcpy(nfdt->open_fds, ofdt->open_fds, cpy); copy_fdtable() 77 memset((char *)(nfdt->open_fds) + cpy, 0, set); copy_fdtable() 78 memcpy(nfdt->close_on_exec, ofdt->close_on_exec, cpy); copy_fdtable() 79 memset((char *)(nfdt->close_on_exec) + cpy, 0, set); copy_fdtable()
|
/linux-4.1.27/tools/perf/util/ |
H A D | evlist.c | 674 unsigned int len = min(sizeof(*event), size), cpy; perf_evlist__mmap_read() local 678 cpy = min(md->mask + 1 - (offset & md->mask), len); perf_evlist__mmap_read() 679 memcpy(dst, &data[offset & md->mask], cpy); perf_evlist__mmap_read() 680 offset += cpy; perf_evlist__mmap_read() 681 dst += cpy; perf_evlist__mmap_read() 682 len -= cpy; perf_evlist__mmap_read()
|
/linux-4.1.27/drivers/dma/ |
H A D | at_hdmac.c | 1740 dma_has_cap(DMA_MEMCPY, atdma->dma_common.cap_mask) ? "cpy " : "", at_dma_probe() 1742 dma_has_cap(DMA_SG, atdma->dma_common.cap_mask) ? "sg-cpy " : "", at_dma_probe()
|
H A D | iop-adma.c | 1429 dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask) ? "cpy " : "", iop_adma_probe()
|
H A D | mv_xor.c | 1073 dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask) ? "cpy " : "", mv_xor_channel_add()
|
Completed in 362 milliseconds