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

/freebsd-10-stable/sys/boot/fdt/
H A Dfdt_loader_cmd.c69 static size_t fdtp_size = 0; variable
213 fdtp_size = fdt_totalsize(&header);
214 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) {
249 bcopy(header, fdtp, fdtp_size);
706 COPYIN(fdtp, fdtp_va, fdtp_size);
708 COPYIN(fdtp, va, fdtp_size);
[all...]

Completed in 59 milliseconds