/third_party/elfio/examples/c_wrapper/ |
H A D | c_example.c | 125 Elf_Sxword addend; in main() local 127 &addend ); in main() 128 // printf( "[%4d] %16lx, %08x %08x %16lx\n", i, offset, symbol, type, addend ); in main()
|
H A D | elfio_c_wrapper.h | 226 Elf_Sxword* addend ); 232 Elf_Sxword addend ); 237 Elf_Sxword addend );
|
/kernel/linux/linux-6.6/drivers/net/ethernet/stmicro/stmmac/ |
H A D | stmmac_ptp.c | 29 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 D | stmmac_hwtstamp.c | 122 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 D | elf.h | 127 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()
|
H A D | arch.h | 84 unsigned long arch_dest_reloc_offset(int addend);
|
/kernel/linux/linux-5.10/tools/objtool/ |
H A D | elf.c | 513 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 D | arch.h | 84 unsigned long arch_dest_reloc_offset(int addend);
|
H A D | special.c | 62 *off = reloc->sym->offset + reloc->addend; in reloc_to_sec_off()
|
/third_party/python/Lib/logging/ |
H A D | handlers.py | 337 addend = -3600 339 addend = 3600 340 newRolloverAt += addend 427 addend = 3600 429 addend = -3600 430 timeTuple = time.localtime(t + addend) 449 addend = -3600 451 addend = 3600 452 newRolloverAt += addend
|
/kernel/linux/linux-6.6/drivers/net/dsa/hirschmann/ |
H A D | hellcreek_ptp.c | 131 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 D | ravb_ptp.c | 97 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()
|
/third_party/lzma/C/ |
H A D | Threads.c | 536 LONG InterlockedIncrement(LONG volatile *addend)
in InterlockedIncrement() argument 540 LONG val = *addend + 1;
in InterlockedIncrement() 541 *addend = val;
in InterlockedIncrement() 548 return __sync_add_and_fetch(addend, 1);
in InterlockedIncrement()
|
/third_party/python/Modules/_io/ |
H A D | winconsoleio.c | 747 DWORD addend; in new_buffersize() local 753 addend = currentsize >> 3; in new_buffersize() 755 addend = 256 + currentsize; in new_buffersize() 756 if (addend < SMALLCHUNK) in new_buffersize() 758 addend = SMALLCHUNK; in new_buffersize() 759 return addend + currentsize; in new_buffersize()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/xscale/ |
H A D | ixp46x_ts.h | 28 u32 addend; /* 0x08 Time Sync Addend Register */ member
|
/third_party/musl/ldso/ |
H A D | dynlink.c | 398 size_t addend; in do_relocs() local 402 /* Only ldso's REL table needs addend saving/reuse. */ in do_relocs() 415 addend = rel[2]; in do_relocs() 417 addend = 0; in do_relocs() 419 /* Save original addend in stage 2 where the dso in do_relocs() 421 * saved addend since the inline one was clobbered. */ in do_relocs() 424 addend = saved_addends[save_slot++]; in do_relocs() 426 addend = *reloc_addr; in do_relocs() 442 dso->lazy[3*dso->lazy_cnt+2] = addend; in do_relocs() 470 addend in do_relocs() [all...] |
/kernel/linux/linux-5.10/tools/objtool/arch/x86/ |
H A D | special.c | 108 table_offset = text_reloc->addend; in arch_find_switch_table()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/xscale/ |
H A D | ixp46x_ts.h | 28 u32 addend; /* 0x08 Time Sync Addend Register */ member
|
/third_party/elfutils/libdwfl/ |
H A D | relocate.c | 329 const GElf_Sxword *addend, in relocate() 390 if (addsub != 0 && addend == NULL) \ in relocate() 423 if (addend) in relocate() 425 /* For the addend form, we have the value already. */ in relocate() 426 value += *addend; in relocate() 323 relocate(Dwfl_Module * const mod, Elf * const relocated, struct reloc_symtab_cache * const reloc_symtab, Elf_Data * const tdata, const GElf_Ehdr * const ehdr, GElf_Addr offset, const GElf_Sxword *addend, int rtype, int symndx) relocate() argument
|
/kernel/linux/linux-5.10/drivers/staging/vc04_services/interface/vchiq_arm/ |
H A D | vchiq_core.h | 146 #define VCHIQ_SERVICE_STATS_ADD(service, stat, addend) \ 147 (service->stats. stat += addend) 151 #define VCHIQ_SERVICE_STATS_ADD(service, stat, addend) ((void)0)
|
/third_party/elfio/c_wrapper/ |
H A D | elfio_c_wrapper.h | 228 Elf_Sxword* addend ); 234 Elf_Sxword addend ); 239 Elf_Sxword addend );
|
/third_party/node/deps/v8/third_party/ittapi/src/ittnotify/ |
H A D | ittnotify_config.h | 320 __TBB_machine_fetchadd4(volatile void* ptr, long addend) ITT_INLINE_ATTRIBUTE; 321 ITT_INLINE long __TBB_machine_fetchadd4(volatile void* ptr, long addend) in __TBB_machine_fetchadd4() argument 326 : "0"(addend), "m"(*(volatile int*)ptr) in __TBB_machine_fetchadd4()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/ |
H A D | ittnotify_config.h | 263 __TBB_machine_fetchadd4(volatile void* ptr, long addend) ITT_INLINE_ATTRIBUTE; 264 ITT_INLINE long __TBB_machine_fetchadd4(volatile void* ptr, long addend) in __TBB_machine_fetchadd4() argument 269 : "0"(addend), "m"(*(long*)ptr) in __TBB_machine_fetchadd4()
|
/kernel/liteos_a/kernel/extended/dynload/include/ |
H A D | los_ld_elf_pri.h | 384 INT32 addend; /* Addend */ member 395 INT64 addend; /* Addend */ member
|
/kernel/linux/linux-6.6/tools/objtool/ |
H A D | elf.c | 853 s64 addend, unsigned int type) in elf_init_reloc() 877 set_reloc_addend(elf, reloc, addend); in elf_init_reloc() 893 int addend = insn_off; in elf_init_reloc_text_sym() local 915 return elf_init_reloc(elf, sec->rsec, reloc_idx, offset, sym, addend, in elf_init_reloc_text_sym() 923 s64 addend) in elf_init_reloc_data_sym() 931 return elf_init_reloc(elf, sec->rsec, reloc_idx, offset, sym, addend, in elf_init_reloc_data_sym() 850 elf_init_reloc(struct elf *elf, struct section *rsec, unsigned int reloc_idx, unsigned long offset, struct symbol *sym, s64 addend, unsigned int type) elf_init_reloc() argument 919 elf_init_reloc_data_sym(struct elf *elf, struct section *sec, unsigned long offset, unsigned int reloc_idx, struct symbol *sym, s64 addend) elf_init_reloc_data_sym() argument
|