Searched refs:addend (Results 1 - 25 of 55) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DAtomics.h55 ALWAYS_INLINE int atomicAdd(int volatile* addend, int increment) argument
57 return InterlockedExchangeAdd(reinterpret_cast<long volatile*>(addend), static_cast<long>(increment)) + increment;
61 ALWAYS_INLINE int atomicSubtract(int volatile* addend, int decrement) argument
63 return InterlockedExchangeAdd(reinterpret_cast<long volatile*>(addend), static_cast<long>(-decrement)) - decrement;
66 ALWAYS_INLINE int atomicIncrement(int volatile* addend) { return InterlockedIncrement(reinterpret_cast<long volatile*>(addend)); } argument
67 ALWAYS_INLINE int atomicDecrement(int volatile* addend) { return InterlockedDecrement(reinterpret_cast<long volatile*>(addend)); } argument
69 ALWAYS_INLINE int64_t atomicIncrement(int64_t volatile* addend) { return InterlockedIncrement64(reinterpret_cast<long long volatile*>(addend)); } argument
70 atomicDecrement(int64_t volatile* addend) argument
[all...]
/external/clang/test/CodeGen/
H A Dcleanup-stack.c6 int addend; member in struct:s0
10 *p->var += p->addend;
/external/chromium_org/tools/relocation_packer/src/
H A Ddelta_encoder.cc27 ELF::Sxword addend = 0; local
35 packed->push_back(relocation->r_addend - addend);
36 addend = relocation->r_addend;
54 ELF::Sxword addend = 0; local
61 addend += packed[i + 1];
63 // Generate a relocation for this offset and addend pair.
67 relocation.r_addend = addend;
H A Ddelta_encoder_unittest.cc15 ELF::Sxword addend,
20 relocation.r_addend = addend;
25 ELF::Sxword addend,
30 relocation.r_addend == addend;
61 // Add a second relocation, 4 byte offset delta, 12 byte addend delta.
73 // 4 byte offset delta, 12 byte addend delta.
77 // Add a third relocation, 4 byte offset delta, 12 byte addend delta.
80 // Add three more relocations, 8 byte offset deltas, -24 byte addend deltas.
94 // Two relocations, 4 byte offset deltas, 12 byte addend deltas.
99 // Three relocations, 8 byte offset deltas, -24 byte addend delta
14 AddRelocation(ELF::Addr addr, ELF::Sxword addend, std::vector<ELF::Rela>* relocations) argument
24 CheckRelocation(ELF::Addr addr, ELF::Sxword addend, const ELF::Rela& relocation) argument
[all...]
H A Dpacker_unittest.cc28 ELF::Sxword addend,
33 relocation.r_addend = addend;
38 ELF::Sxword addend,
43 relocation.r_addend == addend;
146 // Two more relocations, 4 byte offset deltas, 12 byte addend deltas.
149 // Three more relocations, 8 byte deltas, -24 byte addend deltas.
241 // Two more relocations, 4 byte offset deltas, 12 byte addend deltas.
244 // Three more relocations, 8 byte offset deltas, -24 byte addend deltas.
27 AddRelocation(ELF::Addr addr, ELF::Sxword addend, std::vector<ELF::Rela>* relocations) argument
37 CheckRelocation(ELF::Addr addr, ELF::Sxword addend, const ELF::Rela& relocation) argument
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_elf_relocations.cpp417 ELF::Sxword addend = 0; local
427 addend += decoder.Dequeue();
432 relocation.r_addend = addend;
455 // Check for an initial APA1 header, packed relocations with addend.
474 const ELF::Sword CRAZY_UNUSED addend = rela->r_addend; local
478 RLOG(" rela reloc=%p offset=%p type=%d addend=%p\n",
482 addend);
491 sym_addr + addend);
492 *target = sym_addr + addend;
498 sym_addr + addend);
[all...]
/external/qemu/
H A Dcputlb.c32 .addend = -1,
144 addr = (tlb_entry->addr_write & TARGET_PAGE_MASK) + tlb_entry->addend;
208 ptrdiff_t addend; local
234 addend = (ptrdiff_t)qemu_get_ram_ptr(pd & TARGET_PAGE_MASK);
272 te->addend = addend - vaddr;
322 p = (void *)((uintptr_t)addr + env1->tlb_table[mmu_idx][page_index].addend);
/external/skia/gm/rebaseline_server/
H A Dimagepairset.py106 column_id=column_id, value=value, addend=0)
108 def _add_extra_column_value_to_summary(self, column_id, value, addend=1):
119 addend: integer; how many instances to add to the tally
126 instances_of_this_value += addend
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h90 /// Addend - the relocation addend encoded in the instruction itself. Also
112 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend) argument
113 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
116 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, argument
118 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
121 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, argument
123 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
126 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend, argument
130 Addend(SectionAOffset - SectionBOffset + addend), IsPCRel(IsPCRel),
/external/chromium_org/net/spdy/
H A Dhpack_input_stream.cc85 uint32 addend = next_octet << shift; local
87 if ((addend >> shift) != next_octet) {
90 *I += addend;
/external/chromium_org/third_party/skia/gm/rebaseline_server/
H A Dimagepairset.py121 column_id=column_id, value=value, addend=0)
123 def _add_extra_column_value_to_summary(self, column_id, value, addend=1):
134 addend: integer; how many instances to add to the tally
141 instances_of_this_value += addend
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dapi_schema_graph.py352 def update(base, addend):
355 from |addend| that are not present in |base|.
357 for key in addend:
360 base[key] = update(_GraphNode(annotation=annotator(key)), addend[key])
363 update(base[key], addend[key])
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformOperations.h88 TransformOperations add(const TransformOperations& addend) const;
/external/llvm/test/MC/PowerPC/
H A Dppc64-relocs-01.s33 # 1. A R_PPC64_ADDR64 against the .text segment plus addend (the function
/external/qemu/block/
H A Dqcow2-refcount.c32 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)
458 update_refcount(BlockDriverState *bs, int64_t offset, int64_t length, int addend) argument
564 update_cluster_refcount(BlockDriverState *bs, int64_t cluster_index, int addend) argument
745 qcow2_update_snapshot_refcount(BlockDriverState *bs, int64_t l1_table_offset, int l1_size, int addend) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
H A Delf-x86-amd64.c143 /* .rela: copy value out as addend, replace original with 0 */
144 reloc->addend = yasm_intnum_copy(intn);
200 if (reloc->addend)
201 YASM_WRITE_64I_L(bufp, reloc->addend);
/external/qemu/include/exec/
H A Dsoftmmu_header.h98 uintptr_t hostaddr = addr + env->tlb_table[mmu_idx][page_index].addend;
120 uintptr_t hostaddr = addr + env->tlb_table[mmu_idx][page_index].addend;
146 uintptr_t hostaddr = addr + env->tlb_table[mmu_idx][page_index].addend;
H A Dcpu-defs.h98 uintptr_t addend; member in struct:CPUTLBEntry
H A Dsoftmmu_template.h216 haddr = addr + env->tlb_table[mmu_idx][index].addend;
298 haddr = addr + env->tlb_table[mmu_idx][index].addend;
426 haddr = addr + env->tlb_table[mmu_idx][index].addend;
502 haddr = addr + env->tlb_table[mmu_idx][index].addend;
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringConcatenate.h293 inline void sumWithOverflow(unsigned& total, unsigned addend, bool& overflow) argument
296 total = oldTotal + addend;
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAtomicLongMapTest.java186 long addend = random.nextInt(MAX_ADDEND);
189 long result = map.addAndGet(key, addend);
191 assertEquals(before + addend, after);
193 addend = after;
221 long addend = random.nextInt(MAX_ADDEND);
224 long result = map.getAndAdd(key, addend);
226 assertEquals(before + addend, after);
228 addend = after;
/external/libnl/include/
H A Dnetlink-local.h149 dst->rs_addend = src->addend;
159 dst->addend = src->rs_addend;
/external/llvm/include/llvm/Object/
H A DELFObjectFile.h683 int64_t addend = 0; local
691 // TODO: Read implicit addend from section data.
697 addend = getRela(Rel)->r_addend;
715 fmt << *SymName << (addend < 0 ? "" : "+") << addend << "-P";
726 fmt << *SymName << (addend < 0 ? "" : "+") << addend;
738 if (addend != 0)
739 fmt << (addend < 0 ? "" : "+") << addend;
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineFrameModel.js548 * @param {!Object} addend
550 WebInspector.FrameStatistics._aggregateTimeByCategory = function(total, addend)
552 for (var category in addend)
553 total[category] = (total[category] || 0) + addend[category];
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Dittnotify_config.h264 __TBB_machine_fetchadd4(volatile void* ptr, long addend) ITT_INLINE_ATTRIBUTE;
265 ITT_INLINE long __TBB_machine_fetchadd4(volatile void* ptr, long addend) argument
270 : "0"(addend), "m"(*(long*)ptr)

Completed in 484 milliseconds

123