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

1 2 3 4

  /packages/apps/Contacts/src/com/android/contacts/compat/
EdgeEffectCompat.java 31 public static void onPull(EdgeEffect edgeEffect, float deltaDistance, float displacement) {
33 edgeEffect.onPull(deltaDistance, displacement);
  /frameworks/support/compat/java/android/support/v4/widget/
EdgeEffectCompat.java 46 public void onPull(EdgeEffect edgeEffect, float deltaDistance, float displacement) {
54 public void onPull(EdgeEffect edgeEffect, float deltaDistance, float displacement) {
55 edgeEffect.onPull(deltaDistance, displacement);
138 * the displacement of the pull point is known.
143 * @param displacement The displacement from the starting side of the effect of the point
151 public boolean onPull(float deltaDistance, float displacement) {
152 IMPL.onPull(mEdgeEffect, deltaDistance, displacement);
167 * @param displacement The displacement from the starting side of the effect of the poin
    [all...]
  /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;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/z8k/
jr-forw.s 2 jr t,dest ! max. displacement
  /prebuilts/tools/darwin-x86/bazel/
bazel-complete.bash 136 # Usage: _bazel__package_path <workspace> <displacement>
139 # current displacement from the workspace. All elements have a
142 local workspace=$1 displacement=$2 root
146 echo "$root/$displacement"
204 # Usage: _bazel__expand_rules_in_package <workspace> <displacement>
217 local workspace=$1 displacement=$2 current=$3 label_type=$4
231 for root in $(_bazel__package_path "$workspace" "$displacement"); do
254 # Usage: _bazel__expand_package_name <workspace> <displacement> <current-word>
263 local workspace=$1 displacement=$2 current=$3 type=${4:-} root dir index
264 for root in $(_bazel__package_path "$workspace" "$displacement"); d
    [all...]
  /prebuilts/tools/linux-x86/bazel/
bazel-complete.bash 136 # Usage: _bazel__package_path <workspace> <displacement>
139 # current displacement from the workspace. All elements have a
142 local workspace=$1 displacement=$2 root
146 echo "$root/$displacement"
204 # Usage: _bazel__expand_rules_in_package <workspace> <displacement>
217 local workspace=$1 displacement=$2 current=$3 label_type=$4
231 for root in $(_bazel__package_path "$workspace" "$displacement"); do
254 # Usage: _bazel__expand_package_name <workspace> <displacement> <current-word>
263 local workspace=$1 displacement=$2 current=$3 type=${4:-} root dir index
264 for root in $(_bazel__package_path "$workspace" "$displacement"); d
    [all...]
  /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/runtime/interpreter/mterp/x86/
zcmp.S 11 movswl 2(rPC), rINST # fetch signed displacement
  /art/runtime/interpreter/mterp/x86_64/
zcmp.S 11 movswq 2(rPC), rINSTq # fetch signed displacement
  /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);
  /external/llvm/test/MC/MachO/ARM/
thumb-bl-jbits.s 16 # has it displacement encoded correctly with respect to the J1 and J2 bits when
17 # the branch is assembled with a label not a displacement.
  /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
504 displacement = right_matcher.right().node();
516 displacement = right_matcher.right().node();
523 displacement = right;
543 displacement = left_right;
549 displacement = left_right;
569 displacement = left_right;
579 displacement = right
    [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/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/opcodes/
z8k-dis.c 46 unsigned long displacement; member in struct:__anon116530
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/skia/include/effects/
SkDisplacementMapEffect.h 28 sk_sp<SkImageFilter> displacement,
  /frameworks/base/core/java/android/widget/
EdgeEffect.java 177 * <p>Views using EdgeEffect should favor {@link #onPull(float, float)} when the displacement
197 * @param displacement The displacement from the starting side of the effect of the point
201 public void onPull(float deltaDistance, float displacement) {
203 mTargetDisplacement = displacement;
330 final float displacement = Math.max(0, Math.min(mDisplacement, 1.f)) - 0.5f; local
331 float translateX = mBounds.width() * displacement / 2;
  /art/compiler/linker/arm/
relative_patcher_arm_base.cc 274 uint32_t displacement = target_offset - patch_offset; local
278 if (displacement > max_positive_displacement && displacement < -max_negative_displacement) {
284 displacement = method_call_thunk_->GetPendingOffset() - patch_offset;
289 displacement = method_call_thunk_->LastWrittenOffset() - patch_offset;
290 DCHECK_GE(displacement, -max_negative_displacement);
293 return displacement;
relative_patcher_thumb2.cc 33 // PC displacement from patch location; Thumb2 PC is always at instruction address + 4.
36 // Maximum positive and negative displacement for method call measured from the patch location.
37 // (Signed 25 bit displacement with the last bit 0 has range [-2^24, 2^24-2] measured from
42 // Maximum positive and negative displacement for a conditional branch measured from the patch
43 // location. (Signed 21 bit displacement with the last bit 0 has range [-2^20, 2^20-2] measured
60 uint32_t displacement = CalculateMethodCallDisplacement(patch_offset, target_offset & ~1u); local
61 displacement -= kPcDisplacement; // The base PC is at the end of the 4-byte patch.
62 DCHECK_EQ(displacement & 1u, 0u);
63 DCHECK((displacement >> 24) == 0u || (displacement >> 24) == 255u); // 25-bit signed
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68k/
operands.s 23 | Address register indirect with displacement
28 | Address register indirect with index (8-bit displacement)
65 | Address register indirect with index (base displacement)
153 | Program counter indirect with displacement
159 | Program counter indirect with index (8-bit displacement)
172 | Program counter indirect with index (base displacement)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
disp32.d 3 #name: i386 32bit displacement
x86-64-disp32.d 3 #name: x86-64 32bit displacement
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d10v/
address-001.s 68 ;; Indirect with displacement
  /packages/apps/Launcher3/src/com/android/launcher3/notification/
NotificationMainView.java 144 public boolean onDrag(float displacement, float velocity) {
146 ? displacement : OverScroll.dampedScroll(displacement, getWidth()));

Completed in 976 milliseconds

1 2 3 4