Home
last modified time | relevance | path

Searched refs:newlen (Results 1 – 2 of 2) sorted by relevance

/scripts/dtc/libfdt/
Dfdt_rw.c52 static int fdt_splice_(void *fdt, void *splicepoint, int oldlen, int newlen) in fdt_splice_() argument
59 if ((p < (char *)fdt) || ((end - oldlen + newlen) < (char *)fdt)) in fdt_splice_()
61 if ((end - oldlen + newlen) > ((char *)fdt + fdt_totalsize(fdt))) in fdt_splice_()
63 memmove(p + newlen, p + oldlen, end - p - oldlen); in fdt_splice_()
81 int oldlen, int newlen) in fdt_splice_struct_() argument
83 int delta = newlen - oldlen; in fdt_splice_struct_()
86 if ((err = fdt_splice_(fdt, p, oldlen, newlen))) in fdt_splice_struct_()
97 int newlen = strlen(s) + 1; in fdt_del_last_string_() local
99 fdt_set_size_dt_strings(fdt, fdt_size_dt_strings(fdt) - newlen); in fdt_del_last_string_()
102 static int fdt_splice_string_(void *fdt, int newlen) in fdt_splice_string_() argument
[all …]
/scripts/dtc/
Ddata.c223 int newlen = ALIGN(d.len, align); in data_append_align() local
224 return data_append_zeroes(d, newlen - d.len); in data_append_align()