Lines Matching refs:totalsize
336 fdt->totalsize = cpu_to_fdt32(reserve_off + reservesize + dtsize + strsize);
374 * If the user asked for more space than is used, adjust the totalsize.
377 padlen = minsize - fdt32_to_cpu(fdt.totalsize);
383 fdt32_to_cpu(fdt.totalsize), minsize);
391 padlen = ALIGN(fdt32_to_cpu(fdt.totalsize) + padlen, alignsize)
392 - fdt32_to_cpu(fdt.totalsize);
395 int tsize = fdt32_to_cpu(fdt.totalsize);
397 fdt.totalsize = cpu_to_fdt32(tsize);
468 fprintf(f, "\t/* totalsize */\n");
800 uint32_t magic, totalsize, version, size_dt, boot_cpuid_phys;
841 totalsize = fdt32_to_cpu(totalsize_buf);
842 if (totalsize < FDT_V1_SIZE)
843 die("DT blob size (%d) is too small\n", totalsize);
845 blob = xmalloc(totalsize);
849 fdt->totalsize = cpu_to_fdt32(totalsize);
851 sizeleft = totalsize - sizeof(magic) - sizeof(totalsize);
852 p = blob + sizeof(magic) + sizeof(totalsize);
857 totalsize);
874 if (off_mem_rsvmap >= totalsize)
877 if (off_dt >= totalsize)
880 if (off_str > totalsize)
885 if ((off_str+size_str < off_str) || (off_str+size_str > totalsize))
889 inbuf_init(&strbuf, blob + off_str, blob + totalsize);
894 if ((off_dt+size_dt < off_dt) || (off_dt+size_dt > totalsize))
905 blob + off_mem_rsvmap, blob + totalsize);
906 inbuf_init(&dtbuf, blob + off_dt, blob + totalsize);