HomeSort by relevance Sort by last modified time
    Searched defs:displacement (Results 1 - 25 of 40) sorted by null

1 2

  /art/compiler/linker/x86_64/
relative_patcher_x86_64.cc 30 uint32_t displacement = target_offset - patch_offset; local
31 displacement -= kPcDisplacement; // The base PC is at the end of the 4-byte patch.
34 reinterpret_cast<unaligned_int32_t*>(&(*code)[patch.LiteralOffset()])[0] = displacement;
  /art/compiler/linker/x86/
relative_patcher_x86_base.cc 43 uint32_t displacement = target_offset - patch_offset; local
44 displacement -= kPcDisplacement; // The base PC is at the end of the 4-byte patch.
47 reinterpret_cast<unaligned_int32_t*>(&(*code)[literal_offset])[0] = displacement;
  /art/compiler/linker/arm/
relative_patcher_thumb2.cc 26 // PC displacement from patch location; Thumb2 PC is always at instruction address + 4.
29 // Maximum positive and negative displacement for method call measured from the patch location.
30 // (Signed 25 bit displacement with the last bit 0 has range [-2^24, 2^24-2] measured from
47 uint32_t displacement = CalculateMethodCallDisplacement(patch_offset, target_offset & ~1u); local
48 displacement -= kPcDisplacement; // The base PC is at the end of the 4-byte patch.
49 DCHECK_EQ(displacement & 1u, 0u);
50 DCHECK((displacement >> 24) == 0u || (displacement >> 24) == 255u); // 25-bit signed.
51 uint32_t signbit = (displacement >> 31) & 0x1;
52 uint32_t i1 = (displacement >> 23) & 0x1
    [all...]
