Home | History | Annotate | Download | only in dist

Lines Matching refs:delta

109  * @delta: offset to apply
119 const char *name, uint32_t delta)
133 if ((adj_val + delta) < adj_val)
136 adj_val += delta;
147 * @delta: Offset to shift the phandles of
159 uint32_t delta)
164 ret = overlay_phandle_add_offset(fdto, node, "phandle", delta);
168 ret = overlay_phandle_add_offset(fdto, node, "linux,phandle", delta);
173 ret = overlay_adjust_node_phandles(fdto, child, delta);
184 * @delta: Offset to shift the phandles of
195 static int overlay_adjust_local_phandles(void *fdto, uint32_t delta)
200 return overlay_adjust_node_phandles(fdto, 0, delta);
208 * @delta: Offset to shift the phandles of
212 * constant delta.
225 uint32_t delta)
269 adj_val = cpu_to_fdt32(fdt32_to_cpu(adj_val) + delta);
301 delta);
312 * @delta: Offset to shift the phandles of
316 * delta to not conflict with the base overlay.
326 static int overlay_update_local_references(void *fdto, uint32_t delta)
343 delta);
833 uint32_t delta;
839 ret = fdt_find_max_phandle(fdt, &delta);
843 ret = overlay_adjust_local_phandles(fdto, delta);
847 ret = overlay_update_local_references(fdto, delta);