Searched defs:dest (Results 1 - 25 of 143) sorted by relevance

123456

/openjdk7/hotspot/src/cpu/zero/vm/
H A DnativeInst_zero.cpp41 // (dest) at the start of a compiled method (verified_entry) to avoid
51 address dest) {
52 assert(dest == SharedRuntime::get_handle_wrong_method_stub(), "should be");
49 patch_verified_entry(address entry, address verified_entry, address dest) argument
/openjdk7/hotspot/src/share/vm/runtime/
H A DbasicLock.cpp33 void BasicLock::move_to(oop obj, BasicLock* dest) { argument
46 // basiclock in the interpreter frame. "dest" refers to the destination
76 dest->set_displaced_header(displaced_header());
H A Datomic.cpp70 jbyte Atomic::cmpxchg(jbyte exchange_value, volatile jbyte* dest, jbyte compare_value) { argument
72 uintptr_t dest_addr = (uintptr_t)dest;
90 unsigned Atomic::xchg(unsigned int exchange_value, volatile unsigned int* dest) { argument
92 return (unsigned int)Atomic::xchg((jint)exchange_value, (volatile jint*)dest);
96 volatile unsigned int* dest, unsigned int compare_value) {
98 return (unsigned int)Atomic::cmpxchg((jint)exchange_value, (volatile jint*)dest,
102 jlong Atomic::add(jlong add_value, volatile jlong* dest) { argument
103 jlong old = load(dest);
105 while (old != cmpxchg(new_value, dest, old)) {
106 old = load(dest);
95 cmpxchg(unsigned int exchange_value, volatile unsigned int* dest, unsigned int compare_value) argument
[all...]
/openjdk7/langtools/test/tools/javac/capture/
H A DCapture1.java38 public static <T> void copy1(List<? super T> dest, List<? extends T> src) { argument
39 copy1(dest, src);
40 copy2(dest, src); // oops
41 copy3(dest, src); // oops
43 public static <T> void copy2(List<T> dest, List<? extends T> src) { argument
44 copy1(dest, src);
45 copy2(dest, src);
46 copy3(dest, src); // oops
48 public static <T> void copy3(List<? super T> dest, List<T> src) { argument
49 copy1(dest, sr
[all...]
/openjdk7/hotspot/test/compiler/6661247/
H A DTest.java40 public static void test(boolean[] src, int srcPos, LongBuffer dest, long destPos, int count) { argument
46 dest.put((int)(destPos >>> 6), dest.get((int)(destPos >>> 6)) | 1L << (destPos & 63));
48 dest.put((int)(destPos >>> 6), dest.get((int)(destPos >>> 6)) & ~(1L << (destPos & 63)));
121 dest.put(k, ((long)low & 0xFFFFFFFFL) | (((long)high) << 32));
127 dest.put((int)(destPos >>> 6), dest.get((int)(destPos >>> 6)) | 1L << (destPos & 63));
129 dest.put((int)(destPos >>> 6), dest
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86FPStoreInstruction.java31 final private Operand dest; field in class:X86FPStoreInstruction
35 this.dest = op;
43 buf.append(dest.toString());
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBufferedImageOp.java76 * @param dest The <CODE>BufferedImage</CODE> in which to store the results$
84 public BufferedImage filter(BufferedImage src, BufferedImage dest); argument
H A DLookupTable.java97 * one pixel. The <code>dest</code> array contains the
98 * result of the lookup and is returned. If dest is
102 * @param dest the destination array of components for one pixel,
107 public abstract int[] lookupPixel(int[] src, int[] dest); argument
H A DRasterOp.java60 * @param dest the destination <code>WritableRaster</code>
64 public WritableRaster filter(Raster src, WritableRaster dest); argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DJDMAclBlock.java54 public void buildTrapEntries(Hashtable dest) {} argument
60 public void buildInformEntries(Hashtable dest) {} argument
H A DJDMInformBlock.java59 public void buildTrapEntries(Hashtable dest) {} argument
H A DJDMTrapBlock.java60 public void buildInformEntries(Hashtable dest) {} argument
H A DHost.java113 public void buildTrapEntries(Hashtable<InetAddress, Vector<String>> dest) { argument
134 if (dest.containsKey(add)){
135 list = dest.get(add);
142 dest.put(add,list);
146 public void buildInformEntries(Hashtable<InetAddress, Vector<String>> dest) { argument
167 if (dest.containsKey(add)){
168 list = dest.get(add);
175 dest.put(add,list);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpStringFixed.java188 * @param dest Where source should be appended.
190 public static void appendToOid(int l, SnmpOid source, SnmpOid dest) { argument
191 dest.append(source) ;
H A DSnmpCounter64.java161 * @param dest Where source should be appended.
163 public static void appendToOid(SnmpOid source, SnmpOid dest) { argument
167 dest.append(source) ;
H A DSnmpInt.java207 * @param dest Where source should be appended.
209 public static void appendToOid(SnmpOid source, SnmpOid dest) { argument
213 dest.append(source) ;
H A DSnmpIpAddress.java177 * @param dest Where source should be appended.
179 public static void appendToOid(SnmpOid source, SnmpOid dest) { argument
183 dest.append(source) ;
H A DSnmpString.java225 * @param dest Where source should be appended.
227 public static void appendToOid(SnmpOid source, SnmpOid dest) { argument
228 dest.append(source.getLength()) ;
229 dest.append(source) ;
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DSecurityCtx.java47 byte[] wrap(byte[] dest, int start, int len) argument
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DEdge.java34 private Node<N, E> dest; field in class:Edge
36 protected Edge(Graph<N, E> graph, Node<N, E> source, Node<N, E> dest, E data) { argument
39 this.dest = dest;
41 assert dest != null;
42 assert source.getGraph() == dest.getGraph();
44 assert dest.getGraph() != null;
52 return dest;
68 return source == dest;
73 // Remove from current source / dest
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/cmm/
H A DColorTransform.java51 public short[] colorConvert(short[] src, short[] dest); argument
52 public byte[] colorConvert (byte[] src, byte[] dest); argument
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DDrawGlyphListLCD.java72 public native void DrawGlyphListLCD(SunGraphics2D sg2d, SurfaceData dest, argument
110 public void DrawGlyphListLCD(SunGraphics2D sg2d, SurfaceData dest, argument
114 target.DrawGlyphListLCD(sg2d, dest, glyphs);
H A DFillSpans.java76 private native void FillSpans(SunGraphics2D sg2d, SurfaceData dest, argument
82 public void FillSpans(SunGraphics2D sg2d, SurfaceData dest, argument
85 FillSpans(sg2d, dest, sg2d.pixel, si.getNativeIterator(), si);
115 public void FillSpans(SunGraphics2D sg2d, SurfaceData dest, argument
119 target.FillSpans(sg2d, dest, si);
/openjdk7/langtools/test/tools/javac/nio/compileTest/
H A DCompileTest.java148 void copy(InputStream in, File dest) throws IOException { argument
149 dest.getParentFile().mkdirs();
150 OutputStream out = new BufferedOutputStream(new FileOutputStream(dest));
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.inline.hpp37 inline void inc_stat_counter(volatile julong* dest, julong add_value) { argument
40 julong value = Atomic::load((volatile jlong*)dest);
42 Atomic::store((jlong)value, (volatile jlong*)dest);
45 *dest += add_value;

Completed in 3133 milliseconds

123456