Searched defs:copy_size (Results 1 - 5 of 5) sorted by relevance
/fs/reiserfs/ |
H A D | resize.c | 36 int copy_size; local 97 * using the copy_size var below allows this code to work for 100 copy_size = bmap_nr_new < bmap_nr ? bmap_nr_new : bmap_nr; 101 copy_size = 102 copy_size * sizeof(struct reiserfs_list_bitmap_node *); 106 memcpy(jbitmap[i].bitmaps, jb->bitmaps, copy_size);
|
H A D | inode.c | 2382 int copy_size; local 2429 copy_size = ih_item_len(ih) - pos_in_item; 2458 copy_size); 2461 bytes_copied += copy_size; 2469 copy_size);
|
/fs/jfs/ |
H A D | namei.c | 990 int copy_size = min(ssize, PSIZE); local 1000 memcpy(mp->data, name, copy_size); 1002 ssize -= copy_size; 1003 name += copy_size;
|
/fs/cifs/ |
H A D | smb2pdu.c | 1082 int copy_size; local 1124 copy_size = uni_path_len / 8 * 8; 1125 if (copy_size < uni_path_len) 1126 copy_size += 8; 1128 copy_path = kzalloc(copy_size, GFP_KERNEL); 1133 uni_path_len = copy_size;
|
/fs/btrfs/ |
H A D | inode.c | 6459 size_t copy_size; local 6466 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset, 6469 em->len = ALIGN(copy_size, root->sectorsize); 6486 copy_size); 6487 if (pg_offset + copy_size < PAGE_CACHE_SIZE) { 6488 memset(map + pg_offset + copy_size, 0, 6490 copy_size); 6511 copy_size);
|
Completed in 104 milliseconds