HomeSort by relevance Sort by last modified time
    Searched full:move (Results 601 - 625 of 10530) sorted by null

<<21222324252627282930>>

  /external/compiler-rt/lib/arm/
unordsf2vfp.S 22 vmov s14, r0 // move from GPR 0 to float register
23 vmov s15, r1 // move from GPR 1 to float register
  /external/javassist/src/main/javassist/convert/
TransformAfter.java 31 iterator.move(pos);
43 iterator.move(p);
  /external/llvm/test/CodeGen/Mips/
seteqz.ll 15 ; 16: move ${{[0-9]+}}, $24
22 ; 16: move ${{[0-9]+}}, $24
  /external/llvm/utils/unittest/googletest/
README.LLVM 14 # Move all the source files to the current directory
18 # Move extra headers into the already-existing internal headers dir
  /external/smali/smali-integration-tests/src/test/smali/jumbo-field-tests/
Assert.smali 33 move-wide v0, p0
34 move-wide v2, p2
Format41c.smali 46 move/16 v256, v0
63 move-object/16 v256, v0
79 move-wide/16 v256, v0
95 move/16 v256, v0
111 move/16 v256, v0
127 move/16 v256, v0
143 move/16 v256, v0
159 move/16 v256, v0
  /external/smali/smali-integration-tests/src/test/smali/jumbo-method-tests/
Assert.smali 33 move-wide v0, p0
34 move-wide v2, p2
Format5rc_autofix.smali 85 move-result v0
97 move-object v0, p0
106 move-result v0
118 move-object v0, p0
127 move-result v0
147 move-result v0
159 move-object v0, p0
171 move-result v0
  /external/smali/smali-integration-tests/src/test/smali/jumbo-type-tests/
Assert.smali 33 move-wide v0, p0
34 move-wide v2, p2
  /external/smali/smali-integration-tests/src/test/smali/junit-tests/InstructionTests/Format31i/
Format31i.smali 19 move-result-object v1
35 move-result-object v1
  /external/smali/smali-integration-tests/src/test/smali/junit-tests/Util/
Assert.smali 33 move-wide v0, p0
34 move-wide v2, p2
  /external/valgrind/main/memcheck/tests/
origin3-no.stderr.exp 3 Conditional jump or move depends on uninitialised value(s)
13 Conditional jump or move depends on uninitialised value(s)
21 Conditional jump or move depends on uninitialised value(s)
31 Conditional jump or move depends on uninitialised value(s)
41 Conditional jump or move depends on uninitialised value(s)
51 Conditional jump or move depends on uninitialised value(s)
60 Conditional jump or move depends on uninitialised value(s)
69 Conditional jump or move depends on uninitialised value(s)
origin4-many.stderr.exp 1 Conditional jump or move depends on uninitialised value(s)
7 Conditional jump or move depends on uninitialised value(s)
13 Conditional jump or move depends on uninitialised value(s)
19 Conditional jump or move depends on uninitialised value(s)
25 Conditional jump or move depends on uninitialised value(s)
31 Conditional jump or move depends on uninitialised value(s)
37 Conditional jump or move depends on uninitialised value(s)
43 Conditional jump or move depends on uninitialised value(s)
partiallydefinedeq.stderr.exp 2 Conditional jump or move depends on uninitialised value(s)
6 Conditional jump or move depends on uninitialised value(s)
partiallydefinedeq.stderr.exp3 3 Conditional jump or move depends on uninitialised value(s)
7 Conditional jump or move depends on uninitialised value(s)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
move_convert13.fail.cpp 14 // Test unique_ptr converting move assignment
34 s2 = std::move(s);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
move_convert13.fail.cpp 14 // Test unique_ptr converting move ctor
33 std::unique_ptr<A, Deleter> s2(std::move(s));
  /art/runtime/arch/mips/
jni_entrypoints_mips.S 41 move $a0, $s1 # pass Thread::Current()
50 move $t9, $v0 # put method code result in $t9
77 move $a0, rSELF # pass Thread::Current
79 move $a1, $sp # pass $sp
80 move $t9, $v0 # save target address
  /dalvik/dx/src/com/android/dx/ssa/
MoveParamCombiner.java 28 * Combine identical move-param insns, which may result from Ropper's
93 * Oddly, these two identical move-params have distinct
141 * Returns the parameter index associated with a move-param insn. Does
142 * not verify that the insn is a move-param insn.
144 * @param insn {@code non-null;} a move-param insn
  /dalvik/dx/tests/088-ssa-combine-blocks/
expected.txt 10 Blort.java:17@0000: move-param-object(0) v0:NffffLBlort; <- .
25 Blort.java:23@0000: move-param-object(0) v0:LBlort; <- .
50 Blort.java:31@0000: move-param-object(0) v1:LBlort; <- .
64 Blort.java:33@000d: Rop{move-exception Ljava/lang/Throwable; <- . flows} v0:Ljava/lang/Throwable; <- .
77 Blort.java:41@0000: move-param-object(0) v0:LBlort; <- .
  /external/chromium_org/base/win/
scoped_handle.h 14 #include "base/move.h"
48 // Move constructor for C++03 move emulation of this type.
61 // Move operator= for C++03 move emulation of this type.
  /external/chromium_org/chrome/installer/util/
copy_tree_work_item.cc 72 // In all cases that reach here, move dest to a backup path.
81 if (base::Move(dest_path_, backup)) {
109 // If this does happen sometimes, we may consider using Move instead of
117 if (!base::Move(backup, dest_path_)) {
118 LOG(ERROR) << "failed move " << backup.value()
  /external/clang/test/SemaCXX/
rval-references-examples.cpp 43 template <class T> typename remove_reference<T>::type&& move(T&& t) { function
67 // Move construction
75 // Move assignment
76 p2 = move(p);
84 accept_unique_ptr(move(p2));
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
MoveParamCombiner.java 30 * Combine identical move-param insns, which may result from Ropper's
95 * Oddly, these two identical move-params have distinct
143 * Returns the parameter index associated with a move-param insn. Does
144 * not verify that the insn is a move-param insn.
146 * @param insn {@code non-null;} a move-param insn
  /external/smali/smali-integration-tests/src/test/smali/junit-tests/InstructionTests/Format11x/
Format11x.smali 39 move-result v0
52 move-result-wide v0
65 move-result-object v0
87 move-exception v0
89 move-result-object v1

Completed in 239 milliseconds

<<21222324252627282930>>