HomeSort by relevance Sort by last modified time
    Searched full:addend (Results 1 - 25 of 238) sorted by null

1 2 3 4 5 6 7 8 910

  /external/llvm/include/llvm/Object/
RelocVisitor.h 123 // Ideally the Addend here will be the addend in the data for
126 int64_t Addend;
127 R.getAdditionalInfo(Addend);
128 return RelocToApply(Value + Addend, 4);
133 int64_t Addend;
134 R.getAdditionalInfo(Addend);
137 return RelocToApply(Value + Addend - Address, 4);
145 int64_t Addend;
146 R.getAdditionalInfo(Addend);
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
Atomics.h 84 inline int atomicIncrement(int* addend) { return InterlockedIncrement(reinterpret_cast<long*>(addend)); }
85 inline int atomicDecrement(int* addend) { return InterlockedDecrement(reinterpret_cast<long*>(addend)); }
87 inline int atomicIncrement(int volatile* addend) { return InterlockedIncrement(reinterpret_cast<long volatile*>(addend)); }
88 inline int atomicDecrement(int volatile* addend) { return InterlockedDecrement(reinterpret_cast<long volatile*>(addend)); }
94 inline int atomicIncrement(int volatile* addend) { return OSAtomicIncrement32Barrier(const_cast<int*>(addend)); }
    [all...]
  /external/clang/test/CodeGen/
cleanup-stack.c 6 int addend; member in struct:s0
10 *p->var += p->addend;
  /external/llvm/test/CodeGen/ARM/
fast-isel-static.ll 4 define void @myadd(float* %sum, float* %addend) nounwind {
7 %addend.addr = alloca float*, align 4
9 store float* %addend, float** %addend.addr, align 4
12 %tmp2 = load float** %addend.addr, align 4
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.h 39 int64_t Addend);
45 int32_t Addend);
51 int32_t Addend);
57 int32_t Addend);
63 int64_t Addend);
69 int64_t Addend);
RuntimeDyldELF.cpp 197 int64_t Addend) {
204 *Target = Value + Addend;
205 DEBUG(dbgs() << "Writing " << format("%p", (Value + Addend))
211 Value += Addend;
229 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
242 int32_t Addend) {
250 *Target = *Placeholder + Value + Addend;
260 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
276 int32_t Addend) {
280 Value += Addend;
    [all...]
RuntimeDyldMachO.cpp 28 int64_t Addend) {
39 << " Addend: " << Addend
55 Addend);
64 Addend);
74 Addend);
85 int64_t Addend) {
94 uint64_t ValueToWrite = Value + Addend;
114 int64_t Addend) {
131 Value += Addend;
    [all...]
RuntimeDyldMachO.h 35 int64_t Addend);
42 int64_t Addend);
49 int64_t Addend);
62 int64_t Addend);
RuntimeDyldImpl.h 88 /// Addend - the relocation addend encoded in the instruction itself. Also
90 intptr_t Addend;
92 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend)
93 : SectionID(id), Offset(offset), RelType(type), Addend(addend) {}
111 intptr_t Addend;
113 RelocationValueRef(): SectionID(0), Addend(0), SymbolName(0) {}
279 /// \param Addend A constant addend used to compute the value to be store
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
compatibility.h 92 * @param addend Value to add.
95 fetch_and_add_32(volatile int32* ptr, int32 addend)
98 return _InterlockedExchangeAdd((void*)ptr, addend);
100 return _InterlockedExchangeAdd((void*)ptr, addend);
103 addend);
105 return __sync_fetch_and_add(ptr, addend);
111 after = before + addend;
121 *(ptr) += addend;
131 * @param addend Value to add.
134 fetch_and_add_64(volatile int64* ptr, int64 addend)
    [all...]
  /external/webkit/Source/WebCore/css/
CSSOMUtils.cpp 63 Vector<UChar> addend; local
64 serializeIdentifier(identifier, addend);
65 appendTo.append(String::adopt(addend));
99 Vector<UChar> addend; local
100 serializeString(string, addend);
101 appendTo.append(String::adopt(addend));
  /external/llvm/test/MC/Mips/
mips_gprel16.ll 2 ; out the addend to the gprel16 relocation. The
3 ; addend is stored in the instruction immediate
  /frameworks/compile/mclinker/include/mcld/Fragment/
Relocation.h 63 /// @param pAddend [in] the addend of the relocation entry
77 /// addend - A value
78 Address addend() const function in class:mcld::Relocation
101 /// updateAddend - A relocation with a section symbol must update addend
125 /// m_Addend - the addend
  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeELFObjectWriter.cpp 26 int64_t Addend) const;
