Searched defs:nextoffset (Results 1 - 5 of 5) sorted by relevance

/scripts/dtc/libfdt/
H A Dfdt_wip.c101 int offset, nextoffset; local
103 tag = fdt_next_tag(fdt, nodeoffset, &nextoffset);
107 offset = nextoffset;
108 tag = fdt_next_tag(fdt, offset, &nextoffset);
131 return nextoffset;
H A Dfdt.c93 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset) argument
126 if (nextoffset)
127 *nextoffset = FDT_TAGALIGN(offset);
143 int nextoffset = 0; local
147 if ((nextoffset = _fdt_check_node_offset(fdt, offset)) < 0)
148 return nextoffset;
151 offset = nextoffset;
152 tag = fdt_next_tag(fdt, offset, &nextoffset);
H A Dfdt_sw.c219 int offset, nextoffset; local
237 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) {
250 offset = nextoffset;
H A Dfdt_ro.c188 int offset, nextoffset; local
195 nextoffset = err;
197 offset = nextoffset;
199 tag = fdt_next_tag(fdt, offset, &nextoffset);
H A Dfdt_rw.c227 int nextoffset; local
231 if ((nextoffset = _fdt_check_node_offset(fdt, nodeoffset)) < 0)
232 return nextoffset;
238 *prop = _fdt_offset_ptr_w(fdt, nextoffset);
311 int offset, nextoffset; local
326 fdt_next_tag(fdt, parentoffset, &nextoffset); /* skip the BEGIN_NODE */
328 offset = nextoffset;
329 tag = fdt_next_tag(fdt, offset, &nextoffset);

Completed in 39 milliseconds