/third_party/elfio/elfio/ |
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() argument 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() [all …]
|
/third_party/skia/third_party/externals/brotli/c/fuzz/ |
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() 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/ |
D | RuntimeDyldImpl.h | 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 184 Addend(SectionAOffset - SectionBOffset + addend), IsPCRel(IsPCRel), in RelocationEntry()
|
/third_party/openssl/crypto/ec/curve448/ |
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 >> 1], in ossl_curve448_base_double_scalarmul_non_secret() [all …]
|
/third_party/elfio/examples/c_wrapper/ |
D | elfio_c_wrapper.cpp | 286 Elf_Sxword* addend ) in elfio_relocation_get_entry() argument 288 return prelocation->get_entry( index, *offset, *symbol, *type, *addend ); in elfio_relocation_get_entry() 296 Elf_Sxword addend ) in elfio_relocation_set_entry() argument 298 return prelocation->set_entry( index, offset, symbol, type, addend ); in elfio_relocation_set_entry() 305 Elf_Sxword addend ) in elfio_relocation_add_entry() argument 307 return prelocation->add_entry( offset, symbol, type, addend ); in elfio_relocation_add_entry()
|
D | c_example.c | 125 Elf_Sxword addend; in main() local 127 &addend ); in main()
|
D | elfio_c_wrapper.h | 226 Elf_Sxword* addend ); 232 Elf_Sxword addend ); 237 Elf_Sxword addend );
|
/third_party/elfio/c_wrapper/ |
D | elfio_c_wrapper.cpp | 285 Elf_Sxword* addend ) in elfio_relocation_get_entry() argument 287 return prelocation->get_entry( index, *offset, *symbol, *type, *addend ); in elfio_relocation_get_entry() 295 Elf_Sxword addend ) in elfio_relocation_set_entry() argument 297 return prelocation->set_entry( index, offset, symbol, type, addend ); in elfio_relocation_set_entry() 304 Elf_Sxword addend ) in elfio_relocation_add_entry() argument 306 return prelocation->add_entry( offset, symbol, type, addend ); in elfio_relocation_add_entry()
|
D | elfio_c_wrapper.h | 228 Elf_Sxword* addend ); 234 Elf_Sxword addend ); 239 Elf_Sxword addend );
|
/third_party/python/Modules/_io/ |
D | fileio.c | 663 size_t addend; local 670 addend = currentsize >> 3; 672 addend = 256 + currentsize; 673 if (addend < SMALLCHUNK) 675 addend = SMALLCHUNK; 676 return addend + currentsize;
|
D | winconsoleio.c | 749 DWORD addend; in new_buffersize() local 755 addend = currentsize >> 3; in new_buffersize() 757 addend = 256 + currentsize; in new_buffersize() 758 if (addend < SMALLCHUNK) in new_buffersize() 760 addend = SMALLCHUNK; in new_buffersize() 761 return addend + currentsize; in new_buffersize()
|
/third_party/musl/porting/liteos_a/user/ldso/ |
D | dynlink.c | 349 size_t addend; in do_relocs() local 366 addend = rel[2]; in do_relocs() 368 addend = 0; 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 -= (size_t)reloc_addr; in do_relocs() 425 *reloc_addr = sym_val + addend; in do_relocs() 428 memcpy(reloc_addr, &(size_t){sym_val + addend}, sizeof(size_t)); in do_relocs() 431 *reloc_addr = (size_t)base + addend; in do_relocs() [all …]
|
/third_party/musl/porting/liteos_a/user_debug/ldso/ |
D | dynlink.c | 349 size_t addend; in do_relocs() local 366 addend = rel[2]; in do_relocs() 368 addend = 0; 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 -= (size_t)reloc_addr; in do_relocs() 425 *reloc_addr = sym_val + addend; in do_relocs() 428 memcpy(reloc_addr, &(size_t){sym_val + addend}, sizeof(size_t)); in do_relocs() 431 *reloc_addr = (size_t)base + addend; in do_relocs() [all …]
|
/third_party/musl/ldso/ |
D | dynlink.c | 351 size_t addend; in do_relocs() local 368 addend = rel[2]; in do_relocs() 370 addend = 0; in do_relocs() 377 addend = saved_addends[save_slot++]; in do_relocs() 379 addend = *reloc_addr; in do_relocs() 395 dso->lazy[3*dso->lazy_cnt+2] = addend; in do_relocs() 423 addend -= (size_t)reloc_addr; in do_relocs() 427 *reloc_addr = sym_val + addend; in do_relocs() 430 memcpy(reloc_addr, &(size_t){sym_val + addend}, sizeof(size_t)); in do_relocs() 433 *reloc_addr = (size_t)base + addend; in do_relocs() [all …]
|
/third_party/python/Lib/logging/ |
D | handlers.py | 337 addend = -3600 339 addend = 3600 340 newRolloverAt += addend 423 addend = 3600 425 addend = -3600 426 timeTuple = time.localtime(t + addend) 445 addend = -3600 447 addend = 3600 448 newRolloverAt += addend
|
/third_party/gstreamer/gstplugins_bad/sys/winks/ |
D | gstksclock.c | 169 gint addend; in gst_ks_clock_set_state_unlocked() local 177 addend = (state > priv->state) ? 1 : -1; in gst_ks_clock_set_state_unlocked() 183 KSSTATE next_state = priv->state + addend; in gst_ks_clock_set_state_unlocked()
|
D | gstksvideodevice.c | 826 gint addend; in gst_ks_video_device_set_state() local 834 addend = (state > priv->state) ? 1 : -1; in gst_ks_video_device_set_state() 840 KSSTATE next_state = priv->state + addend; in gst_ks_video_device_set_state() 843 if (addend < 0 && next_state == KSSTATE_ACQUIRE) in gst_ks_video_device_set_state() 855 if (priv->state == KSSTATE_PAUSE && addend > 0) in gst_ks_video_device_set_state() 857 else if (priv->state == KSSTATE_STOP && addend < 0) in gst_ks_video_device_set_state()
|
/third_party/elfio/ |
D | README-OH.md | 97 Elf_Sxword addend; 101 reloc.get_entry(i, offset, symbolValue, symbolName, type, addend, calcValue);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/ |
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/mesa3d/src/amd/common/ |
D | ac_rtld.c | 661 uint64_t addend; in apply_relocs() local 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/elfutils/libdwfl/ |
D | relocate.c | 329 const GElf_Sxword *addend, in relocate() argument 390 if (addsub != 0 && addend == NULL) \ in relocate() 423 if (addend) in relocate() 426 value += *addend; in relocate()
|
/third_party/elfio/tests/ |
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/musl/porting/linux/user/ldso/ |
D | dynlink.c | 975 size_t addend; in do_relocs() local 992 addend = rel[2]; in do_relocs() 994 addend = 0; in do_relocs() 1001 addend = saved_addends[save_slot++]; in do_relocs() 1003 addend = *reloc_addr; in do_relocs() 1030 dso->lazy[3*dso->lazy_cnt+2] = addend; in do_relocs() 1061 addend -= (size_t)reloc_addr; in do_relocs() 1065 *reloc_addr = sym_val + addend; in do_relocs() 1068 memcpy(reloc_addr, &(size_t){sym_val + addend}, sizeof(size_t)); in do_relocs() 1071 *reloc_addr = (size_t)base + addend; in do_relocs() [all …]
|
/third_party/flutter/flutter/packages/flutter/lib/src/painting/ |
D | inline_span.dart | 26 /// Increases the [value] by the `addend`. 27 void increment(int addend) { 28 assert(addend >= 0); 29 _value += addend;
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
D | nvfx_fragprog.c | 483 struct nvfx_src addend = nvfx_src(nvfx_fp_imm(fpc, 0, 0, 0, 1)); in nvfx_fragprog_parse_instruction() local 484 addend.swz[0] = fsrc->Register.SwizzleX; in nvfx_fragprog_parse_instruction() 485 addend.swz[1] = fsrc->Register.SwizzleY; in nvfx_fragprog_parse_instruction() 486 addend.swz[2] = fsrc->Register.SwizzleZ; in nvfx_fragprog_parse_instruction() 487 addend.swz[3] = fsrc->Register.SwizzleW; in nvfx_fragprog_parse_instruction() 489 … nvfx_fp_emit(fpc, arith(0, ADD, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), addend, none)); in nvfx_fragprog_parse_instruction()
|