HomeSort by: relevance | last modified time | path
    Searched refs:nextoffset (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/external/bsd/libfdt/dist/
fdt.c 133 uint32_t fdt_next_tag(const void *fdt, int startoffset, int *nextoffset)
140 *nextoffset = -FDT_ERR_TRUNCATED;
147 *nextoffset = -FDT_ERR_BADSTRUCTURE;
182 *nextoffset = FDT_TAGALIGN(offset);
206 int nextoffset = 0; local
210 if ((nextoffset = fdt_check_node_offset_(fdt, offset)) < 0)
211 return nextoffset;
214 offset = nextoffset;
215 tag = fdt_next_tag(fdt, offset, &nextoffset);
229 return nextoffset;
    [all...]
fdt_rw.c 194 int nextoffset; local
199 if ((nextoffset = fdt_check_node_offset_(fdt, nodeoffset)) < 0)
200 return nextoffset;
206 *prop = fdt_offset_ptr_w_(fdt, nextoffset);
324 int offset, nextoffset; local
339 fdt_next_tag(fdt, parentoffset, &nextoffset); /* skip the BEGIN_NODE */
341 offset = nextoffset;
342 tag = fdt_next_tag(fdt, offset, &nextoffset);
fdt_ro.c 192 int nextoffset; local
195 tag = fdt_next_tag(fdt, offset, &nextoffset);
199 if (nextoffset >= 0)
202 return nextoffset;
207 offset = nextoffset;
843 int offset, nextoffset = 0; local
862 offset = nextoffset;
863 tag = fdt_next_tag(fdt, offset, &nextoffset);
865 if (nextoffset < 0)
866 return nextoffset;
    [all...]
fdt_sw.c 337 int offset, nextoffset; local
355 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) {
365 offset = nextoffset;
367 if (nextoffset < 0)
368 return nextoffset;
libfdt.h 120 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
  /src/sys/ufs/lfs/
lfs_rfw.c 897 daddr_t startoffset, offset, nextoffset, endpseg; local
943 nextoffset = offset;
945 nextoffset = offset;
946 lfs_parse_pseg(fs, &nextoffset, nextserial,
948 if (nextoffset == -1)
950 if (lfs_sntod(fs, offset) != lfs_sntod(fs, nextoffset)) {
960 " serial=0x%jx\n", (intmax_t)nextoffset,
970 offset = nextoffset;
974 endpseg = nextoffset;
984 endpseg, nextoffset));
    [all...]

Completed in 25 milliseconds