Lines Matching defs:nodeoffset
13 int fdt_setprop_inplace_namelen_partial(void *fdt, int nodeoffset,
21 propval = fdt_getprop_namelen_w(fdt, nodeoffset, name, namelen,
33 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name,
39 propval = fdt_getprop(fdt, nodeoffset, name, &proplen);
46 return fdt_setprop_inplace_namelen_partial(fdt, nodeoffset, name,
59 int fdt_nop_property(void *fdt, int nodeoffset, const char *name)
64 prop = fdt_get_property_w(fdt, nodeoffset, name, &len);
83 int fdt_nop_node(void *fdt, int nodeoffset)
87 endoffset = fdt_node_end_offset_(fdt, nodeoffset);
91 fdt_nop_region_(fdt_offset_ptr_w(fdt, nodeoffset, 0),
92 endoffset - nodeoffset);