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

/seL4-camkes-master/projects/util_libs/libfdt/
H A Dfdt.c171 uint32_t fdt_next_tag(const void *fdt, int startoffset, int *nextoffset) argument
178 *nextoffset = -FDT_ERR_TRUNCATED;
185 *nextoffset = -FDT_ERR_BADSTRUCTURE;
220 *nextoffset = FDT_TAGALIGN(offset);
244 int nextoffset = 0; local
248 if ((nextoffset = fdt_check_node_offset_(fdt, offset)) < 0)
249 return nextoffset;
252 offset = nextoffset;
253 tag = fdt_next_tag(fdt, offset, &nextoffset);
267 return nextoffset;
[all...]
H A Dfdt_sw.c328 int offset, nextoffset; local
346 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) {
356 offset = nextoffset;
358 if (nextoffset < 0)
359 return nextoffset;
H A Dfdt_rw.c225 int nextoffset; local
229 if ((nextoffset = fdt_check_node_offset_(fdt, nodeoffset)) < 0)
230 return nextoffset;
236 *prop = fdt_offset_ptr_w_(fdt, nextoffset);
351 int offset, nextoffset; local
366 fdt_next_tag(fdt, parentoffset, &nextoffset); /* skip the BEGIN_NODE */
368 offset = nextoffset;
369 tag = fdt_next_tag(fdt, offset, &nextoffset);
H A Dfdt_ro.c214 int nextoffset; local
217 tag = fdt_next_tag(fdt, offset, &nextoffset);
221 if (nextoffset >= 0)
224 return nextoffset;
229 offset = nextoffset;
865 int offset, nextoffset = 0; local
884 offset = nextoffset;
885 tag = fdt_next_tag(fdt, offset, &nextoffset);
887 if (nextoffset < 0)
888 return nextoffset;
[all...]
H A Dfdtget.c176 int nextoffset; /* next node offset from libfdt */ local
183 tag = fdt_next_tag(blob, node, &nextoffset);
215 node = nextoffset;
H A Dlibfdt.h155 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);

Completed in 84 milliseconds