Searched refs:newlen (Results 1 – 4 of 4) sorted by relevance
| /rk3399_rockchip-uboot/scripts/dtc/libfdt/ |
| H A D | fdt_rw.c | 97 static int _fdt_splice(void *fdt, void *splicepoint, int oldlen, int newlen) in _fdt_splice() argument 104 if ((p < (char *)fdt) || ((end - oldlen + newlen) < (char *)fdt)) in _fdt_splice() 106 if ((end - oldlen + newlen) > ((char *)fdt + fdt_totalsize(fdt))) in _fdt_splice() 108 memmove(p + newlen, p + oldlen, end - p - oldlen); in _fdt_splice() 126 int oldlen, int newlen) in _fdt_splice_struct() argument 128 int delta = newlen - oldlen; in _fdt_splice_struct() 131 if ((err = _fdt_splice(fdt, p, oldlen, newlen))) in _fdt_splice_struct() 139 static int _fdt_splice_string(void *fdt, int newlen) in _fdt_splice_string() argument 145 if ((err = _fdt_splice(fdt, p, 0, newlen))) in _fdt_splice_string() 148 fdt_set_size_dt_strings(fdt, fdt_size_dt_strings(fdt) + newlen); in _fdt_splice_string() [all …]
|
| /rk3399_rockchip-uboot/scripts/dtc/ |
| H A D | data.c | 236 int newlen = ALIGN(d.len, align); in data_append_align() local 237 return data_append_zeroes(d, newlen - d.len); in data_append_align()
|
| /rk3399_rockchip-uboot/scripts/kconfig/ |
| H A D | symbol.c | 918 size_t newlen; in sym_expand_string_value() local 934 newlen = strlen(res) + strlen(symval) + strlen(src) + 1; in sym_expand_string_value() 935 if (newlen > reslen) { in sym_expand_string_value() 936 reslen = newlen; in sym_expand_string_value()
|
| /rk3399_rockchip-uboot/common/ |
| H A D | fdt_support.c | 826 int newlen; in fdt_increase_size() local 828 newlen = fdt_totalsize(fdt) + add_len; in fdt_increase_size() 831 return fdt_open_into(fdt, fdt, newlen); in fdt_increase_size()
|