Searched refs:xrealloc (Results 1 – 10 of 10) sorted by relevance
/u-boot/scripts/kconfig/ |
A D | util.c | 59 gs->s = xrealloc(gs->s, l); in str_append() 101 void *xrealloc(void *p, size_t size) in xrealloc() function
|
A D | preprocess.c | 311 v->value = xrealloc(v->value, in variable_add() 511 out = xrealloc(out, out_len); in __expand_string() 527 out = xrealloc(out, out_len); in __expand_string()
|
A D | lkc.h | 102 void *xrealloc(void *p, size_t size);
|
A D | zconf.l | 57 text = xrealloc(text, new_size); in append_string()
|
A D | nconf.gui.c | 378 *resultp = result = xrealloc(result, *result_len); in dialog_inputbox()
|
A D | confdata.c | 236 nline = xrealloc(*lineptr, new_size); in add_byte()
|
/u-boot/scripts/dtc/ |
A D | util.h | 62 static inline void *xrealloc(void *p, size_t len) in xrealloc() function
|
A D | util.c | 59 p = xrealloc(p, size); in xasprintf() 250 buf = xrealloc(buf, bufsize); in utilfdt_read_err_len()
|
A D | data.c | 54 nd.val = xrealloc(d.val, newsize); in data_grow_for()
|
/u-boot/common/ |
A D | cli_hush.c | 389 static void *xrealloc(void *ptr, size_t size); 2556 pi->progs = xrealloc(pi->progs, sizeof(*pi->progs) * (pi->num_progs+1)); 3334 static void *xrealloc(void *ptr, size_t size) function 3525 res_str = xrealloc(res_str, (res_str_len + len)); 3539 res_str = xrealloc(res_str, (1 + len)); 3568 res_str = xrealloc(res_str, (1 + res_str_len + strlen(inp))); 3603 list = xrealloc(list, sizeof(*list) * (n + 2)); 3636 str = xrealloc(str, (len + strlen(p) + (2 * nonnull[n])));
|
Completed in 18 milliseconds