/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
|
/prebuilt/linux-x86/toolchain/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/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...] |
softmmu_header.h | 97 physaddr = addr + env->tlb_table[mmu_idx][page_index].addend; 118 physaddr = addr + env->tlb_table[mmu_idx][page_index].addend; 143 physaddr = addr + env->tlb_table[mmu_idx][page_index].addend;
|
cpu-defs.h | 95 /* Addend to virtual address to get host address. IO accesses 97 size_t addend; member in struct:CPUTLBEntry
|
elf.h | [all...] |
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
RuntimeDyldImpl.h | 107 int64_t Addend; // Addend encoded in the instruction itself, if any. 110 RelocationEntry(StringRef t, uint64_t offset, uint32_t data, int64_t addend) 111 : Target(t), Offset(offset), Data(data), Addend(addend),
|
/external/llvm/lib/Target/ARM/ |
ARMELFWriterInfo.h | 30 /// hasRelocationAddend - True if the target uses an addend in the 34 /// getDefaultAddendForRelTy - Gets the default addend value for a
|
/external/llvm/lib/Target/MBlaze/ |
MBlazeELFWriterInfo.h | 30 /// hasRelocationAddend - True if the target uses an addend in the 34 /// 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 ",
|
/external/llvm/lib/MC/ |
ELFObjectWriter.h | 97 uint64_t Addend) 99 Symbol(Sym), r_addend(Addend) {} 349 int64_t Addend) = 0; 364 int64_t Addend); 391 int64_t Addend); 410 int64_t 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/lib/CodeGen/ |
ELF.h | 204 int64_t r_add; // explicit relocation addend 205 bool r_rela; // if true then the addend is part of the entry 206 // otherwise the addend is at the location specified 220 bool rela = true, int64_t addend = 0) : 222 r_add(addend), r_rela(rela) {}
|
ELFWriter.cpp | 753 // True if the target uses the relocation entry to hold the addend, 754 // otherwise the addend is written directly to the relocatable field. 787 int64_t Addend = 0; 797 // SymIdx + Addend = section sym for global + section offset 799 Addend = PrivateSyms[SymIdx]->Value + GlobalOffset; 802 Addend = TEW->getDefaultAddendForRelTy(RelType, GlobalOffset); 807 Addend = TEW->getDefaultAddendForRelTy(RelType); 825 Addend = TEW->getDefaultAddendForRelTy(RelType, SymOffset); 828 // The target without addend on the relocation symbol must be 829 // patched in the relocation place itself to contain the addend [all...] |
/frameworks/compile/linkloader/include/impl/ |
ELFReloc.hxx | 104 PRINT_LINT("Addend", concrete()->getAddend() );
|
/external/libnl-headers/ |
netlink-local.h | 152 dst->rs_addend = src->addend; 162 dst->addend = src->rs_addend;
|
/external/llvm/include/llvm/Target/ |
TargetELFWriterInfo.h | 95 /// hasRelocationAddend - True if the target uses an addend in the 99 /// getDefaultAddendForRelTy - Gets the default addend value for a
|
/development/ndk/platforms/android-3/include/linux/ |
pkt_sched.h | 57 short addend; member in struct:tc_ratespec
|
/external/elfutils/libebl/ |
sparc_symbol.c | 122 /* High 24 bits of r_type are used for second addend in R_SPARC_OLO10. */
|
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
pkt_sched.h | 57 short addend; member in struct:tc_ratespec
|