/external/webkit/Source/JavaScriptCore/wtf/ |
D | Atomics.h | 84 inline int atomicIncrement(int* addend) { return InterlockedIncrement(reinterpret_cast<long*>(adden… in atomicIncrement() argument 85 inline int atomicDecrement(int* addend) { return InterlockedDecrement(reinterpret_cast<long*>(adden… in atomicDecrement() argument 87 …ine int atomicIncrement(int volatile* addend) { return InterlockedIncrement(reinterpret_cast<long … 88 …ine int atomicDecrement(int volatile* addend) { return InterlockedDecrement(reinterpret_cast<long … 94 inline int atomicIncrement(int volatile* addend) { return OSAtomicIncrement32Barrier(const_cast<int… 95 inline int atomicDecrement(int volatile* addend) { return OSAtomicDecrement32Barrier(const_cast<int… 99 inline int atomicIncrement(int volatile* addend) { return android_atomic_inc(addend); } 100 inline int atomicDecrement(int volatile* addend) { return android_atomic_dec(addend); } 105 inline int atomicIncrement(int volatile* addend) { return __gnu_cxx::__exchange_and_add(addend, 1) … 106 inline int atomicDecrement(int volatile* addend) { return __gnu_cxx::__exchange_and_add(addend, -1)…
|
/external/qemu/ |
D | softmmu_template.h | 105 unsigned long addend; in glue() local 160 addend = env->tlb_table[mmu_idx][index].addend; in glue() 161 res = glue(glue(ld, USUFFIX), _raw)((uint8_t *)(long)(addr+addend)); in glue() 198 unsigned long addend; in glue() local 229 addend = env->tlb_table[mmu_idx][index].addend; in glue() 230 res = glue(glue(ld, USUFFIX), _raw)((uint8_t *)(long)(addr+addend)); in glue() 280 unsigned long addend; in glue() local 336 addend = env->tlb_table[mmu_idx][index].addend; in glue() 337 glue(glue(st, SUFFIX), _raw)((uint8_t *)(long)(addr+addend), val); in glue() 372 unsigned long addend; in glue() local [all …]
|
D | softmmu_header.h | 97 physaddr = addr + env->tlb_table[mmu_idx][page_index].addend; in glue() 118 physaddr = addr + env->tlb_table[mmu_idx][page_index].addend; in glue() 143 physaddr = addr + env->tlb_table[mmu_idx][page_index].addend; in glue()
|
D | cpu-defs.h | 97 size_t addend; member
|
/external/webkit/Source/WebCore/css/ |
D | CSSOMUtils.cpp | 63 Vector<UChar> addend; in serializeIdentifier() local 64 serializeIdentifier(identifier, addend); in serializeIdentifier() 65 appendTo.append(String::adopt(addend)); in serializeIdentifier() 99 Vector<UChar> addend; in serializeString() local 100 serializeString(string, addend); in serializeString() 101 appendTo.append(String::adopt(addend)); in serializeString()
|
/external/llvm/test/CodeGen/ARM/ |
D | 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/clang/test/CodeGen/ |
D | cleanup-stack.c | 6 int addend; member 10 *p->var += p->addend; in f0()
|
/external/qemu/block/ |
D | qcow2-refcount.c | 32 int addend); 459 int64_t offset, int64_t length, int addend) in update_refcount() argument 470 offset, length, addend); in update_refcount() 521 refcount += addend; in update_refcount() 551 dummy = update_refcount(bs, offset, cluster_offset - offset, -addend); in update_refcount() 566 int addend) in update_cluster_refcount() argument 571 ret = update_refcount(bs, cluster_index << s->cluster_bits, 1, addend); in update_cluster_refcount() 746 int64_t l1_table_offset, int l1_size, int addend) in qcow2_update_snapshot_refcount() argument 796 if (addend != 0) { in qcow2_update_snapshot_refcount() 800 nb_csectors * 512, addend); in qcow2_update_snapshot_refcount() [all …]
|
D | qcow2.h | 186 int64_t l1_table_offset, int l1_size, int addend);
|
/external/llvm/test/MC/Mips/ |
D | mips_gprel16.ll | 2 ; out the addend to the gprel16 relocation. The 3 ; addend is stored in the instruction immediate
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | AtomicLongMapTest.java | 186 long addend = random.nextInt(MAX_ADDEND); in testAddAndGet() local 189 long result = map.addAndGet(key, addend); in testAddAndGet() 191 assertEquals(before + addend, after); in testAddAndGet() 193 addend = after; in testAddAndGet() 221 long addend = random.nextInt(MAX_ADDEND); in testGetAndAdd() local 224 long result = map.getAndAdd(key, addend); in testGetAndAdd() 226 assertEquals(before + addend, after); in testGetAndAdd() 228 addend = after; in testGetAndAdd()
|
/external/libnl-headers/ |
D | netlink-local.h | 152 dst->rs_addend = src->addend; in rtnl_copy_ratespec() 162 dst->addend = src->rs_addend; in rtnl_rcopy_ratespec()
|
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
D | ittnotify_config.h | 264 __TBB_machine_fetchadd4(volatile void* ptr, long addend) ITT_INLINE_ATTRIBUTE; 265 ITT_INLINE long __TBB_machine_fetchadd4(volatile void* ptr, long addend) in __TBB_machine_fetchadd4() argument 270 : "0"(addend), "m"(*(long*)ptr) in __TBB_machine_fetchadd4()
|
/external/llvm/test/CodeGen/XCore/ |
D | global_negative_offset.ll | 4 ; error if the address + addend is less than the start of the cp / dp.
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldImpl.h | 92 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend) in RelocationEntry() argument 93 : SectionID(id), Offset(offset), RelType(type), Addend(addend) {} in RelocationEntry()
|
/external/iproute2/tc/ |
D | f_flow.c | 97 static int get_addend(__u32 *addend, char *argv, __u32 keys) in get_addend() argument 128 *addend = tmp; in get_addend()
|
/external/llvm/test/CodeGen/PowerPC/ |
D | buildvec_canonicalize.ll | 12 ; The fmul will spill a vspltisw to create a -0.0 vector used as the addend
|
/external/elfutils/libdwfl/ |
D | relocate.c | 306 Dwfl_Error relocate (GElf_Addr offset, const GElf_Sxword *addend, in relocate_section() 385 if (addend) in relocate_section() 388 value += *addend; in relocate_section()
|
/external/llvm/test/MC/PowerPC/ |
D | ppc64-relocs-01.ll | 39 ;; 1. A R_PPC64_ADDR64 against the .text segment plus addend (the function
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonInstrInfoV4.td | 2690 (ins IntRegs:$base, u6_2Imm:$offset, u5Imm:$addend), 2691 "memw($base+#$offset) += #$addend", 2706 (ins IntRegs:$base, u6_2Imm:$offset, IntRegs:$addend), 2707 "memw($base+#$offset) += $addend", 2709 (i32 IntRegs:$addend)), 2746 (ins MEMri:$addr, u5Imm:$addend), 2747 "memw($addr) += $addend", 2762 (ins MEMri:$addr, IntRegs:$addend), 2763 "memw($addr) += $addend", 2764 [(store (add (load ADDRriU6_2:$addr), (i32 IntRegs:$addend)), [all …]
|
/external/stlport/src/ |
D | allocators.cpp | 92 inline long _STLP_atomic_add_gcc_x86(long volatile* p, long addend) { in _STLP_atomic_add_gcc_x86() argument 97 :"m" (*p), "1" (addend) in _STLP_atomic_add_gcc_x86() 99 return result + addend; in _STLP_atomic_add_gcc_x86()
|
/external/qemu/tcg/x86_64/ |
D | tcg-target.c | 81 tcg_target_long value, tcg_target_long addend) in patch_reloc() argument 83 value += addend; in patch_reloc() 654 tcg_out_modrm_offset(s, 0x03 | P_REXW, r0, r1, offsetof(CPUTLBEntry, addend) - in tcg_out_qemu_ld() 836 tcg_out_modrm_offset(s, 0x03 | P_REXW, r0, r1, offsetof(CPUTLBEntry, addend) - in tcg_out_qemu_st()
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 845 APFloat::multiplySignificand(const APFloat &rhs, const APFloat *addend) in multiplySignificand() argument 875 if (addend) { in multiplySignificand() 900 APFloat extendedAddend(*addend); in multiplySignificand() 1690 const APFloat &addend, in fusedMultiplyAdd() argument 1702 addend.category == fcNormal) { in fusedMultiplyAdd() 1705 lost_fraction = multiplySignificand(multiplicand, &addend); in fusedMultiplyAdd() 1713 if (category == fcZero && sign != addend.sign) in fusedMultiplyAdd() 1726 fs = addOrSubtract(addend, rounding_mode, false); in fusedMultiplyAdd()
|
/external/qemu/tcg/ |
D | tcg.c | 69 tcg_target_long value, tcg_target_long addend); 114 int label_index, long addend) in tcg_out_reloc() argument 124 patch_reloc(code_ptr, type, l->u.value, addend); in tcg_out_reloc() 130 r->addend = addend; in tcg_out_reloc() 147 patch_reloc(r->ptr, r->type, value, r->addend); in tcg_out_label()
|
/external/qemu/tcg/sparc/ |
D | tcg-target.c | 104 tcg_target_long value, tcg_target_long addend) in patch_reloc() argument 106 value += addend; in patch_reloc() 874 tcg_out_ldst(s, arg1, arg1, offsetof(CPUTLBEntry, addend) - in tcg_out_qemu_ld() 1054 tcg_out_ldst(s, arg1, arg1, offsetof(CPUTLBEntry, addend) - in tcg_out_qemu_st()
|