Searched refs:fdtp_size (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/stand/fdt/
H A Dfdt_loader_cmd.c69 static size_t fdtp_size = 0; variable
214 fdtp_size = fdt_totalsize(&header);
215 fdtp = malloc(fdtp_size);
222 COPYOUT(va, fdtp, fdtp_size);
223 debugf("DTB blob found at 0x%jx, size: 0x%jx\n", (uintmax_t)va, (uintmax_t)fdtp_size);
235 fdtp_size = fdt_totalsize(header);
243 if ((fdtp = malloc(fdtp_size)) == NULL) {
248 bcopy(header, fdtp, fdtp_size);
444 if ((fdtp == NULL) || (fdtp_size == 0))
466 current_fdtp_size = fdtp_size;
[all...]

Completed in 33 milliseconds