| /linux/arch/alpha/boot/tools/ |
| H A D | objstrip.c | 55 size_t nwritten, tocopy, n, mem_size, fil_size, pad = 0; in main() local 238 tocopy = fil_size; in main() 239 while (tocopy > 0) { in main() 240 n = tocopy; in main() 244 tocopy -= n; in main() 263 tocopy = mem_size - fil_size; in main() 264 if (tocopy > 0) { in main() 267 prog_name, pad, (unsigned long) tocopy); in main() 271 n = tocopy; in main() 280 tocopy -= nwritten; in main() [all …]
|
| /linux/drivers/misc/genwqe/ |
| H A D | card_dev.c | 509 size_t tocopy = 0; in do_flash_update() local 552 tocopy = min_t(size_t, load->size, FLASH_BLOCK); in do_flash_update() 554 rc = copy_from_user(xbuf, buf, tocopy); in do_flash_update() 559 crc = genwqe_crc32(xbuf, tocopy, 0xffffffff); in do_flash_update() 563 __func__, (unsigned long)dma_addr, crc, tocopy, in do_flash_update() 579 *(__be64 *)&req->__asiv[8] = cpu_to_be64(tocopy); in do_flash_update() 591 *(__be32 *)&req->asiv[8] = cpu_to_be32(tocopy); in do_flash_update() 627 load->size -= tocopy; in do_flash_update() 628 flash += tocopy; in do_flash_update() 629 buf += tocopy; in do_flash_update() [all …]
|
| /linux/fs/jfs/ |
| H A D | super.c | 701 int tocopy; in jfs_quota_read() local 713 tocopy = min_t(size_t, sb->s_blocksize - offset, toread); in jfs_quota_read() 721 memset(data, 0, tocopy); in jfs_quota_read() 726 memcpy(data, bh->b_data+offset, tocopy); in jfs_quota_read() 730 toread -= tocopy; in jfs_quota_read() 731 data += tocopy; in jfs_quota_read() 745 int tocopy; in jfs_quota_write() local 752 tocopy = min_t(size_t, sb->s_blocksize - offset, towrite); in jfs_quota_write() 759 if (offset || tocopy != sb->s_blocksize) in jfs_quota_write() 768 memcpy(bh->b_data+offset, data, tocopy); in jfs_quota_write() [all …]
|
| /linux/kernel/events/ |
| H A D | ring_buffer.c | 586 unsigned long tocopy, remainder, len = 0; in perf_output_copy_aux() local 593 tocopy = PAGE_SIZE - offset_in_page(from); in perf_output_copy_aux() 595 tocopy = min(tocopy, to - from); in perf_output_copy_aux() 596 if (!tocopy) in perf_output_copy_aux() 602 remainder = perf_output_copy(handle, addr, tocopy); in perf_output_copy_aux() 606 len += tocopy; in perf_output_copy_aux() 607 from += tocopy; in perf_output_copy_aux()
|
| /linux/drivers/hwtracing/intel_th/ |
| H A D | msu.c | 604 size_t tocopy = data_bytes, copied = 0; in msc_buffer_iterate() local 622 tocopy = DATA_IN_PAGE - data_bytes; in msc_buffer_iterate() 626 if (!tocopy) in msc_buffer_iterate() 629 tocopy -= iter->block_off; in msc_buffer_iterate() 632 if (len < tocopy) { in msc_buffer_iterate() 633 tocopy = len; in msc_buffer_iterate() 637 remaining = fn(data, src, tocopy); in msc_buffer_iterate() 642 copied = tocopy - remaining; in msc_buffer_iterate() 1503 unsigned long start = off, tocopy = 0; in msc_single_to_user() local 1508 tocopy = min(rem, size - start); in msc_single_to_user() [all …]
|
| /linux/sound/pci/asihpi/ |
| H A D | hpicmn.c | 473 unsigned int tocopy; in hpi_check_control_cache_single() local 496 tocopy = pad_string_len - offset; in hpi_check_control_cache_single() 497 if (tocopy > sizeof(phr->u.cu.chars8.sz_data)) in hpi_check_control_cache_single() 498 tocopy = sizeof(phr->u.cu.chars8. in hpi_check_control_cache_single() 502 &pad_string[offset], tocopy); in hpi_check_control_cache_single() 505 pad_string_len - offset - tocopy; in hpi_check_control_cache_single()
|
| /linux/fs/ext2/ |
| H A D | super.c | 1525 int tocopy; in ext2_quota_read() local 1537 tocopy = min_t(size_t, sb->s_blocksize - offset, toread); in ext2_quota_read() 1545 memset(data, 0, tocopy); in ext2_quota_read() 1550 memcpy(data, bh->b_data+offset, tocopy); in ext2_quota_read() 1554 toread -= tocopy; in ext2_quota_read() 1555 data += tocopy; in ext2_quota_read() 1569 int tocopy; in ext2_quota_write() local 1575 tocopy = min_t(size_t, sb->s_blocksize - offset, towrite); in ext2_quota_write() 1582 if (offset || tocopy != EXT2_BLOCK_SIZE(sb)) in ext2_quota_write() 1591 memcpy(bh->b_data+offset, data, tocopy); in ext2_quota_write() [all …]
|
| /linux/fs/f2fs/ |
| H A D | super.c | 3121 int tocopy; in f2fs_quota_read() local 3147 tocopy = min(folio_size(folio) - offset, toread); in f2fs_quota_read() 3162 memcpy_from_folio(data, folio, offset, tocopy); in f2fs_quota_read() 3165 toread -= tocopy; in f2fs_quota_read() 3166 data += tocopy; in f2fs_quota_read() 3167 off += tocopy; in f2fs_quota_read() 3184 int tocopy; in f2fs_quota_write() local 3187 tocopy = min_t(unsigned long, sb->s_blocksize - offset, in f2fs_quota_write() 3190 err = a_ops->write_begin(NULL, mapping, off, tocopy, in f2fs_quota_write() 3201 memcpy_to_folio(folio, offset_in_folio(folio, off), data, tocopy); in f2fs_quota_write() [all …]
|
| /linux/drivers/atm/ |
| H A D | nicstar.c | 2227 int remaining, tocopy; in dequeue_rx() local 2304 tocopy = in dequeue_rx() 2308 (hb), tocopy); in dequeue_rx() 2309 skb_put(hb, tocopy); in dequeue_rx() 2311 remaining -= tocopy; in dequeue_rx()
|
| /linux/fs/ext4/ |
| H A D | super.c | 7307 int tocopy; in ext4_quota_read() local 7318 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread); in ext4_quota_read() 7323 memset(data, 0, tocopy); in ext4_quota_read() 7325 memcpy(data, bh->b_data+offset, tocopy); in ext4_quota_read() 7328 toread -= tocopy; in ext4_quota_read() 7329 data += tocopy; in ext4_quota_read()
|