/third_party/elfio/elfio/ |
H A D | elfio_relocation.hpp | 91 Elf_Sxword& addend ) const in get_entry() 100 addend ); in get_entry() 104 addend ); in get_entry() 110 addend ); in get_entry() 114 addend ); in get_entry() 127 Elf_Sxword& addend, in get_entry() 132 bool ret = get_entry( index, offset, symbol, type, addend ); in get_entry() 152 calcValue = symbolValue + addend; in get_entry() 155 calcValue = symbolValue + addend - offset; in get_entry() 171 calcValue = addend; in get_entry() 122 get_entry( Elf_Xword index, Elf64_Addr& offset, Elf64_Addr& symbolValue, std::string& symbolName, unsigned& type, Elf_Sxword& addend, Elf_Sxword& calcValue ) const get_entry() argument 300 Elf_Sxword addend = 0; swap_symbols() local [all...] |
/third_party/skia/third_party/externals/brotli/c/fuzz/ |
H A D | decode_fuzzer.c | 13 size_t addend = 0; in LLVMFuzzerTestOneInput() local 15 addend = data[size - 1] & 7; in LLVMFuzzerTestOneInput() 26 const size_t total_out_limit = (addend == 0) ? (1 << 26) : (1 << 24); in LLVMFuzzerTestOneInput() 31 if (addend == 0) in LLVMFuzzerTestOneInput() 32 addend = size; in LLVMFuzzerTestOneInput() 33 /* Test both fast (addend == size) and slow (addend <= 7) decoding paths. */ in LLVMFuzzerTestOneInput() 35 size_t next_i = i + addend; in LLVMFuzzerTestOneInput()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldImpl.h | 129 /// Addend - the relocation addend encoded in the instruction itself. Also 154 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend) in RelocationEntry() argument 155 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry() 158 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument 160 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry() 164 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument 166 : SectionID(id), Offset(offset), RelType(type), Addend(addend), in RelocationEntry() 169 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument 173 Addend(SectionAOffset - SectionBOffset + addend), IsPCRel(IsPCRel), in RelocationEntry() 179 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, in RelocationEntry() argument [all...] |
/third_party/node/deps/openssl/openssl/crypto/ec/curve448/ |
H A D | curve448.c | 509 int power, addend; member 567 control[position].addend = 0; in recode_wnaf() 594 control[position].addend = delta; in recode_wnaf() 662 pniels_to_pt(combo, precmp_var[control_var[0].addend >> 1]); in ossl_curve448_base_double_scalarmul_non_secret() 665 pniels_to_pt(combo, precmp_var[control_var[0].addend >> 1]); in ossl_curve448_base_double_scalarmul_non_secret() 667 ossl_curve448_wnaf_base[control_pre[0].addend >> 1], in ossl_curve448_base_double_scalarmul_non_secret() 673 niels_to_pt(combo, ossl_curve448_wnaf_base[control_pre[0].addend >> 1]); in ossl_curve448_base_double_scalarmul_non_secret() 684 assert(control_var[contv].addend); in ossl_curve448_base_double_scalarmul_non_secret() 686 if (control_var[contv].addend > 0) in ossl_curve448_base_double_scalarmul_non_secret() 688 precmp_var[control_var[contv].addend >> in ossl_curve448_base_double_scalarmul_non_secret() [all...] |
/third_party/openssl/crypto/ec/curve448/ |
H A D | curve448.c | 509 int power, addend; member 567 control[position].addend = 0; in recode_wnaf() 594 control[position].addend = delta; in recode_wnaf() 662 pniels_to_pt(combo, precmp_var[control_var[0].addend >> 1]); in ossl_curve448_base_double_scalarmul_non_secret() 665 pniels_to_pt(combo, precmp_var[control_var[0].addend >> 1]); in ossl_curve448_base_double_scalarmul_non_secret() 667 ossl_curve448_wnaf_base[control_pre[0].addend >> 1], in ossl_curve448_base_double_scalarmul_non_secret() 673 niels_to_pt(combo, ossl_curve448_wnaf_base[control_pre[0].addend >> 1]); in ossl_curve448_base_double_scalarmul_non_secret() 684 assert(control_var[contv].addend); in ossl_curve448_base_double_scalarmul_non_secret() 686 if (control_var[contv].addend > 0) in ossl_curve448_base_double_scalarmul_non_secret() 688 precmp_var[control_var[contv].addend >> in ossl_curve448_base_double_scalarmul_non_secret() [all...] |
/third_party/elfio/c_wrapper/ |
H A D | elfio_c_wrapper.cpp | 285 Elf_Sxword* addend ) in elfio_relocation_get_entry() 287 return prelocation->get_entry( index, *offset, *symbol, *type, *addend ); in elfio_relocation_get_entry() 295 Elf_Sxword addend ) in elfio_relocation_set_entry() 297 return prelocation->set_entry( index, offset, symbol, type, addend ); in elfio_relocation_set_entry() 304 Elf_Sxword addend ) in elfio_relocation_add_entry() 306 return prelocation->add_entry( offset, symbol, type, addend ); in elfio_relocation_add_entry()
|
H A D | elfio_c_wrapper.h | 228 Elf_Sxword* addend ); 234 Elf_Sxword addend ); 239 Elf_Sxword addend );
|
/third_party/elfio/examples/c_wrapper/ |
H A D | elfio_c_wrapper.cpp | 286 Elf_Sxword* addend ) in elfio_relocation_get_entry() 288 return prelocation->get_entry( index, *offset, *symbol, *type, *addend ); in elfio_relocation_get_entry() 296 Elf_Sxword addend ) in elfio_relocation_set_entry() 298 return prelocation->set_entry( index, offset, symbol, type, addend ); in elfio_relocation_set_entry() 305 Elf_Sxword addend ) in elfio_relocation_add_entry() 307 return prelocation->add_entry( offset, symbol, type, addend ); in elfio_relocation_add_entry()
|
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 );
|
/third_party/musl/porting/liteos_a/user/ldso/ |
H A D | dynlink.c | 349 size_t addend; in do_relocs() local 353 /* Only ldso's REL table needs addend saving/reuse. */ in do_relocs() 366 addend = rel[2]; in do_relocs() 368 addend = 0; in do_relocs() 370 /* Save original addend in stage 2 where the dso in do_relocs() 372 * saved addend since the inline one was clobbered. */ in do_relocs() 375 addend = saved_addends[save_slot++]; in do_relocs() 377 addend = *reloc_addr; in do_relocs() 393 dso->lazy[3*dso->lazy_cnt+2] = addend; in do_relocs() 421 addend in do_relocs() [all...] |
/third_party/musl/porting/liteos_a/user_debug/ldso/ |
H A D | dynlink.c | 349 size_t addend; in do_relocs() local 353 /* Only ldso's REL table needs addend saving/reuse. */ in do_relocs() 366 addend = rel[2]; in do_relocs() 368 addend = 0; in do_relocs() 370 /* Save original addend in stage 2 where the dso in do_relocs() 372 * saved addend since the inline one was clobbered. */ in do_relocs() 375 addend = saved_addends[save_slot++]; in do_relocs() 377 addend = *reloc_addr; in do_relocs() 393 dso->lazy[3*dso->lazy_cnt+2] = addend; in do_relocs() 421 addend in do_relocs() [all...] |
/third_party/python/Modules/_io/ |
H A D | fileio.c | 665 size_t addend; local 672 addend = currentsize >> 3; 674 addend = 256 + currentsize; 675 if (addend < SMALLCHUNK) 677 addend = SMALLCHUNK; 678 return addend + currentsize;
|
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()
|
/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
|
/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/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...] |
/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
|
/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()
|
/third_party/elfio/tests/ |
H A D | ELFIOTest1.cpp | 829 Elf_Sxword addend; in TEST() local 831 rela.get_entry( i, offset, symbol, rtype, addend ); in TEST() 863 Elf_Sxword addend; in TEST() local 865 rel.get_entry( i, offset, symbol, rtype, addend ); in TEST()
|
/third_party/mesa3d/src/amd/common/ |
H A D | ac_rtld.c | 661 uint64_t addend; in apply_relocs() local 677 * addend is part of the relocation record? */ in apply_relocs() 679 /* Load the addend from the ELF instead of the destination, in apply_relocs() 688 addend = *(const uint32_t *)orig_ptr; in apply_relocs() 692 addend = *(const uint64_t *)orig_ptr; in apply_relocs() 699 uint64_t abs = symbol + addend; in apply_relocs()
|
/third_party/musl/porting/linux/user/ldso/ |
H A D | dynlink.c | 1036 size_t addend; in do_relocs() local 1040 /* Only ldso's REL table needs addend saving/reuse. */ in do_relocs() 1053 addend = rel[2]; in do_relocs() 1055 addend = 0; in do_relocs() 1057 /* Save original addend in stage 2 where the dso in do_relocs() 1059 * saved addend since the inline one was clobbered. */ in do_relocs() 1062 addend = saved_addends[save_slot++]; in do_relocs() 1064 addend = *reloc_addr; in do_relocs() 1095 dso->lazy[3*dso->lazy_cnt+2] = addend; in do_relocs() 1126 addend in do_relocs() 2418 size_t addend; do_android_relocs() local 2440 size_t addend; do_android_relocs() local [all...] |
/third_party/musl/ldso/linux/ |
H A D | dynlink.c | 1071 size_t addend; in do_relocs() local 1075 /* Only ldso's REL table needs addend saving/reuse. */ in do_relocs() 1088 addend = rel[2]; in do_relocs() 1090 addend = 0; in do_relocs() 1092 /* Save original addend in stage 2 where the dso in do_relocs() 1094 * saved addend since the inline one was clobbered. */ in do_relocs() 1097 addend = saved_addends[save_slot++]; in do_relocs() 1099 addend = *reloc_addr; in do_relocs() 1130 dso->lazy[3*dso->lazy_cnt+2] = addend; in do_relocs() 1161 addend in do_relocs() 2646 size_t addend; do_android_relocs() local 2668 size_t addend; do_android_relocs() local [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | rtpdec.c | 670 int64_t addend; in finalize_packet() local 676 addend = av_rescale(s->last_rtcp_ntp_time - s->first_rtcp_ntp_time, in finalize_packet() 679 pkt->pts = s->range_start_offset + s->rtcp_ts_offset + addend + in finalize_packet()
|