Searched refs:res (Results 201 - 225 of 785) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DMethodDecl.java61 final Collection<String> res = new ArrayList<String>();
65 res.add("type");
68 res.add("executable");
71 res.add("method");
75 res.add("anno type element");
78 return res;
H A DPackageDecl.java72 final Collection<String> res = new ArrayList<String>();
76 res.add("type");
79 res.add("package");
82 return res;
/openjdk7/jdk/test/sun/java2d/DirectX/AcceleratedScaleTest/
H A DAcceleratedScaleTest.java53 int res;
55 res = VolatileImage.IMAGE_INCOMPATIBLE;
57 res = destVI.validate(gc);
59 if (res == VolatileImage.IMAGE_INCOMPATIBLE) {
63 res = VolatileImage.IMAGE_RESTORED;
65 if (res == VolatileImage.IMAGE_RESTORED) {
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_BC_S16.c111 res = vis_fpackfix_pair(d1, d1)
186 res = vis_fpackfix_pair(d0, d1)
205 mlib_d64 res; local
235 vis_st_u16(res, dstPixelPtr++);
259 *(mlib_d64*)dstPixelPtr = res;
268 *(mlib_d64*)dstPixelPtr = res;
271 *(mlib_d64*)dstPixelPtr = res;
275 vis_st_u16(res, dstPixelPtr++);
279 vis_st_u16(res, dstPixelPtr++);
287 vis_st_u16(res, dstPixelPt
514 mlib_d64 res, res1; local
1322 mlib_d64 res; local
[all...]
H A Dmlib_v_ImageAffine_BC_U16.c107 res = vis_fxor(vis_fpackfix_pair(d1, d1), mask8000)
178 res = vis_fxor(vis_fpackfix_pair(d0, d1), mask8000)
197 mlib_d64 res; local
228 vis_st_u16(res, dstPixelPtr++);
252 *(mlib_d64*)dstPixelPtr = res;
261 *(mlib_d64*)dstPixelPtr = res;
264 *(mlib_d64*)dstPixelPtr = res;
268 vis_st_u16(res, dstPixelPtr++);
272 vis_st_u16(res, dstPixelPtr++);
280 vis_st_u16(res, dstPixelPt
499 mlib_d64 res, res1; local
1309 mlib_d64 res; local
[all...]
H A Dmlib_v_ImageAffineIndex_BC.c69 mlib_d64 res, *xPtr
87 mlib_d64 res; \
112 res = vis_fpack16_pair(d0, d2)
387 res = vis_fpackfix_pair(d2, d3)
509 res = vis_fpackfix_pair(d2, d3)
573 *dstPixelPtr++ = res;
580 *dstPixelPtr++ = res;
583 *dstPixelPtr++ = res;
590 *dstPixelPtr++ = res;
603 *dstPixelPtr++ = res;
[all...]
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DCubicCurve2D.java1074 * array and place the non-complex roots into the <code>res</code>
1084 * @param res the array that contains the non-complex roots
1089 public static int solveCubic(double eqn[], double res[]) { argument
1094 return QuadCurve2D.solveQuadratic(eqn, res);
1128 if (res == eqn) {
1132 res[ 0 ] = ( t * Math.cos(phi));
1133 res[ 1 ] = (-t * Math.cos(phi + Math.PI / 3));
1134 res[ 2 ] = (-t * Math.cos(phi - Math.PI / 3));
1138 res[ i ] -= sub;
1153 if (res
1182 fixRoots(double[] eqn, double[] res, int num) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1HotCardCache.cpp72 jbyte* res = NULL; local
75 res = _hot_cache[_hot_cache_idx];
89 return res;
H A DcollectionSetChooser.hpp75 HeapRegion* res = NULL; local
77 res = regions_at(_curr_index);
78 assert(res != NULL,
82 return res;
/openjdk7/hotspot/src/share/vm/runtime/
H A Datomic.cpp81 jint res = cmpxchg(new_val, dest_int, cur); local
82 if (res == cur) break;
83 cur = res;
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DPendingIoCache.java91 PendingFuture<V,A> res = pendingIoMap.remove(overlapped);
92 if (res != null) {
104 return res;
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DClassDeclarationImpl.java89 ArrayList<ConstructorDeclaration> res =
94 res.add((ConstructorDeclaration)
98 return res;
H A DMemberDeclarationImpl.java67 ArrayList<TypeParameterDeclaration> res =
70 res.add(env.declMaker.getTypeParameterDeclaration(t.tsym));
72 return res;
/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/
H A Dlauncher.c49 jint res; local
79 res = (*create_vm)(&jvm, (void**)&env, &vm_args);
80 if (res < 0) {
/openjdk7/jdk/test/sun/net/InetAddress/nameservice/simple/
H A DSimpleNameService.java85 InetAddress[] res = new InetAddress[1];
86 res[0] = InetAddress.getByAddress(host, addr);
87 return res;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXNETProtocol.java147 boolean res = doStateProtocol() && (e.get_atom() == XA_NET_WM_STATE.getAtom()) ;
149 if (res) {
154 return res;
288 boolean res = active() && checkProtocol(XA_NET_SUPPORTED, XA_NET_WM_STATE);
289 stateLog.finer("doStateProtocol() returns " + res);
290 return res;
294 boolean res = active() && checkProtocol(XA_NET_SUPPORTED, XA_NET_WM_STATE_ABOVE);
295 return res;
299 boolean res = active() && checkProtocol(XA_NET_SUPPORTED, XA_NET_WM_STATE_MODAL);
300 return res;
[all...]
/openjdk7/jdk/make/sun/cmm/kcms/
H A DMakefile90 clean:: res.clean
92 res.clean:
94 $(RM) $(OBJDIR)/cmm.res
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/res/
H A DXResourceBundle.java23 package com.sun.org.apache.xml.internal.utils.res;
43 "com.sun.org.apache.xalan.internal.res.XSLTErrorResources", XSLT_RESOURCE =
44 "com.sun.org.apache.xml.internal.utils.res.XResourceBundle", LANG_BUNDLE_NAME =
45 "com.sun.org.apache.xml.internal.utils.res.XResources", MULT_ORDER =
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DSymbolTable.java117 byte[] res = new byte[buf.length - 2];
119 System.arraycopy(buf, 2, res, 0, res.length);
120 return res;
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DReachableObjects.java137 String[] res = new String[len];
138 System.arraycopy(keys, 0, res, 0, len);
139 ArraySorter.sortArrayOfStrings(res);
140 return res;
/openjdk7/jdk/test/java/awt/image/ConvolveOp/
H A DOpCompatibleImageTest.java72 BufferedImage res = null;
76 res = op.filter(src, null);
81 if (res == null ||
83 (res.getType() != src.getType())))
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DBuildStep.java83 * @param res result, where result is one of POSSIBLE, BACK,
86 public BuildStep(Vertex vtx, int res) { argument
92 result = res;
188 * @param res result code
191 public String resultToString(int res) { argument
193 switch (res) {
/openjdk7/jdk/test/sun/nio/cs/
H A DReadZero.java51 int res = isr.read(new char[1], 0, 1);
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DconcurrentGCThread.cpp198 SurrogateLockerThread* res; local
201 res = new SurrogateLockerThread();
207 if (res == NULL || res->osthread() == NULL) {
211 java_lang_Thread::set_thread(thread_oop(), res); local
215 res->set_threadObj(thread_oop());
216 Threads::add(res);
217 Thread::start(res);
220 return res;
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.inline.hpp178 size_t res; local
179 RESTARTABLE( (size_t) ::read(fd, buf, (size_t) nBytes), res);
180 return res;
184 size_t res; local
185 RESTARTABLE((size_t) ::write(fd, buf, (size_t) nBytes), res);
186 return res;
226 int res = ::poll(&pfd, 1, timeout); local
228 if (res == OS_ERR && errno == EINTR) {
241 return res;

Completed in 83 milliseconds

1234567891011>>