Home
last modified time | relevance | path

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

/linux/drivers/crypto/intel/qat/qat_common/
H A Dqat_hal.c1237 int fixup_offset; in qat_hal_concat_micro_code() local
1245 fixup_offset = inst_num; in qat_hal_concat_micro_code()
1248 INSERT_IMMED_GPRA_CONST(micro_inst[fixup_offset], (addr)); in qat_hal_concat_micro_code()
1249 fixup_offset++; in qat_hal_concat_micro_code()
1250 INSERT_IMMED_GPRA_CONST(micro_inst[fixup_offset], 0); in qat_hal_concat_micro_code()
1251 fixup_offset++; in qat_hal_concat_micro_code()
1252 INSERT_IMMED_GPRB_CONST(micro_inst[fixup_offset], (cur_value >> 0)); in qat_hal_concat_micro_code()
1253 fixup_offset++; in qat_hal_concat_micro_code()
1254 INSERT_IMMED_GPRB_CONST(micro_inst[fixup_offset], (cur_value >> 0x10)); in qat_hal_concat_micro_code()
/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()
900 if fixup_offset < end_of_previous_fixup || offset_end < target_offset_end { in apply_sg()
903 fixup_offset, in apply_sg()
912 let copy_len = fixup_offset - end_of_previous_fixup; in apply_sg()
918 let res = alloc.write::<u64>(fixup_offset, pointer_value); in apply_sg()
/linux/arch/loongarch/net/
H A Dbpf_jit.c483 off_t ins_offset, fixup_offset; in add_exception_handler() local
521 fixup_offset = (long)&ex->fixup - (pc + LOONGARCH_INSN_SIZE); in add_exception_handler()
522 if (!FIELD_FIT(BPF_FIXUP_OFFSET_MASK, fixup_offset)) in add_exception_handler()
531 ex->fixup = FIELD_PREP(BPF_FIXUP_OFFSET_MASK, fixup_offset) | in add_exception_handler()
/linux/arch/riscv/net/
H A Dbpf_jit_comp64.c771 off_t fixup_offset; in add_exception_handler() local
814 fixup_offset = (long)&ex->fixup - (long)&ctx->ro_insns[ctx->ex_jmp_off]; in add_exception_handler()
815 if (!FIELD_FIT(BPF_FIXUP_OFFSET_MASK, fixup_offset)) in add_exception_handler()
827 ex->fixup = FIELD_PREP(BPF_FIXUP_OFFSET_MASK, fixup_offset) | in add_exception_handler()
/linux/drivers/android/
H A Dbinder.c1927 binder_size_t fixup_offset, in binder_validate_fixup() argument
1962 return (fixup_offset >= last_min_offset); in binder_validate_fixup()