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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/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 Dlibfdt_internal.h65 uint32_t _fdt_next_tag(const void *fdt, int startoffset, int *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);
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_sw.c218 int offset, nextoffset; local
236 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) {
249 offset = nextoffset;
H A Dlibfdt.h131 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/cramfs/
H A Dinode.c351 unsigned long nextoffset; local
371 nextoffset = offset + sizeof(*de) + namelen;
385 offset = nextoffset;

Completed in 101 milliseconds