Home
last modified time | relevance | path

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

/rk3399_ARM-atf/lib/libfdt/
H A Dfdt_ro.c34 const char *fdt_get_string(const void *fdt, int stroffset, int *lenp) in fdt_get_string() argument
45 if (lenp) in fdt_get_string()
46 *lenp = strlen(s); in fdt_get_string()
90 if (lenp) in fdt_get_string()
91 *lenp = n - s; in fdt_get_string()
95 if (lenp) in fdt_get_string()
96 *lenp = err; in fdt_get_string()
361 int *lenp) in fdt_get_property_by_offset_() argument
368 if (lenp) in fdt_get_property_by_offset_()
369 *lenp = err; in fdt_get_property_by_offset_()
[all …]
H A Dlibfdt.h353 const char *fdt_get_string(const void *fdt, int stroffset, int *lenp);
588 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
687 int *lenp);
690 int *lenp) in fdt_get_property_by_offset_w() argument
693 fdt_get_property_by_offset(fdt, offset, lenp); in fdt_get_property_by_offset_w()
714 int namelen, int *lenp);
746 const char *name, int *lenp);
749 int *lenp) in fdt_get_property_w() argument
752 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w()
788 const char **namep, int *lenp);
[all …]
H A Dfdt.c164 const fdt32_t *tagp, *lenp; in fdt_next_tag() local
188 lenp = fdt_offset_ptr(fdt, offset, sizeof(*lenp)); in fdt_next_tag()
189 if (!can_assume(VALID_DTB) && !lenp) in fdt_next_tag()
192 len = fdt32_to_cpu(*lenp); in fdt_next_tag()
/rk3399_ARM-atf/include/drivers/st/
H A Dstm32mp_clkfunc.h25 const fdt32_t *fdt_rcc_read_prop(const char *prop_name, int *lenp);
/rk3399_ARM-atf/drivers/st/clk/
H A Dstm32mp_clkfunc.c227 const fdt32_t *fdt_rcc_read_prop(const char *prop_name, int *lenp) in fdt_rcc_read_prop() argument
247 *lenp = len; in fdt_rcc_read_prop()
/rk3399_ARM-atf/drivers/st/gpio/
H A Dstm32_gpio.c184 int lenp; in dt_set_pinctrl_config() local
198 cuint = fdt_getprop(fdt, node, "pinctrl-0", &lenp); in dt_set_pinctrl_config()
203 for (i = 0; i < ((uint32_t)lenp / 4U); i++) { in dt_set_pinctrl_config()
/rk3399_ARM-atf/services/std_svc/spm/el3_spmc/
H A Dspmc_setup.c484 int lenp; in read_optional_string() local
486 prop = fdt_getprop(manifest, offset, property, &lenp); in read_optional_string()
490 memcpy(out, prop, MIN(lenp, (int)len)); in read_optional_string()
491 out[MIN(lenp, (int)len) - 1] = '\0'; in read_optional_string()