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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/Object/
RelocVisitor.h 140 int64_t Addend;
141 Obj->getRelocationAddend(DRI, Addend);
142 return Addend;
148 int64_t Addend;
149 Obj->getRelocationAddend(DRI, Addend);
150 return Addend;
156 int64_t Addend;
157 Obj->getRelocationAddend(DRI, Addend);
158 return Addend;
164 int64_t Addend;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
Atomics.h 45 ALWAYS_INLINE int atomicIncrement(int volatile* addend) { return InterlockedIncrement(reinterpret_cast<long volatile*>(addend)); }
46 ALWAYS_INLINE int atomicDecrement(int volatile* addend) { return InterlockedDecrement(reinterpret_cast<long volatile*>(addend)); }
48 ALWAYS_INLINE int64_t atomicIncrement(int64_t volatile* addend) { return InterlockedIncrement64(reinterpret_cast<long long volatile*>(addend)); }
49 ALWAYS_INLINE int64_t atomicDecrement(int64_t volatile* addend) { return InterlockedDecrement64(reinterpret_cast<long long volatile*>(addend)); }
66 ALWAYS_INLINE int atomicIncrement(int volatile* addend) { return __sync_add_and_fetch(addend, 1);
    [all...]
  /external/clang/test/CodeGen/
cleanup-stack.c 6 int addend; member in struct:s0
10 *p->var += p->addend;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.h 38 int64_t Addend);
44 int64_t Addend);
50 int32_t Addend);
56 int64_t Addend);
62 int32_t Addend);
68 int32_t Addend);
74 int64_t Addend);
80 int64_t Addend);
RuntimeDyldELF.cpp 205 int64_t Addend) {
212 *Target = Value + Addend;
213 DEBUG(dbgs() << "Writing " << format("%p", (Value + Addend))
219 Value += Addend;
237 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
250 int32_t Addend) {
258 *Target = *Placeholder + Value + Addend;
268 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
284 int64_t Addend) {
293 << " Addend: 0x" << format("%llx",Addend
    [all...]
RuntimeDyldMachO.cpp 90 return resolveRelocation(Section, RE.Offset, Value, RE.RelType, RE.Addend,
98 int64_t Addend,
110 << " Addend: " << Addend
126 Addend);
135 Addend);
145 Addend);
156 int64_t Addend) {
165 uint64_t ValueToWrite = Value + Addend;
185 int64_t Addend) {
    [all...]
RuntimeDyldMachO.h 34 int64_t Addend);
41 int64_t Addend);
48 int64_t Addend);
54 int64_t Addend,
RuntimeDyldImpl.h 88 /// Addend - the relocation addend encoded in the instruction itself. Also
90 intptr_t Addend;
98 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend)
99 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
102 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
104 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
111 intptr_t Addend;
    [all...]
  /external/llvm/test/Object/
relocation-executable.test 10 // CHECK-NEXT: Addend: 0x0
18 // CHECK-NEXT: Addend: 0x0
24 // CHECK-NEXT: Addend: 0x0
  /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/llvm/test/CodeGen/ARM/
fast-isel-static.ll 6 define void @myadd(float* %sum, float* %addend) nounwind {
9 %addend.addr = alloca float*, align 4
11 store float* %addend, float** %addend.addr, align 4
14 %tmp2 = load float** %addend.addr, align 4
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSOMUtils.cpp 54 StringBuilder addend; local
55 serializeIdentifier(identifier, addend);
56 appendTo.append(addend.toString());
90 StringBuilder addend; local
91 serializeString(string, addend);
92 appendTo.append(addend.toString());
  /external/llvm/test/ExecutionEngine/MCJIT/
2013-04-04-RelocAddend.ll 3 ; Verify relocations to global symbols with addend work correctly.
  /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
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableColor.cpp 70 AnimatableColorImpl AnimatableColorImpl::addWith(const AnimatableColorImpl& addend) const
72 return AnimatableColorImpl(m_red + addend.m_red,
73 m_green + addend.m_green,
74 m_blue + addend.m_blue,
75 m_alpha + addend.m_alpha);
  /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/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...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86ELFRelocationInfo.cpp 35 int64_t Addend; getELFRelocationAddend(Rel, Addend);
43 // If hasAddend is true, then we need to add Addend (r_addend) to Expr.
47 // A: the addend used to compute the value of the relocatable field.
122 if (Expr && hasAddend && Addend != 0)
124 MCConstantExpr::Create(Addend, Ctx),
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonRelocator.cpp 475 HexagonRelocator::DWord A = pReloc.addend();
492 HexagonRelocator::DWord A = pReloc.addend();
510 HexagonRelocator::DWord A = pReloc.addend();
526 HexagonRelocator::DWord A = pReloc.addend();
554 HexagonRelocator::DWord A = pReloc.addend();
567 HexagonRelocator::DWord A = pReloc.addend();
581 HexagonRelocator::DWord A = pReloc.addend();
594 HexagonRelocator::DWord A = pReloc.addend();
607 HexagonRelocator::DWord A = pReloc.addend();
626 HexagonRelocator::DWord A = pReloc.addend();
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
api_schema_graph.py 116 def _Update(base, addend, annotation=None):
119 from |addend| that are not present in |base|.
121 for key in addend:
125 addend[key],
129 _Update(base[key], addend[key], annotation=annotation)
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 42 const MCSymbol *Sym, uint64_t Addend, const MCFixup &Fixup)
44 r_addend(Addend), Fixup(&Fixup) {}
76 int64_t Addend) const = 0;
  /external/llvm/lib/Target/R600/MCTargetDesc/
AMDGPUELFObjectWriter.cpp 24 int64_t Addend) const {
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCObjectWriter.cpp 29 int64_t Addend) const LLVM_OVERRIDE;
92 int64_t Addend) const {
126 // The addend in a PC-relative R_390_* relocation is always applied to
128 // is applied to the symbol first, we can't use an addend there too.
  /external/llvm/test/CodeGen/XCore/
offset_folding.ll 24 ; error if the address + addend is less than the start of the cp / dp.
  /frameworks/compile/mclinker/include/mcld/LD/
BranchIsland.h 121 Stub::SWord addend() const { return m_Addend; } function in class:mcld::BranchIsland::Key
131 KEY.addend();
141 (KEY1.addend() == KEY2.addend());

Completed in 686 milliseconds

1 2 3 4 5 6 7 8 91011>>