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

1 2 3 4 5 6 7

  /external/chromium_org/third_party/WebKit/Source/wtf/
Atomics.h 55 ALWAYS_INLINE int atomicAdd(int volatile* addend, int increment)
57 return InterlockedExchangeAdd(reinterpret_cast<long volatile*>(addend), static_cast<long>(increment)) + increment;
61 ALWAYS_INLINE int atomicSubtract(int volatile* addend, int decrement)
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)); }
67 ALWAYS_INLINE int atomicDecrement(int volatile* addend) { return InterlockedDecrement(reinterpret_cast<long volatile*>(addend)); }
69 ALWAYS_INLINE int64_t atomicIncrement(int64_t volatile* addend) { return InterlockedIncrement64(reinterpret_cast<long long volatile*>(addend)); }
    [all...]
  /external/clang/test/CodeGen/
cleanup-stack.c 6 int addend; member in struct:s0
10 *p->var += p->addend;
  /external/chromium_org/tools/relocation_packer/src/
delta_encoder.cc 27 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;
delta_encoder_unittest.cc 15 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 deltas
    [all...]
packer_unittest.cc 28 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.
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java 38 private static final long addend = 0xBL; field in class:ThreadLocalRandom
100 rnd = (rnd * multiplier + addend) & mask;
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_elf_relocations.cpp 417 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/
cputlb.c 32 .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/
imagepairset.py 106 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
  /frameworks/compile/mclinker/include/mcld/LD/
BranchIsland.h 119 Stub::SWord addend() const { return m_Addend; } function in class:mcld::BranchIsland::Key
129 KEY.addend();
139 (KEY1.addend() == KEY2.addend())) {
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 90 /// Addend - the relocation addend encoded in the instruction itself. Also
92 int64_t Addend;
112 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend)
113 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
116 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
118 : SectionID(id), Offset(offset), RelType(type), Addend(addend),
121 RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t addend,
    [all...]
  /external/chromium_org/net/spdy/
hpack_input_stream.cc 85 uint32 addend = next_octet << shift; local
87 if ((addend >> shift) != next_octet) {
90 *I += addend;
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64Relocator.cpp 429 Relocator::DWord A = pReloc.target() + pReloc.addend();
453 // in order to keep the addend store in the place correct.
478 Relocator::DWord A = pReloc.addend();
512 Relocator::DWord A = pReloc.addend();
531 Relocator::DWord A = pReloc.addend();
558 Relocator::DWord A = pReloc.addend();
589 Relocator::DWord A = pReloc.addend();
612 Relocator::DWord A = pReloc.addend();
623 // setup relocation addend if needed
625 if ((NULL != dyn_rela) && (AArch64Relocator::SymVal == dyn_rela->addend())) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
TransformOperations.h 88 TransformOperations add(const TransformOperations& addend) const;
  /external/llvm/test/MC/PowerPC/
ppc64-relocs-01.s 33 # 1. A R_PPC64_ADDR64 against the .text segment plus addend (the function
  /frameworks/rs/cpu_ref/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; \
  /ndk/sources/android/crazy_linker/src/
crazy_linker_elf_relocations.cpp 326 const ELF::Sword CRAZY_UNUSED addend = rela->r_addend; local
330 RLOG(" rela reloc=%p offset=%p type=%d addend=%p\n",
334 addend);
343 sym_addr + addend);
344 *target = sym_addr + addend;
350 sym_addr + addend);
351 *target = sym_addr + addend;
358 sym_addr + addend);
359 *target += sym_addr + addend;
366 load_bias_ + addend);
    [all...]
  /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...]
  /frameworks/compile/mclinker/lib/LD/
BranchIsland.cpp 100 Key key(pPrototype, pReloc.symInfo()->outSymbol(), pReloc.addend());
115 Key key(pPrototype, pReloc.symInfo()->outSymbol(), pReloc.addend());
  /frameworks/compile/mclinker/include/mcld/Fragment/
Relocation.h 60 /// @param pAddend [in] the addend of the relocation entry
74 /// addend - A value
75 Address addend() const function in class:mcld::Relocation
98 /// updateAddend - A relocation with a section symbol must update addend
122 /// m_Addend - the addend
Stub.h 44 SWord addend() const { return m_Addend; } function in class:mcld::Stub::Fixup
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMToARMStub.cpp 77 uint64_t dest = pTargetSymValue + pReloc.addend() + 8u;
ARMToTHMStub.cpp 77 uint64_t dest = pTargetSymValue + pReloc.addend() + 8u;
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
imagepairset.py 121 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/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf-x86-amd64.c 143 /* .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);

Completed in 724 milliseconds

1 2 3 4 5 6 7