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

/illumos-gate/usr/src/boot/sys/boot/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);
223 COPYOUT(va, fdtp, fdtp_size);
224 debugf("DTB blob found at 0x%jx, size: 0x%jx\n", (uintmax_t)va, (uintmax_t)fdtp_size);
236 fdtp_size = fdt_totalsize(header);
244 if ((fdtp = malloc(fdtp_size)) == NULL) {
250 bcopy(header, fdtp, fdtp_size);
713 COPYIN(fdtp, fdtp_va, fdtp_size);
715 COPYIN(fdtp, va, fdtp_size);
[all...]

Completed in 72 milliseconds