Home
last modified time | relevance | path

Searched refs:addend (Results 26 - 50 of 77) sorted by relevance

1234

/kernel/linux/linux-6.6/drivers/ptp/
H A Dptp_pch.c48 u32 addend; member
341 u32 addend; in ptp_pch_adjfine() local
345 addend = adjust_by_scaled_ppm(DEFAULT_ADDEND, scaled_ppm); in ptp_pch_adjfine()
347 iowrite32(addend, &regs->addend); in ptp_pch_adjfine()
495 iowrite32(DEFAULT_ADDEND, &chip->regs->addend); in pch_probe()
/kernel/linux/linux-5.10/arch/x86/include/asm/
H A Dchecksum_64.h179 static inline __wsum csum_add(__wsum csum, __wsum addend) in csum_add() argument
182 (__force unsigned)addend); in csum_add()
/kernel/linux/linux-5.10/arch/sparc/include/asm/
H A Dchecksum_64.h133 static inline __wsum csum_add(__wsum csum, __wsum addend) in csum_add() argument
139 : "r" (addend), "0" (csum)); in csum_add()
H A Dchecksum_32.h199 static inline __wsum csum_add(__wsum csum, __wsum addend) in csum_add() argument
205 : "r" (addend), "0" (csum)); in csum_add()
/kernel/linux/linux-6.6/arch/sparc/include/asm/
H A Dchecksum_64.h133 static inline __wsum csum_add(__wsum csum, __wsum addend) in csum_add() argument
139 : "r" (addend), "0" (csum)); in csum_add()
H A Dchecksum_32.h199 static inline __wsum csum_add(__wsum csum, __wsum addend) in csum_add() argument
205 : "r" (addend), "0" (csum)); in csum_add()
/kernel/linux/linux-6.6/arch/x86/include/asm/
H A Dchecksum_64.h178 static inline __wsum csum_add(__wsum csum, __wsum addend) in csum_add() argument
181 (__force unsigned)addend); in csum_add()
/kernel/linux/linux-6.6/tools/objtool/arch/powerpc/
H A Ddecode.c17 unsigned long arch_dest_reloc_offset(int addend) in arch_dest_reloc_offset() argument
19 return addend; in arch_dest_reloc_offset()
/kernel/liteos_m/components/dynlink/
H A Dlos_dynlink.c581 STATIC INT32 OsDoReloc(const DynSharedObj *dso, INT32 type, UINTPTR relocAddr, UINT32 addend, UINTPTR symAddr) in OsDoReloc() argument
588 *(UINTPTR *)relocAddr = symAddr + addend; in OsDoReloc()
591 *(UINTPTR *)relocAddr = symAddr + ((addend != 0) ? addend : *(UINTPTR *)relocAddr); in OsDoReloc()
594 *(UINTPTR *)relocAddr = dso->loadBase + ((addend != 0) ? addend : *(UINTPTR *)relocAddr); in OsDoReloc()
608 UINT32 addend; in OsDoRelocSyms() local
629 addend = (relInfo->relEntSize == sizeof(LD_ELF_REL)) ? 0 : relTab[relStride - 1]; in OsDoRelocSyms()
630 ret = OsDoReloc(dso, type, relocAddr, addend, symAddr); in OsDoRelocSyms()
/kernel/linux/linux-5.10/drivers/net/ethernet/stmicro/stmmac/
H A Dstmmac_hwtstamp.c77 static int config_addend(void __iomem *ioaddr, u32 addend) in config_addend() argument
82 writel(addend, ioaddr + PTP_TAR); in config_addend()
83 /* issue command to update the addend value */ in config_addend()
88 /* wait for present addend update to complete */ in config_addend()
/kernel/linux/linux-5.10/tools/objtool/
H A Dcheck.c468 insn = find_insn(file, reloc->sym->sec, reloc->addend); in add_dead_ends()
471 else if (reloc->addend == reloc->sym->sec->len) { in add_dead_ends()
475 reloc->sym->sec->name, reloc->addend); in add_dead_ends()
480 reloc->sym->sec->name, reloc->addend); in add_dead_ends()
503 insn = find_insn(file, reloc->sym->sec, reloc->addend); in add_dead_ends()
506 else if (reloc->addend == reloc->sym->sec->len) { in add_dead_ends()
510 reloc->sym->sec->name, reloc->addend); in add_dead_ends()
515 reloc->sym->sec->name, reloc->addend); in add_dead_ends()
728 func = find_func_by_offset(reloc->sym->sec, reloc->addend); in add_ignores()
937 insn = find_insn(file, reloc->sym->sec, reloc->addend); in add_ignore_alternatives()
[all...]
H A Delf.h78 s64 addend; member
132 unsigned int type, struct symbol *sym, s64 addend);
H A Delf.c513 unsigned int type, struct symbol *sym, s64 addend) in elf_add_reloc()
531 reloc->addend = addend; in elf_add_reloc()
765 int addend = insn_off; in elf_add_reloc_to_insn() local
781 return elf_add_reloc(elf, sec, offset, type, sym, addend); in elf_add_reloc_to_insn()
791 reloc->addend = 0; in read_rel_reloc()
804 reloc->addend = reloc->rela.r_addend; in read_rela_reloc()
1183 relocs[idx].r_addend = reloc->addend; in elf_rebuild_rela_reloc_section()
1240 reloc->rela.r_addend = reloc->addend; in elf_write_reloc()
512 elf_add_reloc(struct elf *elf, struct section *sec, unsigned long offset, unsigned int type, struct symbol *sym, s64 addend) elf_add_reloc() argument
H A Darch.h84 unsigned long arch_dest_reloc_offset(int addend);
/kernel/linux/linux-5.10/net/sched/
H A Dcls_flow.c52 u32 addend; member
327 classid = (classid >> f->rshift) + f->addend; in flow_classify()
465 fnew->addend = fold->addend; in flow_change()
534 fnew->addend = nla_get_u32(tb[TCA_FLOW_ADDEND]); in flow_change()
645 if (f->addend && in flow_dump()
646 nla_put_u32(skb, TCA_FLOW_ADDEND, f->addend)) in flow_dump()
/kernel/linux/linux-6.6/net/sched/
H A Dcls_flow.c53 u32 addend; member
329 classid = (classid >> f->rshift) + f->addend; in flow_classify()
467 fnew->addend = fold->addend; in flow_change()
536 fnew->addend = nla_get_u32(tb[TCA_FLOW_ADDEND]); in flow_change()
647 if (f->addend && in flow_dump()
648 nla_put_u32(skb, TCA_FLOW_ADDEND, f->addend)) in flow_dump()
/kernel/linux/linux-5.10/security/apparmor/include/
H A Dperms.h146 void aa_perms_accum(struct aa_perms *accum, struct aa_perms *addend);
147 void aa_perms_accum_raw(struct aa_perms *accum, struct aa_perms *addend);
/kernel/linux/linux-6.6/drivers/net/ethernet/stmicro/stmmac/
H A Dstmmac_ptp.c29 u32 addend; in stmmac_adjust_freq() local
31 addend = adjust_by_scaled_ppm(priv->default_addend, scaled_ppm); in stmmac_adjust_freq()
34 stmmac_config_addend(priv, priv->ptpaddr, addend); in stmmac_adjust_freq()
H A Dstmmac_hwtstamp.c122 static int config_addend(void __iomem *ioaddr, u32 addend) in config_addend() argument
127 writel(addend, ioaddr + PTP_TAR); in config_addend()
128 /* issue command to update the addend value */ in config_addend()
133 /* wait for present addend update to complete */ in config_addend()
/kernel/linux/linux-6.6/tools/objtool/include/objtool/
H A Delf.h127 s64 addend);
252 static inline void set_reloc_addend(struct elf *elf, struct reloc *reloc, s64 addend) in set_reloc_addend() argument
254 __set_reloc_field(reloc, r_addend, addend); in set_reloc_addend()
/kernel/linux/linux-6.6/drivers/net/dsa/hirschmann/
H A Dhellcreek_ptp.c131 u32 addend; in hellcreek_ptp_adjfine() local
141 * register overflows. The value stored in the addend register is added in hellcreek_ptp_adjfine()
144 * addend value = (2^30 * accumulator_overflow_rate) / in hellcreek_ptp_adjfine()
153 addend = (u32)div_u64(adj, 15625); in hellcreek_ptp_adjfine()
155 addendh = (addend & 0xffff0000) >> 16; in hellcreek_ptp_adjfine()
156 addendl = addend & 0xffff; in hellcreek_ptp_adjfine()
/kernel/linux/linux-6.6/drivers/net/ethernet/renesas/
H A Dravb_ptp.c97 u32 addend; in ravb_ptp_adjfine() local
100 addend = (u32)adjust_by_scaled_ppm(priv->ptp.default_addend, in ravb_ptp_adjfine()
105 priv->ptp.current_addend = addend; in ravb_ptp_adjfine()
112 ravb_write(ndev, addend & GTI_TIV, GTI); in ravb_ptp_adjfine()
/kernel/linux/linux-5.10/drivers/net/ethernet/xscale/
H A Dixp46x_ts.h28 u32 addend; /* 0x08 Time Sync Addend Register */ member
/kernel/linux/linux-5.10/tools/objtool/arch/x86/
H A Dspecial.c108 table_offset = text_reloc->addend; in arch_find_switch_table()
/kernel/linux/linux-6.6/drivers/net/ethernet/xscale/
H A Dixp46x_ts.h28 u32 addend; /* 0x08 Time Sync Addend Register */ member

Completed in 16 milliseconds

1234