/Linux-v4.19/drivers/hid/ |
D | hid-roccat-common.c | 135 size_t real_size, uint command) in roccat_common2_sysfs_read() argument 142 if (off >= real_size) in roccat_common2_sysfs_read() 145 if (off != 0 || count != real_size) in roccat_common2_sysfs_read() 149 retval = roccat_common2_receive(usb_dev, command, buf, real_size); in roccat_common2_sysfs_read() 152 return retval ? retval : real_size; in roccat_common2_sysfs_read() 158 size_t real_size, uint command) in roccat_common2_sysfs_write() argument 165 if (off != 0 || count != real_size) in roccat_common2_sysfs_write() 169 retval = roccat_common2_send_with_status(usb_dev, command, buf, real_size); in roccat_common2_sysfs_write() 172 return retval ? retval : real_size; in roccat_common2_sysfs_write()
|
D | hid-roccat-lua.c | 31 size_t real_size, uint command) in lua_sysfs_read() argument 38 if (off >= real_size) in lua_sysfs_read() 41 if (off != 0 || count != real_size) in lua_sysfs_read() 45 retval = roccat_common2_receive(usb_dev, command, buf, real_size); in lua_sysfs_read() 48 return retval ? retval : real_size; in lua_sysfs_read() 53 size_t real_size, uint command) in lua_sysfs_write() argument 60 if (off != 0 || count != real_size) in lua_sysfs_write() 64 retval = roccat_common2_send(usb_dev, command, buf, real_size); in lua_sysfs_write() 67 return retval ? retval : real_size; in lua_sysfs_write()
|
D | hid-roccat-arvo.c | 192 loff_t off, size_t count, size_t real_size, uint command) in arvo_sysfs_write() argument 199 if (off != 0 || count != real_size) in arvo_sysfs_write() 203 retval = roccat_common2_send(usb_dev, command, buf, real_size); in arvo_sysfs_write() 206 return (retval ? retval : real_size); in arvo_sysfs_write() 211 size_t count, size_t real_size, uint command) in arvo_sysfs_read() argument 218 if (off >= real_size) in arvo_sysfs_read() 221 if (off != 0 || count != real_size) in arvo_sysfs_read() 225 retval = roccat_common2_receive(usb_dev, command, buf, real_size); in arvo_sysfs_read() 228 return (retval ? retval : real_size); in arvo_sysfs_read()
|
D | hid-roccat-koneplus.c | 88 size_t real_size, uint command) in koneplus_sysfs_read() argument 95 if (off >= real_size) in koneplus_sysfs_read() 98 if (off != 0 || count != real_size) in koneplus_sysfs_read() 102 retval = roccat_common2_receive(usb_dev, command, buf, real_size); in koneplus_sysfs_read() 108 return real_size; in koneplus_sysfs_read() 113 size_t real_size, uint command) in koneplus_sysfs_write() argument 120 if (off != 0 || count != real_size) in koneplus_sysfs_write() 125 buf, real_size); in koneplus_sysfs_write() 131 return real_size; in koneplus_sysfs_write()
|
D | hid-roccat-pyra.c | 91 size_t real_size, uint command) in pyra_sysfs_read() argument 98 if (off >= real_size) in pyra_sysfs_read() 101 if (off != 0 || count != real_size) in pyra_sysfs_read() 105 retval = roccat_common2_receive(usb_dev, command, buf, real_size); in pyra_sysfs_read() 111 return real_size; in pyra_sysfs_read() 116 size_t real_size, uint command) in pyra_sysfs_write() argument 123 if (off != 0 || count != real_size) in pyra_sysfs_write() 127 retval = roccat_common2_send_with_status(usb_dev, command, (void *)buf, real_size); in pyra_sysfs_write() 133 return real_size; in pyra_sysfs_write()
|
D | hid-roccat-kovaplus.c | 131 size_t real_size, uint command) in kovaplus_sysfs_read() argument 138 if (off >= real_size) in kovaplus_sysfs_read() 141 if (off != 0 || count != real_size) in kovaplus_sysfs_read() 145 retval = roccat_common2_receive(usb_dev, command, buf, real_size); in kovaplus_sysfs_read() 151 return real_size; in kovaplus_sysfs_read() 156 size_t real_size, uint command) in kovaplus_sysfs_write() argument 163 if (off != 0 || count != real_size) in kovaplus_sysfs_write() 168 buf, real_size); in kovaplus_sysfs_write() 174 return real_size; in kovaplus_sysfs_write()
|
D | hid-roccat-isku.c | 122 size_t real_size, uint command) in isku_sysfs_read() argument 129 if (off >= real_size) in isku_sysfs_read() 132 if (off != 0 || count > real_size) in isku_sysfs_read() 144 size_t real_size, uint command) in isku_sysfs_write() argument 151 if (off != 0 || count > real_size) in isku_sysfs_write()
|
D | hid-roccat-common.h | 45 size_t real_size, uint command); 48 size_t real_size, uint command);
|
/Linux-v4.19/drivers/net/ethernet/mellanox/mlx4/ |
D | en_tx.c | 605 int real_size; in get_real_size() local 613 real_size = CTRL_SIZE + shinfo->nr_frags * DS_SIZE + in get_real_size() 619 real_size += DS_SIZE; in get_real_size() 632 real_size = inline_size(skb); in get_real_size() 634 real_size = CTRL_SIZE + in get_real_size() 638 return real_size; in get_real_size() 842 int real_size; in mlx4_en_xmit() local 864 real_size = get_real_size(skb, shinfo, dev, &lso_header_size, in mlx4_en_xmit() 866 if (unlikely(!real_size)) in mlx4_en_xmit() 870 desc_size = ALIGN(real_size, TXBB_SIZE); in mlx4_en_xmit() [all …]
|
/Linux-v4.19/drivers/uwb/ |
D | neh.c | 483 size_t size, real_size, event_size; in uwb_rc_neh_grok() local 499 &real_size, &event_size); in uwb_rc_neh_grok() 524 real_size = event_size = ret; in uwb_rc_neh_grok() 531 itr += real_size; in uwb_rc_neh_grok() 532 size -= real_size; in uwb_rc_neh_grok()
|
/Linux-v4.19/lib/ |
D | test_kasan.c | 422 size_t size = 123, real_size; in ksize_unpoisons_memory() local 430 real_size = ksize(ptr); in ksize_unpoisons_memory() 434 ptr[real_size] = 'y'; in ksize_unpoisons_memory()
|
/Linux-v4.19/fs/ |
D | posix_acl.c | 798 int real_size, n; in posix_acl_to_xattr() local 800 real_size = posix_acl_xattr_size(acl->a_count); in posix_acl_to_xattr() 802 return real_size; in posix_acl_to_xattr() 803 if (real_size > size) in posix_acl_to_xattr() 827 return real_size; in posix_acl_to_xattr()
|
/Linux-v4.19/fs/isofs/ |
D | rock.h | 81 __u8 real_size[8]; member
|
D | rock.c | 574 real_size); in parse_rock_ridge_inode_internal()
|
/Linux-v4.19/fs/xfs/libxfs/ |
D | xfs_inode_fork.c | 137 int mem_size = size, real_size = 0; in xfs_init_local_fork() local 151 real_size = roundup(mem_size, 4); in xfs_init_local_fork() 152 ifp->if_u1.if_data = kmem_alloc(real_size, KM_SLEEP | KM_NOFS); in xfs_init_local_fork()
|
/Linux-v4.19/drivers/video/fbdev/ |
D | s3c-fb.c | 1086 unsigned int real_size, virt_size, size; in s3c_fb_alloc_memory() local 1092 real_size = windata->xres * windata->yres; in s3c_fb_alloc_memory() 1096 real_size, windata->xres, windata->yres, in s3c_fb_alloc_memory() 1099 size = (real_size > virt_size) ? real_size : virt_size; in s3c_fb_alloc_memory()
|
/Linux-v4.19/arch/x86/events/intel/ |
D | bts.c | 60 size_t real_size; /* multiple of BTS_RECORD_SIZE */ member 112 buf->real_size = size - size % BTS_RECORD_SIZE; in bts_buffer_setup_aux()
|
/Linux-v4.19/arch/powerpc/kernel/ |
D | prom_init.c | 712 __be32 real_size; member 853 .real_size = cpu_to_be32(0xffffffff), 936 u32 real_size; member 988 .real_size = ~0U,
|
/Linux-v4.19/mm/ |
D | vmalloc.c | 1735 unsigned long real_size = size; in __vmalloc_node_range() local 1763 "vmalloc: allocation failure: %lu bytes", real_size); in __vmalloc_node_range()
|
D | page_alloc.c | 6073 unsigned long size, real_size; in calculate_node_totalpages() local 6081 real_size = size - zone_absent_pages_in_node(pgdat->node_id, i, in calculate_node_totalpages() 6089 zone->present_pages = real_size; in calculate_node_totalpages() 6092 realtotalpages += real_size; in calculate_node_totalpages()
|