Home
last modified time | relevance | path

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

/linux-6.12.1/arch/arm64/kernel/
Dmodule.c225 int ovf; in apply_relocate_add() local
252 ovf = 0; in apply_relocate_add()
258 ovf = reloc_data(RELOC_OP_ABS, loc, val, 64); in apply_relocate_add()
261 ovf = reloc_data(RELOC_OP_ABS, loc, val, 32); in apply_relocate_add()
264 ovf = reloc_data(RELOC_OP_ABS, loc, val, 16); in apply_relocate_add()
268 ovf = reloc_data(RELOC_OP_PREL, loc, val, 64); in apply_relocate_add()
271 ovf = reloc_data(RELOC_OP_PREL, loc, val, 32); in apply_relocate_add()
274 ovf = reloc_data(RELOC_OP_PREL, loc, val, 16); in apply_relocate_add()
282 ovf = reloc_insn_movw(RELOC_OP_ABS, loc, val, 0, in apply_relocate_add()
289 ovf = reloc_insn_movw(RELOC_OP_ABS, loc, val, 16, in apply_relocate_add()
[all …]
/linux-6.12.1/include/vdso/
Dmath64.h46 bool ovf; in mul_u64_u32_add_u64_shr() local
49 ovf = __builtin_add_overflow(mul_u32_u32(al, mul), b, &ret); in mul_u64_u32_add_u64_shr()
51 if (ovf && shift) in mul_u64_u32_add_u64_shr()
/linux-6.12.1/tools/testing/selftests/rcutorture/bin/
Dkvm.sh492 ovf = "-ovf";
494 ovf = "";
495 print "echo ", cfr[jn], cpusr[jn] ovf ": Starting build. `date` | tee -a " rd "log";
507 …print "echo ", cfr[jn], cpusr[jn] ovf ": Waiting for build to complete. `date` | tee -a " rd "log";
512 print "echo ", cfr[jn], cpusr[jn] ovf ": Build complete. `date` | tee -a " rd "log";
526 print "\techo ----", cfr[j], cpusr[j] ovf ": Kernel present. `date` | tee -a " rd "log";
552 print "echo ----", cfr[j], cpusr[j] ovf ": Build/run results: | tee -a " rd "log";
/linux-6.12.1/drivers/net/can/softing/
Dsofting_fw.c374 uint64_t ovf; in softing_initialize_timestamp() local
379 ovf = 0x100000000ULL * 16; in softing_initialize_timestamp()
380 do_div(ovf, card->pdat->freq ?: 16); in softing_initialize_timestamp()
382 card->ts_overflow = ktime_add_us(0, ovf); in softing_initialize_timestamp()
/linux-6.12.1/arch/alpha/kernel/
Dperf_event.c308 struct hw_perf_event *hwc, int idx, long ovf) in alpha_perf_event_update() argument
321 delta = (new_raw_count - (prev_raw_count & alpha_pmu->pmc_count_mask[idx])) + ovf; in alpha_perf_event_update()