HomeSort by relevance Sort by last modified time
    Searched defs:displacement (Results 1 - 25 of 39) 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_arm_base.cc 126 uint32_t displacement = target_offset - patch_offset; local
128 if (displacement > max_positive_displacement_ && displacement < -max_negative_displacement_) {
134 displacement = thunk_locations_[current_thunk_to_write_] - patch_offset;
139 displacement = thunk_locations_[current_thunk_to_write_ - 1] - patch_offset;
140 DCHECK(displacement >= -max_negative_displacement_);
143 return displacement;
relative_patcher_thumb2.cc 39 uint32_t displacement = CalculateDisplacement(patch_offset, target_offset & ~1u); local
40 displacement -= kPcDisplacement; // The base PC is at the end of the 4-byte patch.
41 DCHECK_EQ(displacement & 1u, 0u);
42 DCHECK((displacement >> 24) == 0u || (displacement >> 24) == 255u); // 25-bit signed.
43 uint32_t signbit = (displacement >> 31) & 0x1;
44 uint32_t i1 = (displacement >> 23) & 0x1;
45 uint32_t i2 = (displacement >> 22) & 0x1;
46 uint32_t imm10 = (displacement >> 12) & 0x03ff;
47 uint32_t imm11 = (displacement >> 1) & 0x07ff
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
b2Fixture.cpp 170 b2Vec2 displacement = transform2.p - transform1.p; local
172 broadPhase->MoveProxy(proxy->proxyId, proxy->aabb, 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/linker/arm64/
relative_patcher_arm64.cc 151 uint32_t displacement = CalculateDisplacement(patch_offset, target_offset & ~1u); local
152 DCHECK_EQ(displacement & 3u, 0u);
153 DCHECK((displacement >> 27) == 0u || (displacement >> 27) == 31u); // 28-bit signed.
154 uint32_t insn = (displacement & 0x0fffffffu) >> 2;
272 // be negative yet passed as uint32_t. Therefore we limit the displacement
274 // the highest bit of the displacement. This is encoded in bit 23.
312 // LDR <Xt>, <label> is aligned iff the pc + displacement is a multiple of 8.
  /art/compiler/utils/x86_64/
assembler_x86_64_test.cc 1525 ssize_t displacement = static_cast<ssize_t>(frame_size) - (spill_regs.size() * 8 + 8); local
1526 str << "subq $" << displacement << ", %rsp\\n"; local
1556 ssize_t displacement = static_cast<ssize_t>(frame_size) - spill_regs.size() * 8 - 8; local
1557 str << "addq $" << displacement << ", %rsp\\n"; local
    [all...]
  /art/runtime/interpreter/
interpreter_goto_table_impl.cc 2589 int32_t displacement = static_cast<int32_t>(found_dex_pc) - static_cast<int32_t>(dex_pc); local
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
z8k-dis.c 46 unsigned long displacement; member in struct:__anon75986
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);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
Fixture.java 408 private final Vec2 displacement = new Vec2(); field in class:Fixture
440 displacement.x = transform2.p.x - transform1.p.x;
441 displacement.y = transform2.p.y - transform1.p.y;
443 broadPhase.moveProxy(proxy.proxyId, proxy.aabb, displacement);
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.cpp 644 // 4. displacement (immediate) 0, or the displacement if there is one
651 MCOperand displacement; local
    [all...]
X86DisassemblerDecoder.h 435 /// \brief Possible displacement types for effective-address computations.
605 // The displacement, used for memory operands
607 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 1365 int32_t displacement; local
    [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);
  /external/skia/src/effects/
SkDisplacementMapEffect.cpp 81 // Truncate the displacement values
171 SkImageFilter* displacement,
179 SkImageFilter* inputs[2] = { displacement, color };
300 str->appendf("displacement: (");
338 GrTexture* displacement, const SkMatrix& offsetMatrix, GrTexture* color,
340 return new GrDisplacementMapEffect(xChannelSelector, yChannelSelector, scale, displacement,
371 GrTexture* displacement, const SkMatrix& offsetMatrix,
419 GrTexture* displacement = displacementBM.getTexture(); local
438 SkMatrix offsetMatrix = GrCoordTransform::MakeDivByTextureWHMatrix(displacement);
446 displacement,
    [all...]
  /external/v8/src/compiler/
node-matchers.h 408 Node* displacement() const { return displacement_; } function in struct:v8::internal::compiler::BaseWithIndexAndDisplacementMatcher
423 // displacement input):
438 Node* displacement = nullptr; local
454 displacement = right_matcher.right().node();
461 displacement = right;
478 displacement = left_right;
487 displacement = right;
497 displacement = left_right;
503 displacement = right;
514 displacement = right
    [all...]
  /frameworks/base/core/java/android/widget/
EdgeEffect.java 176 * <p>Views using EdgeEffect should favor {@link #onPull(float, float)} when the displacement
196 * @param displacement The displacement from the starting side of the effect of the point
200 public void onPull(float deltaDistance, float displacement) {
202 mTargetDisplacement = displacement;
329 final float displacement = Math.max(0, Math.min(mDisplacement, 1.f)) - 0.5f; local
330 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:__anon75760
    [all...]
  /device/google/contexthub/util/nanoapp_postprocess/
postprocess.c 150 uint32_t displacement; local
167 displacement = nanoRelocs[i].ofstInRam - origin;
169 if (displacement & 3) {
173 displacement /= 4;
176 if (!displacement) {
190 if (displacement <= MAX_8_BIT_NUM) {
192 fprintf(stderr, "Out: Reloc8 0x%02" PRIX32 "\n", displacement);
193 packedNanoRelocs[packedNanoRelocSz++] = displacement;
195 else if (displacement <= MAX_16_BIT_NUM) {
197 fprintf(stderr, "Out: Reloc16 0x%06" PRIX32 "\n", displacement);
    [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/ia32/
instruction-selector-ia32.cc 88 int32_t displacement = (displacement_node == nullptr) local
93 displacement += OpParameter<int32_t>(base);
102 if (displacement != 0) {
103 inputs[(*input_count)++] = TempImmediate(displacement);
113 if (displacement == 0) {
116 inputs[(*input_count)++] = TempImmediate(displacement);
124 if (displacement != 0) {
125 inputs[(*input_count)++] = TempImmediate(displacement);
135 inputs[(*input_count)++] = TempImmediate(displacement);
147 if ((m.displacement() == nullptr || CanBeImmediate(m.displacement())))
    [all...]

Completed in 887 milliseconds

1 2