Searched refs:move (Results 1 - 25 of 56) sorted by relevance

123

/openjdk7/hotspot/src/cpu/x86/vm/
H A DicBuffer_x86.cpp62 NativeMovConstReg* move = nativeMovConstReg_at(code_begin); // creation also verifies the object local
63 NativeJump* jump = nativeJump_at(move->next_instruction_address());
70 NativeMovConstReg* move = nativeMovConstReg_at(code_begin); local
72 NativeJump* jump = nativeJump_at(move->next_instruction_address());
73 return (oop)move->data();
H A DinterpreterRT_x86_32.cpp43 move(offset(), jni_offset() + 1);
47 move(offset(), jni_offset() + 1);
51 move(offset(), jni_offset() + 2);
52 move(offset() + 1, jni_offset() + 1);
59 void InterpreterRuntime::SignatureHandlerGenerator::move(int from_offset, int to_offset) { function in class:InterpreterRuntime::SignatureHandlerGenerator
H A DinterpreterRT_x86.hpp44 void move(int from_offset, int to_offset);
H A Dc1_LIRGenerator_x86.cpp56 __ move(res, reg);
118 // there is no immediate move of word values in asembler_i486.?pp
211 __ move(LIR_OprFact::intptrConst(counter), pointer);
239 __ move(left, tmp);
244 __ move(left, tmp);
332 __ move(value.result(), array_addr, null_check_info);
336 __ move(value.result(), array_addr, null_check_info);
425 // frem and drem destroy also right operand, so move it to a new register
449 __ move(right.result(), fpu1); // order of left and right operand is important!
450 __ move(lef
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DicBuffer_sparc.cpp70 NativeMovConstReg* move = nativeMovConstReg_at(code_begin); // creation also verifies the object local
71 NativeJump* jump = nativeJump_at(move->next_instruction_address());
77 NativeMovConstReg* move = nativeMovConstReg_at(code_begin); // creation also verifies the object local
78 NativeJump* jump = nativeJump_at(move->next_instruction_address());
79 return (oop)move->data();
H A Dc1_LIRGenerator_sparc.cpp169 __ move(LIR_OprFact::intptrConst(disp), tmp);
178 __ move(LIR_OprFact::intptrConst(disp), index);
211 __ move(LIR_OprFact::intptrConst(array_offset), base_opr);
253 __ move(r, tmp);
261 __ move(LIR_OprFact::intptrConst(counter), pointer);
268 __ move(addr, temp);
270 __ move(temp, addr);
316 __ move(item, new LIR_Address(sp_opr, in_bytes(offset_from_sp), t));
394 __ move(value.result(), array_addr, null_check_info);
681 // generate conditional move o
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DPoint.java45 * @see #move(int, int)
56 * @see #move(int, int)
146 * Its behavior is identical with <code>move(int,&nbsp;int)</code>.
151 * @see java.awt.Point#move(int, int)
155 move(x, y);
183 public void move(int x, int y) { method in class:Point
194 * @param dx the distance to move this point
196 * @param dy the distance to move this point
H A DScrollPane.java64 * setScrollPosition() method and the scrollpane will move and clip
739 c.move(c.getLocation().x, -(value));
742 c.move(-(value), c.getLocation().y);
838 c.move(c.getLocation().x, -(value));
841 c.move(-(value), c.getLocation().y);
/openjdk7/jdk/test/java/nio/file/DirectoryStream/
H A DSecureDS.java64 // Exercise each of SecureDirectoryStream's method (except move)
83 // open directory and then move it so that it is no longer accessible
87 move(dir1, dir2);
175 // Exercise SecureDirectoryStream's move method
198 // Test: move dir1/myfile -> dir2/newfile
199 stream1.move(fileEntry, stream2, target);
204 // Test: move dir1/mydir -> dir2/newfile
205 stream1.move(dirEntry, stream2, target);
210 // Test: move dir1/mylink -> dir2/newfile
212 stream1.move(linkEntr
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DSecureDirectoryStream.java209 * <p> This method works in a similar manner to {@link Files#move move}
223 * the name of the file to move
244 void move(T srcpath, SecureDirectoryStream<T> targetdir, T targetpath) method in interface:SecureDirectoryStream
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DDomAnnotationParserFactory.java95 Node move = prev.getFirstChild();
96 e.insertBefore(e.getOwnerDocument().adoptNode(move), anchor );
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp93 __ move(src, dest);
113 // Call graph: move(NULL, c) -> move(c, b) -> move(b, a)
114 // Generates moves in this order: move b to a and move c to b
116 // Call graph: move(NULL, a) -> move(a, b) -> move(b, a)
117 // Generates moves in this order: move
118 void PhiResolver::move(ResolveNode* src, ResolveNode* dest) { function in class:PhiResolver
191 void PhiResolver::move(LIR_Opr src, LIR_Opr dest) { function in class:PhiResolver
[all...]
H A Dc1_LinearScan.cpp321 // ********** spill move optimization
364 // at the definition of the interval -> move write to memory out of loop
444 // remove move from register to stack if the stack slot is guaranteed to be correct.
447 assert(op->as_Op1() != NULL, "move must be LIR_Op1");
454 // move target is a stack slot that is always correct, so eliminate instruction
455 TRACE_LINEAR_SCAN(4, tty->print_cr("eliminating move from interval %d to %d", op1->in_opr()->vreg_number(), op1->result_opr()->vreg_number()));
460 // insert move from register to stack just after the beginning of the interval
476 insertion_buffer.move(j, from_opr, to_opr);
477 TRACE_LINEAR_SCAN(4, tty->print_cr("inserting move after definition of interval %d to stack slot %d at op_id %d", interval->reg_num(), interval->canonical_spill_slot() - LinearScan::nof_regs, op_id));
994 // TODO: move thi
1036 LIR_Op1* move = (LIR_Op1*)op; local
1072 LIR_Op1* move = (LIR_Op1*)op; local
1175 LIR_Op1* move = (LIR_Op1*)op; local
1211 LIR_Op1* move = (LIR_Op1*)op; local
1232 LIR_Op1* move = (LIR_Op1*)op; local
2382 LIR_Op1* move = (LIR_Op1*)op; local
2991 LIR_Op1* move = (LIR_Op1*)op; local
3283 LIR_Op1* move = (LIR_Op1*)op; local
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCCursorManager.java121 dragPos.move(x, y);
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletProps.java68 move(200, 150);
210 move(fRect.x + ((fRect.width - dDim.width) / 2),
/openjdk7/jdk/test/java/nio/file/Files/
H A DCopyAndMove.java26 * @summary Unit test for java.nio.file.Files copy and move methods
144 // move source to target with verification
181 // move file
182 Path result = move(source, target, options);
191 throw new RuntimeException("Failed to verify move of regular file");
197 throw new RuntimeException("Failed to verify move of symbolic link");
231 * Tests all possible ways to invoke move
243 * Test: move regular file, target does not exist
251 * Test: move regular file, target exists
272 * Test: move regula
[all...]
H A DCheckPermissions.java394 // -- move --
398 move(file, target2);
404 move(target2, file);
478 // move
481 sds.move(file.getFileName(), sds, entry);
484 sds.move(entry, sds, file.getFileName()); // restore file
/openjdk7/jdk/test/java/nio/file/spi/
H A DTestProvider.java125 public void move(Path source, Path target, CopyOption... options) method in class:TestProvider
/openjdk7/jdk/src/share/demo/nio/zipfs/
H A DDemo.java69 // move an external src file into zipfile
73 // move a zipfile entry src out to dst
92 // move entry path/dir from zfsrc to zfdst
172 Files.move(src, dst);
177 Files.move(src, dst);
182 Files.move(src, dst);
485 // use TreeWalk to move
504 Files.move(file, dst);
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystemProvider.java233 public void move(Path src, Path target, CopyOption... options) method in class:ZipFileSystemProvider
236 toZipPath(src).move(toZipPath(target), options);
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbsd_x86_32.s130 jz 4f # no dwords to move
168 jz 4f # no dwords to move
320 jz 4f # no dwords to move
351 jz 4f # no dwords to move
395 jz 4f # no dwords to move
426 jz 4f # no dwords to move
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dlinux_x86_32.s109 jz 4f # no dwords to move
147 jz 4f # no dwords to move
299 jz 4f # no dwords to move
330 jz 4f # no dwords to move
374 jz 4f # no dwords to move
405 jz 4f # no dwords to move
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dsolaris_x86_32.s141 jz 4f / no dwords to move
179 jz 4f / no dwords to move
329 jz 4f / no dwords to move
360 jz 4f / no dwords to move
403 jz 4f / no dwords to move
434 jz 4f / no dwords to move
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_util.c270 Boolean move = False; local
300 move = True;
305 if (!move && !resize) {
319 * Motif ignores attempts to move a toplevel window to 0,0.
333 if (move && !resize) {
336 } else if (resize && !move) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DInternalizer.java135 // then move them to their respective positions.
138 move(jaxbBindings, targetNodes);
387 private void move(Element bindings, Map<Element, List<Node>> targetNodes) { method in class:Internalizer
406 move(item, targetNodes);
434 // move this node under the target
448 * XML Schema element under which the declaration should move.
457 // to the decl node itself so that this move won't change
495 // finally move the declaration to the target node.

Completed in 1768 milliseconds

123