Searched refs:hdrsize (Results 1 – 2 of 2) sorted by relevance
/DragonStub/apps/lib/libfdt/ |
H A D | fdt.c | 53 static int check_off_(uint32_t hdrsize, uint32_t totalsize, uint32_t off) in check_off_() argument 55 return (off >= hdrsize) && (off <= totalsize); in check_off_() 58 static int check_block_(uint32_t hdrsize, uint32_t totalsize, in check_block_() argument 61 if (!check_off_(hdrsize, totalsize, base)) in check_block_() 65 if (!check_off_(hdrsize, totalsize, base + size)) in check_block_() 92 size_t hdrsize; in fdt_check_header() local 108 hdrsize = fdt_header_size(fdt); in fdt_check_header() 110 if ((fdt_totalsize(fdt) < hdrsize) in fdt_check_header() 115 if (!check_off_(hdrsize, fdt_totalsize(fdt), in fdt_check_header() 121 if (!check_off_(hdrsize, fdt_totalsize(fdt), in fdt_check_header() [all …]
|
H A D | fdt_sw.c | 111 const int hdrsize = FDT_ALIGN(sizeof(struct fdt_header), in fdt_create_with_flags() local 115 if (bufsize < hdrsize) in fdt_create_with_flags() 136 fdt_set_off_mem_rsvmap(fdt, hdrsize); in fdt_create_with_flags()
|