Home
last modified time | relevance | path

Searched refs:lenp (Results 1 – 4 of 4) sorted by relevance

/scripts/dtc/libfdt/
Dfdt_ro.c247 int *lenp) in fdt_get_property_by_offset() argument
253 if (lenp) in fdt_get_property_by_offset()
254 *lenp = err; in fdt_get_property_by_offset()
260 if (lenp) in fdt_get_property_by_offset()
261 *lenp = fdt32_to_cpu(prop->len); in fdt_get_property_by_offset()
269 int namelen, int *lenp) in fdt_get_property_namelen() argument
276 if (!(prop = fdt_get_property_by_offset(fdt, offset, lenp))) { in fdt_get_property_namelen()
285 if (lenp) in fdt_get_property_namelen()
286 *lenp = offset; in fdt_get_property_namelen()
292 const char *name, int *lenp) in fdt_get_property() argument
[all …]
Dlibfdt.h386 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
455 int *lenp);
471 int namelen, int *lenp);
501 const char *name, int *lenp);
504 int *lenp) in fdt_get_property_w() argument
507 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
542 const char **namep, int *lenp);
556 const char *name, int namelen, int *lenp);
586 const char *name, int *lenp);
588 const char *name, int *lenp) in fdt_getprop_w() argument
[all …]
Dfdt.c96 const fdt32_t *tagp, *lenp; in fdt_next_tag() local
120 lenp = fdt_offset_ptr(fdt, offset, sizeof(*lenp)); in fdt_next_tag()
121 if (!lenp) in fdt_next_tag()
125 + fdt32_to_cpu(*lenp); in fdt_next_tag()
/scripts/dtc/
Dutil.c51 int lenp = strlen(path); in join_path() local
57 len = lenp + lenn + 2; in join_path()
58 if ((lenp > 0) && (path[lenp-1] == '/')) { in join_path()
64 memcpy(str, path, lenp); in join_path()
66 str[lenp] = '/'; in join_path()
67 lenp++; in join_path()
69 memcpy(str+lenp, name, lenn+1); in join_path()