Searched refs:newlen (Results 1 – 2 of 2) sorted by relevance
/scripts/dtc/libfdt/ |
D | fdt_rw.c | 54 static int fdt_splice_(void *fdt, void *splicepoint, int oldlen, int newlen) in fdt_splice_() argument 62 if ((p < (char *)fdt) || (dsize + newlen < (unsigned)oldlen)) in fdt_splice_() 64 if (dsize - oldlen + newlen > fdt_totalsize(fdt)) in fdt_splice_() 66 memmove(p + newlen, p + oldlen, ((char *)fdt + dsize) - (p + oldlen)); in fdt_splice_() 84 int oldlen, int newlen) in fdt_splice_struct_() argument 86 int delta = newlen - oldlen; in fdt_splice_struct_() 89 if ((err = fdt_splice_(fdt, p, oldlen, newlen))) in fdt_splice_struct_() 100 int newlen = strlen(s) + 1; in fdt_del_last_string_() local 102 fdt_set_size_dt_strings(fdt, fdt_size_dt_strings(fdt) - newlen); in fdt_del_last_string_() 105 static int fdt_splice_string_(void *fdt, int newlen) in fdt_splice_string_() argument [all …]
|
/scripts/dtc/ |
D | data.c | 223 int newlen = ALIGN(d.len, align); in data_append_align() local 224 return data_append_zeroes(d, newlen - d.len); in data_append_align()
|