Searched refs:realloc (Results 1 – 25 of 34) sorted by relevance
12
| /u-boot/arch/sandbox/include/asm/ |
| A D | malloc.h | 14 void *realloc(void *ptr, size_t size);
|
| /u-boot/include/ |
| A D | malloc.h | 876 #pragma weak realloc = __libc_realloc macro 900 #define realloc realloc_simple macro 927 #define realloc dlrealloc macro 941 # define rEALLOc realloc
|
| /u-boot/tools/ |
| A D | getline.c | 56 *lineptr = realloc(*lineptr, *n); in getstr()
|
| A D | mkenvimage.c | 171 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 | fdtgrep.c | 723 buf = realloc(buf, bufsize); in utilfdt_read_err_len() 812 region = realloc(region, count * sizeof(struct fdt_region)); in do_fdtgrep()
|
| 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 | 38 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/lib/ |
| A D | abuf.c | 56 ptr = realloc(abuf->data, new_size); in abuf_realloc()
|
| A D | membuff.c | 346 ptr = realloc(mb->start, size); in membuff_extend_by()
|
| /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 | 623 tmp = realloc(name, ln+strlen(value)+2); in builtin_export() 873 o->data = realloc(o->data, 1 + o->maxlen); in b_check_space() 2058 pglob->gl_pathv = realloc(pglob->gl_pathv, (pathc+1)*sizeof(*pglob->gl_pathv)); 2488 child->argv = realloc(child->argv, (argc+1)*sizeof(*child->argv)); 2493 child->argv_nonnull = realloc(child->argv_nonnull, 3352 if (!(p = realloc(ptr, size))) {
|
| /u-boot/lib/efi_loader/ |
| A D | efi_helper.c | 249 p = realloc(*buf, buf_size); in efi_next_variable_name()
|
| A D | efi_hii.c | 850 buf = realloc(stbl->strings, in new_string() 958 buf = realloc(stbl->strings, in set_string()
|
| /u-boot/cmd/ |
| A D | nvedit_efi.c | 162 p = realloc(var_name16, buf_size); in efi_dump_var_all() 346 new_buf = realloc(*bufp, *sizep + len); in append_value()
|
| A D | usb_mass_storage.c | 94 ums_new = realloc(ums, (ums_count + 1) * sizeof(*ums)); in ums_init()
|
| A D | ubi.c | 126 str2 = realloc(str, size); in ubi_list()
|
| /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/fs/erofs/ |
| A D | data.c | 269 raw = realloc(raw, bufsize); in z_erofs_read_data()
|
| /u-boot/drivers/net/phy/ |
| A D | ncsi.c | 376 package->channels = realloc(package->channels, in ncsi_rsp_cis() 420 ncsi_priv->packages = realloc(ncsi_priv->packages, in ncsi_rsp_sp()
|
| /u-boot/api/ |
| A D | api.c | 548 var = realloc(var, buflen); in API_env_enum()
|
Completed in 64 milliseconds
12