relative_patcher_arm_base.cc 273 uint32_t displacement = target_offset - patch_offset; local
277 if (displacement > max_positive_displacement && displacement < -max_negative_displacement) {
283 displacement = method_call_thunk_->GetPendingOffset() - patch_offset;
288 displacement = method_call_thunk_->LastWrittenOffset() - patch_offset;
289 DCHECK_GE(displacement, -max_negative_displacement);
292 return displacement;
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
EDOperand.cpp 147 int64_t displacement = Inst.Inst->getOperand(MCOpIndex).getImm(); local
156 result = ripVal + displacement;
165 int64_t displacement = Inst.Inst->getOperand(MCOpIndex+3).getImm(); local
197 addr += displacement;
228 int64_t displacement = Inst.Inst->getOperand(MCOpIndex).getImm();
235 result = pcVal + displacement;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mn10300/
am33-2.c 109 int displacement = current_offset - last_label_offset; local
111 + ulen (displacement, 16) + 1);
114 if (displacement > 128)
125 sprintf (current_address, "%s\\+0x%x", last_label_name, displacement);
130 of the displacement within the current insn. We do not account
131 for the case in which this displacement is zero, since it doesn't
154 int displacement = current_offset - last_label_offset; local
156 + ulen (displacement, 16) + 1);
159 if (displacement > 128)
171 sprintf (current_address, "%s\\+0x%x", last_label_name, displacement);
    [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64_test.cc 1919 ssize_t displacement = static_cast<ssize_t>(frame_size) - (spill_regs.size() * 8 + 8); local
1920 str << "subq $" << displacement << ", %rsp\\n"; local
1952 ssize_t displacement = static_cast<ssize_t>(frame_size) - spill_regs.size() * 8 - 8; local
1953 str << "addq $" << displacement << ", %rsp\\n"; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/Disassembler/
X86Disassembler.cpp 312 // 4. displacement (immediate) 0, or the displacement if there is one
319 MCOperand displacement; local
412 displacement = MCOperand::CreateImm(insn.displacement);
429 mcInst.addOperand(displacement);
X86DisassemblerDecoder.h 335 * EADisplacement - Possible displacement types for effective-address
501 /* The displacement, used for memory operands */
503 int32_t displacement; member in struct:InternalInstruction
  /frameworks/support/dynamic-animation/src/android/support/animation/
SpringForce.java 277 double displacement; local
285 displacement = coeffA * Math.pow(Math.E, mGammaMinus * deltaT)
293 displacement = (coeffA + coeffB * deltaT) * Math.pow(Math.E, -mNaturalFreq * deltaT);
301 displacement = Math.pow(Math.E, -mDampingRatio * mNaturalFreq * deltaT)
304 currentVelocity = displacement * (-mNaturalFreq) * mDampingRatio
310 mMassState.mValue = (float) (displacement + mFinalPosition);
  /toolchain/binutils/binutils-2.25/opcodes/
z8k-dis.c 46 unsigned long displacement; member in struct:__anon109056
327 instr_data->displacement = instr_data->insn_start + 4
333 /* Negative 12 bit displacement. */
334 instr_data->displacement = instr_data->insn_start + 2
337 instr_data->displacement = instr_data->insn_start + 2
427 instr_data->displacement =
432 instr_data->displacement =
456 instr_data->displacement =
568 sprintf (tmp_str, "0x%0lx", instr_data->displacement);
  /art/compiler/linker/arm64/
relative_patcher_arm64.cc 39 // Maximum positive and negative displacement for method call measured from the patch location.
40 // (Signed 28 bit displacement with the last two bits 0 has range [-2^27, 2^27-4] measured from
45 // Maximum positive and negative displacement for a conditional branch measured from the patch
46 // location. (Signed 21 bit displacement with the last two bits 0 has range [-2^20, 2^20-4]
191 uint32_t displacement = CalculateMethodCallDisplacement(patch_offset, target_offset & ~1u); local
192 DCHECK_EQ(displacement & 3u, 0u);
193 DCHECK((displacement >> 27) == 0u || (displacement >> 27) == 31u); // 28-bit signed.
194 uint32_t insn = (displacement & 0x0fffffffu) >> 2;
520 // be negative yet passed as uint32_t. Therefore we limit the displacement
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.cpp 717 // 4. displacement (immediate) 0, or the displacement if there is one
724 MCOperand displacement; local
    [all...]
X86DisassemblerDecoder.h 442 /// \brief Possible displacement types for effective-address computations.
612 // The displacement, used for memory operands
614 int32_t displacement; member in struct:llvm::X86Disassembler::InternalInstruction
  /packages/apps/Launcher3/src/com/android/launcher3/util/
LauncherEdgeEffect.java 147 * <p>Views using EdgeEffect should favor {@link #onPull(float, float)} when the displacement
167 * @param displacement The displacement from the starting side of the effect of the point
171 public void onPull(float deltaDistance, float displacement) {
173 mTargetDisplacement = displacement;
297 final float displacement = Math.max(0, Math.min(mDisplacement, 1.f)) - 0.5f; local
298 float translateX = mBounds.width() * displacement / 2;
  /art/disassembler/
disassembler_x86.cc 1480 int32_t displacement; local
    [all...]
  /device/google/contexthub/util/nanoapp_postprocess/
postprocess.c 160 uint32_t displacement; local
177 displacement = app->nanoReloc[i].ofstInRam - origin;
179 if (displacement & 3) {
183 displacement /= 4;
186 if (!displacement) {
202 if (displacement <= MAX_8_BIT_NUM) {
204 DBG("Out: Reloc8 [size 1] 0x%02" PRIX32, displacement);
205 packedNanoRelocs[packedNanoRelocSz++] = displacement;
206 } else if (displacement <= MAX_16_BIT_NUM) {
208 DBG("Out: Reloc16 [size 3] 0x%06" PRIX32, displacement);
    [all...]
postprocess_elf.c 151 uint32_t displacement; local
168 displacement = nanoRelocs[i].ofstInRam - origin;
170 if (displacement & 3) {
174 displacement /= 4;
177 if (!displacement) {
191 if (displacement <= MAX_8_BIT_NUM) {
193 fprintf(stderr, "Out: Reloc8 0x%02" PRIX32 "\n", displacement);
194 packedNanoRelocs[packedNanoRelocSz++] = displacement;
196 else if (displacement <= MAX_16_BIT_NUM) {
198 fprintf(stderr, "Out: Reloc16 0x%06" PRIX32 "\n", displacement);
    [all...]
  /external/ImageMagick/MagickCore/
shear.c 1197 displacement; local
1411 displacement; local
    [all...]
  /external/autotest/client/deps/nvmap_compactor/src/
nvmap_carveout_compactor.c 310 unsigned int displacement; local
342 displacement = (freeBefore - freeAfter) / (1024 * 1024);
344 if (displacement < phase_size) {
347 displacement, phase_size);
  /frameworks/base/core/java/android/widget/
EdgeEffect.java 175 * <p>Views using EdgeEffect should favor {@link #onPull(float, float)} when the displacement
195 * @param displacement The displacement from the starting side of the effect of the point
199 public void onPull(float deltaDistance, float displacement) {
201 mTargetDisplacement = displacement;
328 final float displacement = Math.max(0, Math.min(mDisplacement, 1.f)) - 0.5f; local
329 float translateX = mBounds.width() * displacement / 2;
  /toolchain/binutils/binutils-2.25/gas/config/
tc-epiphany.c 511 #define DISPMOD _("destination register modified by displacement-post-modified address")
642 /* The displacement used by GAS is from the end of the 2 byte insn,
810 char *displacement;
822 displacement = &opcode[1];
846 displacement = &opcode[0];
861 24 bit displacement goes to bytes 1..3 . */
879 displacement = &opcode[0];
885 displacement = &opcode[0];
914 displacement = & opcode[1];
960 md_number_to_chars (displacement, (valueT) addend, extension + 1)
803 char *displacement; local
    [all...]
  /toolchain/binutils/binutils-2.25/include/opcode/
tic30.h 106 /* Indirect Addressing with Displacement */
140 unsigned char displacement; member in struct:__anon108830
    [all...]
  /external/ImageMagick/coders/
gif.c 601 displacement,
682 displacement=1;
692 displacement=MaxHashTable-k;
695 k-=displacement;
595 displacement, local
    [all...]
  /external/v8/src/compiler/
node-matchers.h 453 Node* displacement() const { return displacement_; } function in struct:v8::internal::compiler::AddressOption::BaseWithIndexAndDisplacementMatcher
470 // displacement input):
485 Node* displacement = nullptr; local
503 displacement = right_matcher.right().node();
514 displacement = right_matcher.right().node();
521 displacement = right;
540 displacement = left_right;
546 displacement = left_right;
565 displacement = left_right;
574 displacement = right
    [all...]

Completed in 621 milliseconds

1 2