Searched refs:ret (Results 1 - 25 of 844) sorted by relevance

1234567891011>>

/openjdk9/langtools/test/tools/javac/
H A DJsrRet.java33 package jsr.ret;
/openjdk9/langtools/test/tools/javac/BadOptimization/
H A DSwitch1.java40 String ret;
42 ret = test(0);
43 if (ret.equals("Error"))
45 System.out.println("test(0) = " + ret);
47 ret = test(1);
48 if (ret.equals("Error"))
50 System.out.println("test(1) = " + ret);
H A DDeadCode1.java50 int ret = test();
51 if (ret == 2)
/openjdk9/jdk/src/java.desktop/unix/native/libjsound/
H A DPLATFORM_API_BsdOS_ALSA_PCM.c127 int ret; local
137 ret = snd_pcm_format_mask_malloc(&formatMask);
138 if (ret != 0) {
139 ERROR1("snd_pcm_format_mask_malloc returned error %d\n", ret);
141 ret = snd_pcm_hw_params_malloc(&hwParams);
142 if (ret != 0) {
143 ERROR1("snd_pcm_hw_params_malloc returned error %d\n", ret);
145 ret = snd_pcm_hw_params_any(handle, hwParams);
147 if (ret < 0) {
148 ERROR1("snd_pcm_hw_params_any returned error %d\n", ret);
268 int ret; local
287 int ret = 0; local
310 int ret, dir; local
387 int ret; local
424 int ret = 0; local
551 int ret; local
619 int ret; local
668 int ret; local
705 int ret, count; local
753 int ret, count; local
819 int ret; local
845 int ret; local
884 int ret; local
[all...]
H A DPLATFORM_API_LinuxOS_ALSA_PCM.c127 int ret; local
137 ret = snd_pcm_format_mask_malloc(&formatMask);
138 if (ret != 0) {
139 ERROR1("snd_pcm_format_mask_malloc returned error %d\n", ret);
141 ret = snd_pcm_hw_params_malloc(&hwParams);
142 if (ret != 0) {
143 ERROR1("snd_pcm_hw_params_malloc returned error %d\n", ret);
145 ret = snd_pcm_hw_params_any(handle, hwParams);
147 if (ret < 0) {
148 ERROR1("snd_pcm_hw_params_any returned error %d\n", ret);
268 int ret; local
287 int ret = 0; local
310 int ret, dir; local
387 int ret; local
424 int ret = 0; local
551 int ret; local
619 int ret; local
668 int ret; local
705 int ret, count; local
753 int ret, count; local
819 int ret; local
845 int ret; local
884 int ret; local
[all...]
/openjdk9/langtools/test/tools/javac/7085024/
H A DT7085024.java9 T7085024 (boolean ret) { } //internal error goes away if constructor accepts a reference type argument
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/
H A DAMD64AddressLowering.java47 AMD64AddressNode ret = new AMD64AddressNode(base, offset);
50 changed = improve(ret);
52 return base.graph().unique(ret);
55 protected boolean improve(AMD64AddressNode ret) { argument
56 ValueNode newBase = improveInput(ret, ret.getBase(), 0);
57 if (newBase != ret.getBase()) {
58 ret.setBase(newBase);
62 ValueNode newIdx = improveInput(ret, ret
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/
H A DLongToSomethingArray01.java37 byte[] ret = new byte[8];
39 ret[i] = (byte) (l & 0xff);
42 return ret;
52 short[] ret = new short[4];
54 ret[i] = (short) (l & 0xffff);
57 return ret;
67 int[] ret = new int[2];
69 ret[i] = (int) (l & 0xffff_ffff);
72 return ret;
82 long[] ret
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/
H A DLoopUnroll.java34 int ret = 2;
37 ret *= 2 + current;
40 return ret;
/openjdk9/jdk/src/jdk.jdwp.agent/windows/native/libjdwp/
H A Dexec_md.c36 int ret; local
45 ret = CreateProcess(0, /* executable name */
56 if (ret == 0) {
/openjdk9/jdk/src/java.desktop/unix/native/libawt_xawt/awt/
H A Dswing_GTKStyle.c42 jint ret; local
44 ret = gtk->get_xthickness(env, widget_type);
46 return ret;
58 jint ret; local
60 ret = gtk->get_ythickness(env, widget_type);
62 return ret;
75 jint ret; local
77 ret = gtk->get_color_for_state(env, widget_type, state_type, type_id);
79 return ret;
91 jobject ret; local
107 jstring ret; local
[all...]
/openjdk9/jdk/src/java.desktop/windows/native/libawt/windows/
H A Dawt_Mlib.cpp44 mlib_status ret = MLIB_SUCCESS; local
62 ret = MLIB_FAILURE;
65 if (ret == MLIB_SUCCESS) {
69 ret = MLIB_FAILURE;
73 if (ret == MLIB_SUCCESS) {
77 ret = MLIB_FAILURE;
80 if (ret == MLIB_SUCCESS) {
87 while ((ret == MLIB_SUCCESS) && (pMlibFns[i].fname != NULL)) {
93 ret = MLIB_FAILURE;
98 return ret;
[all...]
/openjdk9/langtools/test/tools/javac/TryWithResources/
H A DTestTwr09.java47 String ret = null;
49 ret = "FAIL";
51 ret = re.getMessage();
53 return ret;
61 String ret = null;
65 ret = "FAIL";
67 ret = "FAIL test2";
69 ret = "PASS test2";
71 System.out.println("Ret = " + ret);
72 return ret;
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.directives.test/src/org/graalvm/compiler/api/directives/test/
H A DControlFlowAnchorDirectiveTest.java97 int ret;
99 ret = 17;
101 ret = arg;
103 return 42 / ret;
109 int ret;
111 ret = 17;
113 ret = arg;
116 return 42 / ret;
127 int ret = arg;
129 ret
[all...]
/openjdk9/hotspot/src/os_cpu/linux_x86/vm/
H A Dbytes_linux_x86.inline.hpp36 u2 ret;
41 :"=r" (ret) // output : register 0 => ret
45 return ret;
53 u4 ret;
56 :"=r" (ret) // output : register 0 => ret
60 return ret;
/openjdk9/jdk/src/java.base/share/classes/sun/net/www/http/
H A DHttpCaptureInputStream.java61 int ret = super.read(b);
62 for (int i = 0; i < ret; i++) {
65 return ret;
70 int ret = super.read(b, off, len);
71 for (int i = 0; i < ret; i++) {
74 return ret;
/openjdk9/jdk/test/java/rmi/server/RMIClassLoader/spi/
H A DInvalidProperty.java57 Object ret;
59 ret = RMIClassLoader.loadClass(classname);
65 "RMIClassLoader.loadClass returned " + ret);
73 Object ret;
75 ret = RMIClassLoader.loadClass(classname);
81 "RMIClassLoader.loadClass returned " + ret);
/openjdk9/jdk/test/java/io/Serializable/oldTests/
H A DArrayTest.java49 boolean ret = true;
56 ret = false;
60 ret = false;
64 ret = false;
68 ret = false;
72 ret = false;
76 ret = false;
80 ret = false;
84 ret = false;
88 ret
[all...]
/openjdk9/jdk/test/sun/nio/cs/
H A DTestJIS0208Decoder.java51 String ret = dec.decode(ByteBuffer.wrap(inputBytes)).toString();
52 if (ret.length() != outputString.length()
53 || ! outputString.equals(ret)){
/openjdk9/hotspot/src/os/bsd/vm/
H A DthreadCritical_bsd.cpp49 int ret = pthread_mutex_lock(&tc_mutex); local
50 guarantee(ret == 0, "fatal error with pthread_mutex_lock()");
64 int ret = pthread_mutex_unlock(&tc_mutex); local
65 guarantee(ret == 0, "fatal error with pthread_mutex_unlock()");
/openjdk9/hotspot/src/os/aix/vm/
H A DthreadCritical_aix.cpp50 int ret = pthread_mutex_lock(&tc_mutex); local
51 guarantee(ret == 0, "fatal error with pthread_mutex_lock()");
65 int ret = pthread_mutex_unlock(&tc_mutex); local
66 guarantee(ret == 0, "fatal error with pthread_mutex_unlock()");
/openjdk9/hotspot/src/os/linux/vm/
H A DthreadCritical_linux.cpp49 int ret = pthread_mutex_lock(&tc_mutex); local
50 guarantee(ret == 0, "fatal error with pthread_mutex_lock()");
64 int ret = pthread_mutex_unlock(&tc_mutex); local
65 guarantee(ret == 0, "fatal error with pthread_mutex_unlock()");
/openjdk9/hotspot/test/compiler/controldependency/
H A DTestEliminatedCastPPAtPhi.java46 int ret = array[0] + array[20];
49 return ret;
59 ret += array[i];
97 return ret + res.f;
/openjdk9/jdk/src/java.desktop/share/classes/sun/swing/text/
H A DCompoundPrintable.java50 int ret = NO_SUCH_PAGE;
52 ret = printables.peek().print(graphics, pf, pageIndex - offset);
53 if (ret == PAGE_EXISTS) {
59 return ret;
/openjdk9/jdk/test/sun/security/action/GetLongAction/
H A DReturnNullIfNoDefault.java44 long ret = ((Long)ac.run()).longValue();
45 if (ret != larg)
50 ret = ((Long)ac.run()).longValue();
51 if (ret != larg)

Completed in 403 milliseconds

1234567891011>>