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

1 2 3 4 5 6 7 8

  /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;
  /frameworks/compile/mclinker/scripts/
test_files.sh 57 ADDEND=">";
60 ADDEND="${ADDEND} ";
62 sed "s/${EMAIL}>/${EMAIL}${ADDEND}/" ${TARGET_FILE}.tmp > ${TARGET_FILE}
65 ADDEND="${ADDEND} ";
67 sed "s/${EMAIL}${ADDEND}/${EMAIL}>/g" ${TARGET_FILE}.tmp > ${TARGET_FILE}
normal_files.sh 108 ADDEND=">";
111 ADDEND="${ADDEND} ";
113 sed -e "s/${EMAIL}>/${EMAIL}${ADDEND}/g" ${TARGET_FILE} > ${TARGET_FILE}.tmp
117 ADDEND="${ADDEND} ";
119 sed -e "s/${EMAIL}${ADDEND}/${EMAIL}>/g" ${TARGET_FILE} > ${TARGET_FILE}.tmp
  /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
  /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/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 28 int64_t Addend) {
36 << " Addend: " << Addend
52 Addend);
61 Addend);
71 Addend);
83 int64_t Addend) {
92 uint64_t ValueToWrite = Value + Addend;
112 int64_t Addend) {
129 Value += Addend;
    [all...]
RuntimeDyldELF.cpp 198 int64_t Addend) {
205 *Target = Value + Addend;
210 Value += Addend;
222 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
235 int32_t Addend) {
240 *Target = Placeholder + Value + Addend;
245 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
261 int32_t Addend) {
264 Value += Addend;
270 << " Addend: " << format("%x",Addend
    [all...]
RuntimeDyldELF.h 31 int64_t Addend);
37 int32_t Addend);
43 int32_t Addend);
49 int64_t Addend);
RuntimeDyldMachO.h 35 int64_t Addend);
42 int64_t Addend);
49 int64_t Addend);
61 int64_t Addend);
RuntimeDyldImpl.h 50 // calculate MachO relocation addend
63 intptr_t Addend; // Addend encoded in the instruction itself, if any,
66 RelocationEntry(unsigned id, uint64_t offset, uint32_t data, int64_t addend)
67 : SectionID(id), Offset(offset), Data(data), Addend(addend) {}
83 intptr_t Addend;
85 RelocationValueRef(): SectionID(0), Addend(0), SymbolName(0) {}
198 /// \param Addend A constant addend used to compute the value to be store
    [all...]
RuntimeDyld.cpp 315 << " Addend: " << format("%p", Value.Addend)
325 Value.Addend));
331 Value.Addend));
373 << " Addend: " << RE.Addend
377 Value, RE.Data, RE.Addend);
412 Entry.Addend += Loc->second.second;
  /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/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...]
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 42 const MCSymbol *Sym, uint64_t Addend, const MCFixup &Fixup)
44 r_addend(Addend), Fixup(&Fixup) {}
79 int64_t Addend) const = 0;
  /frameworks/compile/mclinker/include/mcld/LD/
Relocation.h 52 /// addend - A value
53 Address addend() const function in class:mcld::Relocation
108 /// m_Addend - the addend
  /external/llvm/lib/Target/ARM/
ARMELFWriterInfo.h 31 /// hasRelocationAddend - True if the target uses an addend in the
35 /// getDefaultAddendForRelTy - Gets the default addend value for a
  /external/llvm/lib/Target/MBlaze/
MBlazeELFWriterInfo.h 31 /// hasRelocationAddend - True if the target uses an addend in the
35 /// getDefaultAddendForRelTy - Gets the default addend value for a
  /external/llvm/lib/Target/X86/
X86ELFWriterInfo.h 31 /// hasRelocationAddend - True if the target uses an addend in the
35 /// getDefaultAddendForRelTy - Gets the default addend value for a
  /frameworks/compile/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; \
  /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 ",
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMRelocationFactory.cpp 408 ARMRelocationFactory::DWord A = pReloc.target() + pReloc.addend();
424 // in order to keep the addend store in the place correct.
448 ARMRelocationFactory::DWord A = pReloc.target() + pReloc.addend();
460 ARMRelocationFactory::DWord A = pReloc.target() + pReloc.addend();
471 ARMRelocationFactory::DWord A = pReloc.target() + pReloc.addend();
488 ARMRelocationFactory::DWord A = pReloc.target() + pReloc.addend();
504 ARMRelocationFactory::DWord A = pReloc.target() + pReloc.addend();
533 + pReloc.addend();
634 helper_extract_movw_movt_addend(pReloc.target()) + pReloc.addend();
662 helper_extract_movw_movt_addend(pReloc.target()) + pReloc.addend();
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCELFObjectWriter.cpp 26 int64_t Addend) const;
43 int64_t Addend) const {

Completed in 1286 milliseconds

1 2 3 4 5 6 7 8