Lines Matching refs:pos
59 const fdt32_t *pos; in get_property() local
74 pos = (fdt32_t *)(fdt + f2h(header->off_dt_struct)); in get_property()
75 end = &pos[f2h(header->totalsize) >> 2]; in get_property()
78 for (; pos < end;) { in get_property()
79 switch (f2h(pos[0])) { in get_property()
81 const char *c = (char *)&pos[1]; in get_property()
89 pos = &pos[2 + (i >> 2)]; in get_property()
93 struct fdt_property *prop = (struct fdt_property *)pos; in get_property()
118 boottime->copy_mem(str, &pos[3], len); in get_property()
124 pos = &pos[3 + ((f2h(prop->len) + 3) >> 2)]; in get_property()
128 ++pos; in get_property()
132 ++pos; in get_property()