Home
last modified time | relevance | path

Searched refs:fixup_len (Results 1 – 3 of 3) sorted by relevance

/linux/scripts/dtc/libfdt/
H A Dfdt_overlay.c214 int fixup_len; in overlay_update_local_node_references() local
219 &name, &fixup_len); in overlay_update_local_node_references()
221 return fixup_len; in overlay_update_local_node_references()
223 if (fixup_len % sizeof(uint32_t)) in overlay_update_local_node_references()
225 fixup_len /= sizeof(uint32_t); in overlay_update_local_node_references()
235 for (i = 0; i < fixup_len; i++) { in overlay_update_local_node_references()
409 uint32_t fixup_len; in overlay_fixup_phandle() local
417 fixup_len = fixup_end - fixup_str; in overlay_fixup_phandle()
419 len -= fixup_len + 1; in overlay_fixup_phandle()
420 value += fixup_len + 1; in overlay_fixup_phandle()
[all …]
/linux/arch/powerpc/net/
H A Dbpf_jit_comp.c152 u32 fixup_len; in bpf_int_jit_compile() local
245 fixup_len = fp->aux->num_exentries * BPF_FIXUP_LEN * 4; in bpf_int_jit_compile()
249 alloclen = proglen + FUNCTION_DESCR_SIZE + fixup_len + extable_len; in bpf_int_jit_compile()
259 fp->aux->extable = (void *)fimage + FUNCTION_DESCR_SIZE + proglen + fixup_len; in bpf_int_jit_compile()
/linux/drivers/android/binder/
H A Dthread.rs889 let (fixup_len, fixup_offset) = match fixup { in apply_sg()
899 let target_offset_end = fixup_offset.checked_add(fixup_len).ok_or(EINVAL)?; in apply_sg()
924 if let Err(err) = reader.skip(fixup_len) { in apply_sg()
925 pr_warn!("Failed skipping {} from reader: {:?}", fixup_len, err); in apply_sg()