Searched refs:realloc (Results 1 – 25 of 30) sorted by relevance
12
/u-boot/arch/sandbox/include/asm/ |
A D | malloc.h | 13 void *realloc(void *ptr, size_t size);
|
/u-boot/include/ |
A D | malloc.h | 875 #pragma weak realloc = __libc_realloc macro 885 #define realloc realloc_simple macro 909 #define realloc dlrealloc macro 923 # define rEALLOc realloc
|
/u-boot/tools/ |
A D | getline.c | 56 *lineptr = realloc(*lineptr, *n); in getstr()
|
A D | mkenvimage.c | 172 filebuf = realloc(filebuf, filesize + CHUNK_SIZE); in main()
|
A D | mips-relocs.c | 131 new = realloc(relocs, new_sz * sizeof(*relocs)); in add_reloc()
|
A D | proftool.c | 135 func_list = realloc(func_list, in read_system_map()
|
A D | fdtgrep.c | 722 buf = realloc(buf, bufsize); in utilfdt_read_err_len() 809 region = realloc(region, count * sizeof(struct fdt_region)); in do_fdtgrep()
|
A D | image-host.c | 673 list->strings = realloc(list->strings, in strlist_add()
|
A D | zynqmpbif.c | 264 new_data = realloc(bif_output.data, new_size); in bif_add_blob()
|
/u-boot/post/drivers/ |
A D | flash.c | 40 p = ptr = realloc(ptr, new_len); in seed_src_data()
|
/u-boot/scripts/dtc/ |
A D | util.h | 64 void *new = realloc(p, len); in xrealloc()
|
/u-boot/scripts/kconfig/ |
A D | util.c | 103 p = realloc(p, size); in xrealloc()
|
A D | nconf.gui.c | 489 *resultp = result = realloc(result, in dialog_inputbox()
|
/u-boot/common/ |
A D | iomux.c | 155 tmp = realloc(arg, size + strlen(name) + 1); in iomux_replace_device()
|
A D | dlmalloc.src | 4 A version of malloc/free/realloc written by Doug Lea and released to the 32 realloc(Void_t* p, size_t n); 157 malloc(0), so does realloc(p, 0). 864 #pragma weak realloc = __libc_realloc 887 #define rEALLOc realloc 2488 usages of realloc to be sensible. 2527 /* realloc of null is supposed to be same as malloc */ 3200 * Support another case of realloc via move into top 3235 * realloc: try to expand in both directions 3237 * realloc: only conditionally expand backwards [all …]
|
A D | cli_hush.c | 624 tmp = realloc(name, ln+strlen(value)+2); in builtin_export() 874 o->data = realloc(o->data, 1 + o->maxlen); in b_check_space() 2059 pglob->gl_pathv = realloc(pglob->gl_pathv, (pathc+1)*sizeof(*pglob->gl_pathv)); 2483 child->argv = realloc(child->argv, (argc+1)*sizeof(*child->argv)); 2488 child->argv_nonnull = realloc(child->argv_nonnull, 3338 if (!(p = realloc(ptr, size))) {
|
/u-boot/drivers/video/ |
A D | sandbox_osd.c | 73 priv->buf = realloc(priv->buf, size * sizeof(u16)); in _sandbox_osd_set_size()
|
/u-boot/cmd/ |
A D | usb_mass_storage.c | 94 ums_new = realloc(ums, (ums_count + 1) * sizeof(*ums)); in ums_init()
|
A D | nvedit_efi.c | 196 p = realloc(var_name16, buf_size); in efi_dump_var_all() 380 new_buf = realloc(*bufp, *sizep + len); in append_value()
|
/u-boot/lib/ |
A D | membuff.c | 346 ptr = realloc(mb->start, size); in membuff_extend_by()
|
/u-boot/drivers/net/phy/ |
A D | ncsi.c | 375 package->channels = realloc(package->channels, in ncsi_rsp_cis() 419 ncsi_priv->packages = realloc(ncsi_priv->packages, in ncsi_rsp_sp()
|
/u-boot/lib/efi_loader/ |
A D | efi_hii.c | 847 buf = realloc(stbl->strings, in new_string() 955 buf = realloc(stbl->strings, in set_string()
|
A D | efi_capsule.c | 751 dirent = realloc(dirent, tmp_size); in efi_capsule_scan_dir()
|
/u-boot/api/ |
A D | api.c | 548 var = realloc(var, buflen); in API_env_enum()
|
/u-boot/arch/sandbox/cpu/ |
A D | os.c | 473 fname = realloc(fname, len); in os_dirent_ls()
|
Completed in 46 milliseconds
12