Home
last modified time | relevance | path

Searched refs:node_end (Results 1 – 5 of 5) sorted by relevance

/openbmc/u-boot/lib/libfdt/
H A Dfdt_region.c224 int node, node_end, offset; in fdt_add_alias_regions() local
235 node_end = fdt_next_subnode(fdt, node); in fdt_add_alias_regions()
236 if (node_end == -FDT_ERR_NOTFOUND) in fdt_add_alias_regions()
238 node_end = fdt_size_dt_struct(fdt) - sizeof(fdt32_t) * 2; in fdt_add_alias_regions()
239 else if (node_end < 0) /* other error */ in fdt_add_alias_regions()
240 return node_end; in fdt_add_alias_regions()
241 node_end -= sizeof(fdt32_t); /* Move to FDT_END_NODE tag of /aliases */ in fdt_add_alias_regions()
263 next = node_end; in fdt_add_alias_regions()
274 fdt_add_region(info, base + node_end, sizeof(fdt32_t)); in fdt_add_alias_regions()
/openbmc/linux/fs/proc/
H A Dkcore.c256 unsigned long node_end; in kcore_ram_list() local
257 node_end = node_end_pfn(nid); in kcore_ram_list()
258 if (end_pfn < node_end) in kcore_ram_list()
259 end_pfn = node_end; in kcore_ram_list()
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dfitimage.py836 node_end = False
837 while node_end == False:
839 node_end = True
/openbmc/linux/lib/
H A Dmaple_tree.c2144 if (slot > wr_mas->node_end) in mas_store_b_node()
2148 mas_mab_cp(mas, slot, wr_mas->node_end + 1, b_node, ++b_end); in mas_store_b_node()
2239 count = wr_mas->node_end = ma_data_end(wr_mas->node, wr_mas->type, in mas_wr_node_walk()
3894 mas_store_b_node(&l_wr_mas, &b_node, l_wr_mas.node_end); in mas_wr_spanning_store()
3897 mas_mab_cp(&r_mas, r_mas.offset, r_wr_mas.node_end, in mas_wr_spanning_store()
3939 mas_bulk_rebalance(mas, wr_mas->node_end, wr_mas->type); in mas_wr_node_store()
3975 if (offset_end > wr_mas->node_end) in mas_wr_node_store()
3980 copy_size = wr_mas->node_end - offset_end + 1; in mas_wr_node_store()
4066 (wr_mas->node_end != wr_mas->offset_end) && in mas_wr_extend_null()
4069 if (wr_mas->offset_end == wr_mas->node_end) in mas_wr_extend_null()
[all …]
/openbmc/linux/include/linux/
H A Dmaple_tree.h400 unsigned char node_end; /* mas->node end */ member