41 int64_t Addend) const {
59 Type = ((IsRelocWithSymbol || Addend !=0)
  /external/llvm/test/CodeGen/XCore/
global_negative_offset.ll 4 ; error if the address + addend is less than the start of the cp / dp.
  /external/qemu/
softmmu_template.h 105 unsigned long addend; local
160 addend = env->tlb_table[mmu_idx][index].addend;
161 res = glue(glue(ld, USUFFIX), _raw)((uint8_t *)(long)(addr+addend));
198 unsigned long addend; local
229 addend = env->tlb_table[mmu_idx][index].addend;
230 res = glue(glue(ld, USUFFIX), _raw)((uint8_t *)(long)(addr+addend));
280 unsigned long addend; local
336 addend = env->tlb_table[mmu_idx][index].addend
372 unsigned long addend; local
    [all...]
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonRelocator.cpp 110 HexagonRelocator::DWord A = pReloc.addend();
128 HexagonRelocator::DWord A = pReloc.addend();
145 HexagonRelocator::DWord A = pReloc.addend();
162 HexagonRelocator::DWord A = pReloc.addend();
174 HexagonRelocator::DWord A = pReloc.addend();
184 HexagonRelocator::DWord A = pReloc.addend();
196 HexagonRelocator::DWord A = pReloc.addend();
208 HexagonRelocator::DWord A = pReloc.addend();
222 HexagonRelocator::DWord A = pReloc.addend();
247 HexagonRelocator::DWord A = pReloc.addend();
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
BranchIsland.h 122 Stub::SWord addend() const { return m_Addend; } function in class:mcld::BranchIsland::Key
132 KEY.addend();
142 (KEY1.addend() == KEY2.addend());
  /frameworks/rs/driver/linkloader/include/
ELFTypes.h 130 typedef detail::ELFSword addend; typedef in struct:ELFPrimitiveTypes
153 typedef detail::ELFSxword addend; typedef in struct:ELFPrimitiveTypes
193 typedef typename ELFPrimitiveTypes<BITWIDTH>::addend addend_t; \
211 typedef ELFPrimitiveTypes<BITWIDTH>::addend addend_t; \
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocator.cpp 367 ARMRelocator::DWord A = pReloc.target() + pReloc.addend();
394 // in order to keep the addend store in the place correct.
418 ARMRelocator::DWord A = pReloc.target() + pReloc.addend();
438 ARMRelocator::DWord A = pReloc.target() + pReloc.addend();
447 ARMRelocator::DWord A = pReloc.target() + pReloc.addend();
463 ARMRelocator::DWord A = pReloc.target() + pReloc.addend();
478 ARMRelocator::DWord A = pReloc.target() + pReloc.addend();
507 + pReloc.addend();
618 helper_extract_movw_movt_addend(pReloc.target()) + pReloc.addend();
636 pReloc.target() + pReloc.addend(), X)
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsRelocator.cpp 168 // Note the addend is section symbol offset here
169 assert (pHiReloc.addend() == pLoReloc.addend());
174 pLoReloc.addend();
190 Relocator::DWord A = pReloc.target() + pReloc.addend();
221 Relocator::DWord A = pReloc.target() + pReloc.addend();
292 int32_t ALO = (pReloc.target() & 0xFFFF) + pReloc.addend();
345 int32_t A = pReloc.target() + pReloc.addend();
385 int32_t A = pReloc.target() + pReloc.addend();
  /external/iproute2/tc/
f_flow.c 37 "OPS := [ or NUM | and NUM | xor NUM | rshift NUM | addend NUM ]\n"
97 static int get_addend(__u32 *addend, char *argv, __u32 keys)
128 *addend = tmp;
193 } else if (matches(*argv, "addend") == 0) {
196 fprintf(stderr, "Illegal \"addend\"\n");
331 fprintf(f, "addend 0x%x ",
  /external/llvm/test/CodeGen/PowerPC/
buildvec_canonicalize.ll 12 ; The fmul will spill a vspltisw to create a -0.0 vector used as the addend
  /external/qemu/block/
qcow2-refcount.c 32 int addend);
459 int64_t offset, int64_t length, int addend)
469 printf("update_refcount: offset=%" PRId64 " size=%" PRId64 " addend=%d\n",
470 offset, length, addend);
521 refcount += addend;
551 dummy = update_refcount(bs, offset, cluster_offset - offset, -addend);
559 * addend must be 1 or -1.
566 int addend)
571 ret = update_refcount(bs, cluster_index << s->cluster_bits, 1, addend);
746 int64_t l1_table_offset, int l1_size, int addend)
    [all...]
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 42 const MCSymbol *Sym, uint64_t Addend, const MCFixup &Fixup)
44 r_addend(Addend), Fixup(&Fixup) {}
81 int64_t Addend) const = 0;

Completed in 2177 milliseconds

1 2 3 4 5 6 7 8 910