| /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 in function:fdt_next_node 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 in function:fdt_add_property_ 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 in function:fdt_add_subnode_namelen 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 in function:nextprop_ 195 tag = fdt_next_tag(fdt, offset, &nextoffset); 199 if (nextoffset >= 0) 202 return nextoffset; 207 offset = nextoffset; 843 int offset, nextoffset = 0; local in function:fdt_check_full 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 in function:fdt_finish 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 | 889 daddr_t startoffset, offset, nextoffset, endpseg; local in function:lfs_roll_forward 935 nextoffset = offset; 937 nextoffset = offset; 938 lfs_parse_pseg(fs, &nextoffset, nextserial, 940 if (nextoffset == -1) 942 if (lfs_sntod(fs, offset) != lfs_sntod(fs, nextoffset)) { 952 " serial=0x%jx\n", (intmax_t)nextoffset, 962 offset = nextoffset; 966 endpseg = nextoffset; 976 endpseg, nextoffset)); [all...] |