Searched refs:newsize (Results 1 – 8 of 8) sorted by relevance
| /u-boot/common/ |
| A D | dlmalloc.c | 1760 newsize = oldsize = chunksize(oldp); 1801 newsize += nextsize; 1815 newsize += nextsize; 1845 newsize += prevsize + nextsize; 1863 newsize += nextsize + prevsize; 1876 newsize += prevsize; 1896 newsize += chunksize(newp); 1916 remainder_size = newsize - nb; 1926 set_head_size(newp, newsize); 2061 newsize = chunksize(p) - leadsize; [all …]
|
| A D | dlmalloc.src | 2531 newsize = oldsize = chunksize(oldp); 2571 newsize += nextsize; 2583 newsize += nextsize; 2611 newsize += prevsize + nextsize; 2627 newsize += nextsize + prevsize; 2639 newsize += prevsize; 2658 newsize += chunksize(newp); 2675 remainder_size = newsize - nb; 2683 set_head_size(newp, newsize); 2771 newsize = chunksize(p) - leadsize; [all …]
|
| /u-boot/scripts/dtc/ |
| A D | data.c | 42 int newsize; in data_grow_for() local 49 newsize = xlen; in data_grow_for() 51 while ((d.len + xlen) > newsize) in data_grow_for() 52 newsize *= 2; in data_grow_for() 54 nd.val = xrealloc(d.val, newsize); in data_grow_for()
|
| /u-boot/scripts/dtc/libfdt/ |
| A D | fdt_rw.c | 420 int newsize; in fdt_open_into() local 452 newsize = FDT_ALIGN(sizeof(struct fdt_header), 8) + mem_rsv_size in fdt_open_into() 455 if (bufsize < newsize) in fdt_open_into() 461 if (((tmp + newsize) > fdtstart) && (tmp < fdtend)) { in fdt_open_into() 464 if ((tmp + newsize) > ((char *)buf + bufsize)) in fdt_open_into() 469 memmove(buf, tmp, newsize); in fdt_open_into()
|
| /u-boot/net/ |
| A D | wget.c | 66 ulong newsize = offset + len; in store_block() local 74 net_boot_file_size = newsize; in store_block()
|
| A D | tftp.c | 160 ulong newsize = offset + len; in store_block() local 181 if (net_boot_file_size < newsize) in store_block() 182 net_boot_file_size = newsize; in store_block()
|
| A D | nfs.c | 93 ulong newsize = offset + len; in store_block() local 122 net_boot_file_size = newsize; in store_block()
|
| /u-boot/test/cmd/ |
| A D | fdt.c | 217 const int newsize = sizeof(fdt) / 2; in fdt_test_addr_resize() local 226 ut_assertok(run_commandf("fdt addr %08lx %x", addr, newsize)); in fdt_test_addr_resize() 234 (int)sizeof(fdt) / 4, newsize); in fdt_test_addr_resize() 284 const unsigned int newsize = 0x2000; in fdt_test_resize() local 297 ut_assertok(run_commandf("fdt resize %x", newsize)); in fdt_test_resize() 298 ut_asserteq(ts + newsize, fdt_totalsize(fdt)); in fdt_test_resize()
|
Completed in 25 milliseconds