Lines Matching refs:l

95 	unsigned long l, score = 0;  in of_fdt_is_compatible()  local
104 l = strlen(cp) + 1; in of_fdt_is_compatible()
105 cp += l; in of_fdt_is_compatible()
106 cplen -= l; in of_fdt_is_compatible()
187 unsigned int l, allocl; in unflatten_dt_node() local
194 pathp = fdt_get_name(blob, *poffset, &l); in unflatten_dt_node()
198 allocl = ++l; in unflatten_dt_node()
215 l = 1; in unflatten_dt_node()
221 fpsize += l; in unflatten_dt_node()
237 if ((strlen(fn) + l + 1) != allocl) { in unflatten_dt_node()
240 l, allocl); in unflatten_dt_node()
247 memcpy(fn, pathp, l); in unflatten_dt_node()
805 int l; in early_init_dt_scan_chosen_serial() local
815 p = fdt_getprop(fdt, offset, "stdout-path", &l); in early_init_dt_scan_chosen_serial()
817 p = fdt_getprop(fdt, offset, "linux,stdout-path", &l); in early_init_dt_scan_chosen_serial()
818 if (!p || !l) in early_init_dt_scan_chosen_serial()
822 l = strchrnul(p, ':') - p; in early_init_dt_scan_chosen_serial()
825 offset = fdt_path_offset_namelen(fdt, p, l); in early_init_dt_scan_chosen_serial()
901 int l; in early_init_dt_scan_memory() local
914 reg = of_get_flat_dt_prop(node, "linux,usable-memory", &l); in early_init_dt_scan_memory()
916 reg = of_get_flat_dt_prop(node, "reg", &l); in early_init_dt_scan_memory()
920 endp = reg + (l / sizeof(__be32)); in early_init_dt_scan_memory()
922 pr_debug("memory scan node %s, reg size %d,\n", uname, l); in early_init_dt_scan_memory()
944 int l; in early_init_dt_scan_chosen() local
956 p = of_get_flat_dt_prop(node, "bootargs", &l); in early_init_dt_scan_chosen()
957 if (p != NULL && l > 0) in early_init_dt_scan_chosen()
958 strlcpy(data, p, min((int)l, COMMAND_LINE_SIZE)); in early_init_dt_scan_chosen()