| /linux/scripts/kconfig/ |
| H A D | lexer.l | 67 int new_size = text_size + size + 1; in append_string() local 68 if (new_size > text_asize) { in append_string() 69 new_size += START_STRSIZE - 1; in append_string() 70 new_size &= -START_STRSIZE; in append_string() 71 text = xrealloc(text, new_size); in append_string() 72 text_asize = new_size; in append_string()
|
| /linux/include/trace/events/ |
| H A D | fscache.h | 463 TP_PROTO(struct fscache_cookie *cookie, loff_t new_size), 465 TP_ARGS(cookie, new_size), 469 __field(loff_t, new_size ) 474 __entry->new_size = new_size; 478 __entry->cookie, __entry->new_size) 482 TP_PROTO(struct fscache_cookie *cookie, loff_t new_size), 484 TP_ARGS(cookie, new_size), 489 __field(loff_t, new_size ) 495 __entry->new_size = new_size; 501 __entry->new_size)
|
| /linux/arch/sparc/mm/ |
| H A D | tsb.c | 370 static unsigned long tsb_size_to_rss_limit(unsigned long new_size) in tsb_size_to_rss_limit() argument 372 unsigned long num_ents = (new_size / sizeof(struct tsb)); in tsb_size_to_rss_limit() 399 unsigned long new_size, old_size, flags; in tsb_grow() local 409 for (new_size = 8192; new_size < max_tsb_size; new_size <<= 1UL) { in tsb_grow() 410 new_rss_limit = tsb_size_to_rss_limit(new_size); in tsb_grow() 416 if (new_size == max_tsb_size) in tsb_grow() 421 if (new_size > (PAGE_SIZE * 2)) in tsb_grow() 435 new_size = 8192; in tsb_grow() 449 tsb_init(new_tsb, new_size); in tsb_grow() 509 copy_tsb(old_tsb_base, old_size, new_tsb_base, new_size, in tsb_grow() [all …]
|
| /linux/tools/testing/selftests/filesystems/fuse/ |
| H A D | fuse_mnt.c | 87 size_t new_size; in test_write() local 95 new_size = MAX(offset + size, content_size); in test_write() 97 if (new_size > content_size) in test_write() 98 content = realloc(content, new_size); in test_write() 100 content_size = new_size; in test_write()
|
| /linux/tools/include/nolibc/sys/ |
| H A D | mman.h | 47 void *_sys_mremap(void *old_address, size_t old_size, size_t new_size, int flags, void *new_address) in sys_mremap() argument 50 new_size, flags, new_address); in sys_mremap() 54 void *mremap(void *old_address, size_t old_size, size_t new_size, int flags, void *new_address) in mremap() argument 56 void *ret = _sys_mremap(old_address, old_size, new_size, flags, new_address); in mremap()
|
| /linux/fs/jfs/ |
| H A D | xattr.c | 602 int new_size) in ea_put() argument 608 if (new_size == 0) { in ea_put() 612 assert(new_size <= sizeof (ji->i_inline_ea)); in ea_put() 615 DXDsize(&ea_buf->new_ea, new_size); in ea_put() 619 rc = ea_write(inode, ea_buf->xattr, new_size, &ea_buf->new_ea); in ea_put() 626 rc = ea_write(inode, ea_buf->xattr, new_size, &ea_buf->new_ea); in ea_put() 672 int new_size; in __jfs_setxattr() local 688 new_size = sizeof (struct jfs_ea_list); in __jfs_setxattr() 704 new_size += EA_SIZE(ea); in __jfs_setxattr() 719 new_size += sizeof (struct jfs_ea) + namelen + 1 + value_len; in __jfs_setxattr() [all …]
|
| H A D | namei.c | 473 s64 new_size = 0; in jfs_unlink() local 529 if ((new_size = commitZeroLink(tid, ip)) < 0) { in jfs_unlink() 535 rc = new_size; in jfs_unlink() 548 if (new_size) in jfs_unlink() 564 while (new_size && (rc == 0)) { in jfs_unlink() 567 new_size = xtTruncate_pmap(tid, ip, new_size); in jfs_unlink() 568 if (new_size < 0) { in jfs_unlink() 570 rc = new_size; in jfs_unlink() 1087 s64 new_size = 0; in jfs_rename() local 1201 if ((new_size = commitZeroLink(tid, new_ip)) < 0) { in jfs_rename() [all …]
|
| /linux/tools/bootconfig/ |
| H A D | test-bootconfig.sh | 57 new_size=$(wc -c < $INITRD) 66 xpass test $new_size -eq $total_size 72 xpass test $new_size -eq $(wc -c < $INITRD) 78 new_size=$(wc -c < $INITRD) 79 xpass test $new_size -eq $initrd_size
|
| /linux/drivers/gpu/drm/i915/ |
| H A D | i915_deps.c | 81 unsigned int new_size = 2 * deps->fences_size; in i915_deps_grow() local 84 new_size = max(new_size, I915_DEPS_MIN_ALLOC_CHUNK); in i915_deps_grow() 85 new_fences = kmalloc_objs(*new_fences, new_size, deps->gfp); in i915_deps_grow() 94 deps->fences_size = new_size; in i915_deps_grow()
|
| /linux/mm/kasan/ |
| H A D | common.c | 611 unsigned long new_size) in __kasan_vrealloc() argument 613 if (new_size < old_size) { in __kasan_vrealloc() 614 kasan_poison_last_granule(addr, new_size); in __kasan_vrealloc() 616 new_size = round_up(new_size, KASAN_GRANULE_SIZE); in __kasan_vrealloc() 618 if (new_size < old_size) in __kasan_vrealloc() 619 __kasan_poison_vmalloc(addr + new_size, in __kasan_vrealloc() 620 old_size - new_size); in __kasan_vrealloc() 621 } else if (new_size > old_size) { in __kasan_vrealloc() 624 new_size - old_size, in __kasan_vrealloc()
|
| /linux/drivers/hid/ |
| H A D | hid-gembird.c | 67 size_t new_size = *rsize + delta_size; in gembird_report_fixup() local 72 new_rdesc = devm_kzalloc(&hdev->dev, new_size, GFP_KERNEL); in gembird_report_fixup() 90 *rsize = new_size; in gembird_report_fixup()
|
| /linux/kernel/kcsan/ |
| H A D | debugfs.c | 144 size_t new_size = 0; in insert_report_filterlist() local 158 new_size = (report_filterlist.size ?: 4) * 2; in insert_report_filterlist() 159 delay_free = new_addrs = kmalloc_array(new_size, sizeof(unsigned long), GFP_KERNEL); in insert_report_filterlist() 167 if (report_filterlist.used >= new_size) { in insert_report_filterlist() 178 report_filterlist.size = new_size; in insert_report_filterlist()
|
| /linux/drivers/platform/x86/dell/dell-wmi-sysman/ |
| H A D | passwordattr-interface.c | 43 size_t password_type_size, current_password_size, new_size; in set_new_password() local 69 new_size = calculate_string_buffer(new); in set_new_password() 70 buffer_size = security_area_size + password_type_size + current_password_size + new_size; in set_new_password() 92 ret = populate_string_buffer(start, new_size, new); in set_new_password()
|
| /linux/fs/xfs/ |
| H A D | xfs_inode.h | 208 xfs_new_eof(struct xfs_inode *ip, xfs_fsize_t new_size) in xfs_new_eof() 212 if (new_size > i_size || new_size < 0) 213 new_size = i_size; 214 return new_size > ip->i_disk_size ? new_size : 0; 606 xfs_fsize_t new_size) 608 return xfs_itruncate_extents_flags(tpp, ip, whichfork, new_size, 0); 204 xfs_new_eof(struct xfs_inode * ip,xfs_fsize_t new_size) xfs_new_eof() argument 602 xfs_itruncate_extents(struct xfs_trans ** tpp,struct xfs_inode * ip,int whichfork,xfs_fsize_t new_size) xfs_itruncate_extents() argument
|
| /linux/fs/ntfs/ |
| H A D | runlist.c | 60 * @new_size: number of runlist elements we need space for 75 int old_size, int new_size) in ntfs_rl_realloc() argument 80 new_size = new_size * sizeof(*rl); in ntfs_rl_realloc() 81 if (old_size == new_size) in ntfs_rl_realloc() 84 new_rl = kvzalloc(new_size, GFP_NOFS); in ntfs_rl_realloc() 89 if (unlikely(old_size > new_size)) in ntfs_rl_realloc() 90 old_size = new_size; in ntfs_rl_realloc() 101 * @new_size: number of runlist elements we need space for 119 int old_size, int new_size) in ntfs_rl_realloc_nofail() argument 214 ntfs_rl_append(struct runlist_element * dst,int dsize,struct runlist_element * src,int ssize,int loc,size_t * new_size) ntfs_rl_append() argument 279 ntfs_rl_insert(struct runlist_element * dst,int dsize,struct runlist_element * src,int ssize,int loc,size_t * new_size) ntfs_rl_insert() argument 374 ntfs_rl_replace(struct runlist_element * dst,int dsize,struct runlist_element * src,int ssize,int loc,size_t * new_size) ntfs_rl_replace() argument 461 ntfs_rl_split(struct runlist_element * dst,int dsize,struct runlist_element * src,int ssize,int loc,size_t * new_size) ntfs_rl_split() argument 1551 int new_size = rl - runlist->rl + 1; ntfs_rl_truncate_nolock() local [all...] |
| H A D | file.c | 839 loff_t old_size, new_size; in ntfs_allocate_range() 844 new_size = max_t(loff_t, old_size, offset + len); in ntfs_punch_hole() 848 err = inode_newsize_ok(vi, new_size); in ntfs_punch_hole() 867 if (!(mode & FALLOC_FL_KEEP_SIZE) && new_size != old_size) in ntfs_punch_hole() 952 loff_t old_size, new_size; in ntfs_collapse_range() 973 new_size = old_size - ntfs_cluster_to_bytes(vol, end_vcn - start_vcn); in ntfs_insert_range() 974 if (new_size < 0) in ntfs_insert_range() 975 new_size = 0; in ntfs_insert_range() 988 if (new_size != old_size) in ntfs_insert_range() 1001 loff_t old_size, new_size; in ntfs_insert_range() 810 loff_t old_size, new_size; ntfs_allocate_range() local 923 loff_t old_size, new_size; ntfs_collapse_range() local 972 loff_t old_size, new_size; ntfs_insert_range() local [all...] |
| H A D | index.c | 433 u32 new_size; 437 new_size = le32_to_cpu(ih->index_length) - le16_to_cpu(ie->length); 438 ih->index_length = cpu_to_le32(new_size); 440 new_size - ((u8 *)ie - (u8 *)ih)); 1483 u32 new_size; in ntfs_ib_split() 1492 new_size = le32_to_cpu(icx->ir->index.index_length) + in ntfs_ib_split() 1495 new_size += sizeof(s64); in ntfs_ib_split() 1497 ret = ntfs_ir_make_space(icx, new_size); in ntfs_ib_split() 1636 int allocated_size, new_size; in ntfs_ih_takeout() 1658 new_size in ntfs_ih_takeout() 377 u32 new_size; ntfs_ie_delete() local 1386 u32 new_size; ntfs_ir_insert_median() local 1539 int allocated_size, new_size; ntfs_ie_add() local 1779 u32 new_size; ntfs_index_rm_node() local [all...] |
| /linux/drivers/gpu/drm/vmwgfx/ |
| H A D | vmwgfx_cotable.c | 399 static int vmw_cotable_resize(struct vmw_resource *res, size_t new_size) in vmw_cotable_resize() argument 416 .size = new_size, in vmw_cotable_resize() 486 res->guest_memory_size = new_size; in vmw_cotable_resize() 547 size_t new_size = res->guest_memory_size; in vmw_cotable_create() local 553 while (needed_size > new_size) in vmw_cotable_create() 554 new_size *= 2; in vmw_cotable_create() 556 if (likely(new_size <= res->guest_memory_size)) { in vmw_cotable_create() 566 return vmw_cotable_resize(res, new_size); in vmw_cotable_create()
|
| /linux/rust/helpers/ |
| H A D | slab.c | 6 rust_helper_krealloc_node_align(const void *objp, size_t new_size, unsigned long align, in rust_helper_krealloc_node_align() argument 9 return krealloc_node_align(objp, new_size, align, flags, node); in rust_helper_krealloc_node_align()
|
| /linux/tools/testing/selftests/ublk/ |
| H A D | test_generic_10.sh | 23 new_size=$(_get_disk_size /dev/ublkb"${dev_id}") 24 if [ "$new_size" != "$size" ]; then
|
| /linux/drivers/gpu/drm/lima/ |
| H A D | lima_gem.c | 27 size_t new_size = bo->heap_size ? bo->heap_size * 2 : in lima_heap_alloc() local 35 new_size = min(new_size, bo->base.base.size); in lima_heap_alloc() 55 for (i = old_size >> PAGE_SHIFT; i < new_size >> PAGE_SHIFT; i++) { in lima_heap_alloc() 68 new_size, GFP_KERNEL); in lima_heap_alloc() 95 bo->heap_size = new_size; in lima_heap_alloc()
|
| /linux/drivers/comedi/ |
| H A D | comedi_buf.c | 210 unsigned long new_size) in comedi_buf_alloc() argument 217 new_size = (new_size + PAGE_SIZE - 1) & PAGE_MASK; in comedi_buf_alloc() 220 if (async->prealloc_bufsz == new_size) in comedi_buf_alloc() 227 if (new_size) { in comedi_buf_alloc() 228 unsigned int n_pages = new_size >> PAGE_SHIFT; in comedi_buf_alloc()
|
| /linux/tools/include/nolibc/ |
| H A D | stdlib.h | 163 void *realloc(void *old_ptr, size_t new_size) in realloc() argument 170 return malloc(new_size); in realloc() 175 * Don't realloc() if @user_p_len >= @new_size, this block of in realloc() 176 * memory is still enough to handle the @new_size. Just return in realloc() 179 if (user_p_len >= new_size) in realloc() 182 ret = malloc(new_size); in realloc()
|
| /linux/fs/netfs/ |
| H A D | fscache_io.c | 270 void __fscache_resize_cookie(struct fscache_cookie *cookie, loff_t new_size) in __fscache_resize_cookie() argument 274 trace_fscache_resize(cookie, new_size); in __fscache_resize_cookie() 284 cookie->volume->cache->ops->resize_cookie(&cres, new_size); in __fscache_resize_cookie()
|
| /linux/drivers/misc/vmw_vmci/ |
| H A D | vmci_handle_array.c | 48 size_t new_size = struct_size(array, entries, in vmci_handle_arr_append_entry() local 54 new_array = krealloc(array, new_size, GFP_ATOMIC); in vmci_handle_arr_append_entry()
|