Home
last modified time | relevance | path

Searched refs:tocopy (Results 1 – 15 of 15) sorted by relevance

/linux-4.1.27/arch/arm/lib/
Duaccess_with_memcpy.c106 int tocopy; in __copy_to_user_memcpy() local
117 tocopy = (~(unsigned long)to & ~PAGE_MASK) + 1; in __copy_to_user_memcpy()
118 if (tocopy > n) in __copy_to_user_memcpy()
119 tocopy = n; in __copy_to_user_memcpy()
121 memcpy((void *)to, from, tocopy); in __copy_to_user_memcpy()
122 to += tocopy; in __copy_to_user_memcpy()
123 from += tocopy; in __copy_to_user_memcpy()
124 n -= tocopy; in __copy_to_user_memcpy()
165 int tocopy; in __clear_user_memset() local
174 tocopy = (~(unsigned long)addr & ~PAGE_MASK) + 1; in __clear_user_memset()
[all …]
/linux-4.1.27/arch/alpha/boot/tools/
Dobjstrip.c54 size_t nwritten, tocopy, n, mem_size, fil_size, pad = 0; in main() local
237 tocopy = fil_size; in main()
238 while (tocopy > 0) { in main()
239 n = tocopy; in main()
243 tocopy -= n; in main()
262 tocopy = mem_size - fil_size; in main()
263 if (tocopy > 0) { in main()
266 prog_name, pad, (unsigned long) tocopy); in main()
270 n = tocopy; in main()
279 tocopy -= nwritten; in main()
[all …]
/linux-4.1.27/kernel/
Dcapability.c81 static int cap_validate_magic(cap_user_header_t header, unsigned *tocopy) in cap_validate_magic() argument
91 *tocopy = _LINUX_CAPABILITY_U32S_1; in cap_validate_magic()
99 *tocopy = _LINUX_CAPABILITY_U32S_3; in cap_validate_magic()
153 unsigned tocopy; in SYSCALL_DEFINE2() local
156 ret = cap_validate_magic(header, &tocopy); in SYSCALL_DEFINE2()
171 for (i = 0; i < tocopy; i++) { in SYSCALL_DEFINE2()
196 if (copy_to_user(dataptr, kdata, tocopy in SYSCALL_DEFINE2()
226 unsigned i, tocopy, copybytes; in SYSCALL_DEFINE2() local
232 ret = cap_validate_magic(header, &tocopy); in SYSCALL_DEFINE2()
243 copybytes = tocopy * sizeof(struct __user_cap_data_struct); in SYSCALL_DEFINE2()
[all …]
/linux-4.1.27/drivers/misc/genwqe/
Dcard_dev.c513 size_t tocopy = 0; in do_flash_update() local
556 tocopy = min_t(size_t, load->size, FLASH_BLOCK); in do_flash_update()
558 rc = copy_from_user(xbuf, buf, tocopy); in do_flash_update()
563 crc = genwqe_crc32(xbuf, tocopy, 0xffffffff); in do_flash_update()
567 __func__, (unsigned long)dma_addr, crc, tocopy, in do_flash_update()
583 *(__be64 *)&req->__asiv[8] = cpu_to_be64(tocopy); in do_flash_update()
595 *(__be32 *)&req->asiv[8] = cpu_to_be32(tocopy); in do_flash_update()
631 load->size -= tocopy; in do_flash_update()
632 flash += tocopy; in do_flash_update()
633 buf += tocopy; in do_flash_update()
[all …]
/linux-4.1.27/fs/jfs/
Dsuper.c748 int tocopy; in jfs_quota_read() local
760 tocopy = sb->s_blocksize - offset < toread ? in jfs_quota_read()
769 memset(data, 0, tocopy); in jfs_quota_read()
774 memcpy(data, bh->b_data+offset, tocopy); in jfs_quota_read()
778 toread -= tocopy; in jfs_quota_read()
779 data += tocopy; in jfs_quota_read()
793 int tocopy; in jfs_quota_write() local
800 tocopy = sb->s_blocksize - offset < towrite ? in jfs_quota_write()
808 if (offset || tocopy != sb->s_blocksize) in jfs_quota_write()
817 memcpy(bh->b_data+offset, data, tocopy); in jfs_quota_write()
[all …]
/linux-4.1.27/sound/usb/bcd2000/
Dbcd2000.c108 unsigned int payload_length, tocopy; in bcd2000_midi_handle_input() local
126 tocopy = min(payload_length, buf_len-1); in bcd2000_midi_handle_input()
129 &buf[1], tocopy); in bcd2000_midi_handle_input()
132 &buf[1], tocopy); in bcd2000_midi_handle_input()
/linux-4.1.27/sound/pci/asihpi/
Dhpicmn.c482 unsigned int tocopy; in hpi_check_control_cache_single() local
505 tocopy = pad_string_len - offset; in hpi_check_control_cache_single()
506 if (tocopy > sizeof(phr->u.cu.chars8.sz_data)) in hpi_check_control_cache_single()
507 tocopy = sizeof(phr->u.cu.chars8. in hpi_check_control_cache_single()
511 &pad_string[offset], tocopy); in hpi_check_control_cache_single()
514 pad_string_len - offset - tocopy; in hpi_check_control_cache_single()
/linux-4.1.27/fs/ext2/
Dsuper.c1449 int tocopy; in ext2_quota_read() local
1461 tocopy = sb->s_blocksize - offset < toread ? in ext2_quota_read()
1470 memset(data, 0, tocopy); in ext2_quota_read()
1475 memcpy(data, bh->b_data+offset, tocopy); in ext2_quota_read()
1479 toread -= tocopy; in ext2_quota_read()
1480 data += tocopy; in ext2_quota_read()
1494 int tocopy; in ext2_quota_write() local
1500 tocopy = sb->s_blocksize - offset < towrite ? in ext2_quota_write()
1508 if (offset || tocopy != EXT2_BLOCK_SIZE(sb)) in ext2_quota_write()
1517 memcpy(bh->b_data+offset, data, tocopy); in ext2_quota_write()
[all …]
/linux-4.1.27/security/
Dcommoncap.c385 unsigned tocopy, i; in get_vfs_caps_from_disk() local
411 tocopy = VFS_CAP_U32_1; in get_vfs_caps_from_disk()
416 tocopy = VFS_CAP_U32_2; in get_vfs_caps_from_disk()
423 if (i >= tocopy) in get_vfs_caps_from_disk()
/linux-4.1.27/fs/reiserfs/
Dsuper.c2408 int err = 0, offset = off & (sb->s_blocksize - 1), tocopy; in reiserfs_quota_read() local
2419 tocopy = in reiserfs_quota_read()
2433 memset(data, 0, tocopy); in reiserfs_quota_read()
2438 memcpy(data, bh->b_data + offset, tocopy); in reiserfs_quota_read()
2442 toread -= tocopy; in reiserfs_quota_read()
2443 data += tocopy; in reiserfs_quota_read()
2458 int err = 0, offset = off & (sb->s_blocksize - 1), tocopy; in reiserfs_quota_write() local
2469 tocopy = sb->s_blocksize - offset < towrite ? in reiserfs_quota_write()
2477 if (offset || tocopy != sb->s_blocksize) in reiserfs_quota_write()
2486 memcpy(bh->b_data + offset, data, tocopy); in reiserfs_quota_write()
[all …]
/linux-4.1.27/fs/ocfs2/
Dquota_global.c175 size_t toread, tocopy; in ocfs2_quota_read() local
184 tocopy = min_t(size_t, (sb->s_blocksize - offset), toread); in ocfs2_quota_read()
202 memcpy(data, bh->b_data + offset, tocopy); in ocfs2_quota_read()
205 toread -= tocopy; in ocfs2_quota_read()
206 data += tocopy; in ocfs2_quota_read()
/linux-4.1.27/drivers/net/wireless/
Dwl3501_cs.c1756 u8 implemented, restricted, keys[100], len_keys, tocopy; in wl3501_get_encode() local
1781 tocopy = min_t(u16, len_keys, wrqu->encoding.length); in wl3501_get_encode()
1782 tocopy = min_t(u8, tocopy, 100); in wl3501_get_encode()
1783 wrqu->encoding.length = tocopy; in wl3501_get_encode()
1784 memcpy(extra, keys, tocopy); in wl3501_get_encode()
/linux-4.1.27/fs/ext3/
Dsuper.c3023 int tocopy; in ext3_quota_read() local
3034 tocopy = sb->s_blocksize - offset < toread ? in ext3_quota_read()
3040 memset(data, 0, tocopy); in ext3_quota_read()
3042 memcpy(data, bh->b_data+offset, tocopy); in ext3_quota_read()
3045 toread -= tocopy; in ext3_quota_read()
3046 data += tocopy; in ext3_quota_read()
/linux-4.1.27/drivers/atm/
Dnicstar.c2214 int remaining, tocopy; in dequeue_rx() local
2291 tocopy = in dequeue_rx()
2295 (hb), tocopy); in dequeue_rx()
2296 skb_put(hb, tocopy); in dequeue_rx()
2298 remaining -= tocopy; in dequeue_rx()
/linux-4.1.27/fs/ext4/
Dsuper.c5430 int tocopy; in ext4_quota_read() local
5441 tocopy = sb->s_blocksize - offset < toread ? in ext4_quota_read()
5447 memset(data, 0, tocopy); in ext4_quota_read()
5449 memcpy(data, bh->b_data+offset, tocopy); in ext4_quota_read()
5452 toread -= tocopy; in ext4_quota_read()
5453 data += tocopy; in ext4_quota_read()