Searched refs:cpy (Results 1 – 8 of 8) sorted by relevance
/linux/lib/lz4/ |
H A D | lz4_decompress.c | 87 BYTE *cpy; in LZ4_decompress_generic() 220 cpy = op + length; in LZ4_decompress_generic() 223 if (((endOnInput) && ((cpy > oend - MFLIMIT) in LZ4_decompress_generic() 225 || ((!endOnInput) && (cpy > oend - WILDCOPYLENGTH))) { in LZ4_decompress_generic() 227 if (cpy > oend) { in LZ4_decompress_generic() 232 cpy = oend; in LZ4_decompress_generic() 246 && (cpy != oend)) { in LZ4_decompress_generic() 256 || (cpy > oend))) { in LZ4_decompress_generic() 278 if (!partialDecoding || (cpy == oend) || (ip >= (iend - 2))) in LZ4_decompress_generic() 281 /* may overwrite up to WILDCOPYLENGTH beyond cpy */ in LZ4_decompress_generic() 88 BYTE *cpy; LZ4_decompress_generic() local [all...] |
/linux/net/tipc/ |
H A D | msg.c | 210 int mlen, cpy, rem = dlen; in tipc_msg_append() local 234 cpy = min_t(size_t, rem, mss - mlen); in tipc_msg_append() 235 if (cpy != copy_from_iter(skb->data + mlen, cpy, &m->msg_iter)) in tipc_msg_append() 237 msg_set_size(hdr, mlen + cpy); in tipc_msg_append() 238 skb_put(skb, cpy); in tipc_msg_append() 239 rem -= cpy; in tipc_msg_append() 677 bool tipc_msg_skb_clone(struct sk_buff_head *msg, struct sk_buff_head *cpy) in tipc_msg_skb_clone() argument 684 __skb_queue_purge(cpy); in tipc_msg_skb_clone() 688 __skb_queue_tail(cpy, _skb); in tipc_msg_skb_clone() 802 struct sk_buff_head *cpy) in tipc_msg_pskb_copy() argument [all …]
|
H A D | msg.h | 1179 struct sk_buff_head *cpy); 1182 bool tipc_msg_skb_clone(struct sk_buff_head *msg, struct sk_buff_head *cpy);
|
/linux/tools/lib/perf/ |
H A D | mmap.c | 232 unsigned int len = size, cpy; in perf_mmap__read() local 244 cpy = min(map->mask + 1 - (offset & map->mask), len); in perf_mmap__read() 245 memcpy(dst, &data[offset & map->mask], cpy); in perf_mmap__read() 246 offset += cpy; in perf_mmap__read() 247 dst += cpy; in perf_mmap__read() 248 len -= cpy; in perf_mmap__read()
|
/linux/drivers/media/usb/go7007/ |
H A D | snd-go7007.c | 78 int cpy = runtime->dma_bytes - gosnd->w_idx; in parse_audio_stream_data() local 80 memcpy(runtime->dma_area + gosnd->w_idx, buf, cpy); in parse_audio_stream_data() 81 length -= cpy; in parse_audio_stream_data() 82 buf += cpy; in parse_audio_stream_data()
|
/linux/drivers/tty/serial/ |
H A D | sunhv.c | 452 unsigned int cpy = fill_con_write_page(s, n, in sunhv_console_write_paged() local 455 n -= cpy; in sunhv_console_write_paged() 456 s += cpy; in sunhv_console_write_paged()
|
/linux/fs/ |
H A D | file.c | 138 size_t cpy, set; in copy_fdtable() local 142 cpy = ofdt->max_fds * sizeof(struct file *); in copy_fdtable() 144 memcpy(nfdt->fd, ofdt->fd, cpy); in copy_fdtable() 145 memset((char *)nfdt->fd + cpy, 0, set); in copy_fdtable()
|
/linux/lib/ |
H A D | Kconfig.ubsan | 65 to the {str,mem}*cpy() family of functions (that is addressed
|