| /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 | 588 unsigned long tocopy, remainder, len = 0; in perf_output_copy_aux() local 595 tocopy = PAGE_SIZE - offset_in_page(from); in perf_output_copy_aux() 597 tocopy = min(tocopy, to - from); in perf_output_copy_aux() 598 if (!tocopy) in perf_output_copy_aux() 604 remainder = perf_output_copy(handle, addr, tocopy); in perf_output_copy_aux() 608 len += tocopy; in perf_output_copy_aux() 609 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 | 479 unsigned int tocopy; in hpi_check_control_cache_single() 502 tocopy = pad_string_len - offset; in hpi_check_control_cache_single() 503 if (tocopy > sizeof(phr->u.cu.chars8.sz_data)) in hpi_check_control_cache_single() 504 tocopy = sizeof(phr->u.cu.chars8. in hpi_check_control_cache_single() 508 &pad_string[offset], tocopy); in hpi_check_control_cache_single() 511 pad_string_len - offset - tocopy; in hpi_check_control_cache_single() 473 unsigned int tocopy; hpi_check_control_cache_single() local
|
| /linux/fs/ext4/ |
| H A D | super.c | 7340 int tocopy; in ext4_quota_read() local 7351 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread); in ext4_quota_read() 7356 memset(data, 0, tocopy); in ext4_quota_read() 7358 memcpy(data, bh->b_data+offset, tocopy); in ext4_quota_read() 7361 toread -= tocopy; in ext4_quota_read() 7362 data += tocopy; in ext4_quota_read()
|