Searched refs:lx (Results 1 - 25 of 48) sorted by relevance

12

/openjdk9/langtools/test/tools/javac/generics/inference/
H A DNestedCapture.java34 abstract <T> List<T> copyOf(List<? extends T> lx); argument
35 abstract <E> List<E> filter(List<E> lx); argument
37 <U> void test1(List<U> lx) { argument
38 copyOf(filter(lx));
41 void test2(List<?> lx) { argument
42 copyOf(filter(lx));
/openjdk9/jdk/src/java.base/share/native/libfdlibm/
H A Ds_isnan.c40 int hx,lx; local
42 lx = __LO(x);
43 hx |= (unsigned)(lx|(-lx))>>31;
H A Ds_nextafter.c43 unsigned lx,ly; local
46 lx = __LO(x); /* low word of x */
52 if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */
56 if((ix|lx)==0) { /* x == 0 */
63 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */
64 if(lx==0) hx -= 1;
65 lx -= 1;
67 lx += 1;
68 if(lx==0) hx += 1;
71 if(hy>=0||hx>hy||((hx==hy)&&(lx>l
[all...]
H A Ds_ilogb.c41 int hx,lx,ix; local
45 lx = __LO(x);
46 if((hx|lx)==0)
50 for (ix = -1043; lx>0; lx<<=1) ix -=1;
H A De_fmod.c48 unsigned lx,ly,lz; local
51 lx = __LO(x); /* low word of x */
63 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */
64 if(lx==ly)
71 for (ix = -1043, i=lx; i>0; i<<=1) ix -=1;
86 /* set up {hx,lx}, {hy,ly} and align y to x */
92 hx = (hx<<n)|(lx>>(32-n));
93 lx <<= n;
95 hx = lx<<(n-32);
96 lx
[all...]
H A Ds_logb.c41 int lx,ix; local
43 lx = __LO(x); /* low x */
44 if((ix|lx)==0) return -1.0/fabs(x);
H A Ds_frexp.c52 int hx, ix, lx; local
55 lx = __LO(x);
57 if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */
H A De_atanh.c63 unsigned lx; local
65 lx = __LO(x); /* low word */
67 if ((ix|((lx|(-lx))>>31))>0x3ff00000) /* |x|>1 */
H A De_log10.c82 unsigned lx; local
85 lx = __LO(x); /* low word of x */
89 if (((hx&0x7fffffff)|lx)==0)
H A De_atan2.c76 unsigned lx,ly; local
79 lx = __LO(x);
82 if(((ix|((lx|-lx)>>31))>0x7ff00000)||
85 if(((hx-0x3ff00000)|lx)==0) return atan(y); /* x=1.0 */
98 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
H A De_sinh.c61 unsigned lx; local
85 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
86 if (ix<0x408633CE || ((ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d))) {
H A De_remainder.c52 unsigned sx,lx,lp; local
56 lx = __LO(x); /* low word of x */
72 if (((hx-hp)|(lx-lp))==0) return zero*x;
H A Ds_scalbn.c52 int k,hx,lx; local
54 lx = __LO(x);
57 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
H A De_cosh.c64 unsigned lx; local
91 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
93 ((ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d))) {
/openjdk9/langtools/test/tools/javac/conditional/8064464/
H A DT8064464.java17 void m(List<Integer> lx) { argument
18 Integer i1 = f(!lx.isEmpty() ? 0 : lx.get(0)); //ok --> f(int)
19 Integer i2 = f(!lx.isEmpty() ? lx.get(0) : 0); //ok --> f(int)
20 f(!lx.isEmpty() ? id() : 0); // ambiguous
21 f(!lx.isEmpty() ? 0 : id()); // ambiguous
/openjdk9/hotspot/src/os/windows/vm/
H A DsharedRuntimeRem.cpp45 unsigned lx, ly, lz; local
48 lx = __LO(x); /* low word of x */
62 if ((hx<hy) || (lx<ly)) return x; /* |x|<|y| return x */
63 if (lx == ly)
70 for (ix = -1043, i = lx; i>0; i <<= 1) ix -= 1;
89 /* set up {hx,lx}, {hy,ly} and align y to x */
95 hx = (hx << n) | (lx >> (32 - n));
96 lx <<= n;
99 hx = lx << (n - 32);
100 lx
[all...]
/openjdk9/langtools/test/tools/javac/diags/examples/
H A DInferredDoNotConformToUpper.java31 <X> void m(X x, List<? super X> lx) {} argument
/openjdk9/langtools/test/tools/javac/lambda/
H A DTargetType41.java10 <X> void m(String s, java.util.List<String> lx) { } argument
H A DMethodReference67.java11 void m(List<X> lx, X x); argument
/openjdk9/langtools/test/tools/javac/protectedAccess/
H A DProtectedMemberAccess2.java58 pkg.SuperClass lx = new pkg.SuperClass();
63 lx.pi = 1; // illegal
64 lx.spi = 2; // illegal
69 int k = lx.pi; // illegal
70 int l = lx.spi; // illegal
75 int w = lx.pm(); // illegal
76 int z = lx.spm(); // illegal
100 pkg.SuperClass lx = new pkg.SuperClass();
108 lx.pi = 1; // illegal
109 lx
[all...]
H A DProtectedMemberAccess4.java64 pkg.SuperClass lx = new pkg.SuperClass();
69 lx.pi = 1; // illegal
70 lx.spi = 2; // ok
75 int k = lx.pi; // illegal
76 int l = lx.spi; // ok
81 int w = lx.pm(); // illegal
82 int z = lx.spm(); // ok
106 pkg.SuperClass lx = new pkg.SuperClass();
114 lx.pi = 1; // illegal
115 lx
[all...]
H A DProtectedMemberAccess1.java228 ProtectedMemberAccess2a lx =
234 lx.pi = 1;
235 lx.spi = 2;
240 int k = lx.pi;
241 int l = lx.spi;
246 int w = lx.pm();
247 int z = lx.spm();
271 ProtectedMemberAccess2a lx =
280 lx.pi = 1;
281 lx
[all...]
H A DProtectedMemberAccess3.java63 pkg.SuperClass lx = new pkg.SuperClass();
71 lx.pi = 1; // illegal
72 lx.spi = 2; // illegal
80 int w = lx.pm(); // illegal
81 int z = lx.spm(); // illegal
89 int k = lx.pi; // illegal
90 int l = lx.spi; // illegal
/openjdk9/hotspot/test/compiler/codegen/
H A DBMI1.java43 long lx = 0x0123456701234567L;
57 long z = BMITests.andnq(lx, ly);
59 long ll = BMITests.andnq(lx, ly);
75 long z = BMITests.andnq(lx, lmy);
77 long ll = BMITests.andnq(lx, lmy);
93 long z = BMITests.blsiq(lx);
95 long ll = BMITests.blsiq(lx);
130 long z = BMITests.blsmskq(lx);
132 long ll = BMITests.blsmskq(lx);
167 long z = BMITests.blsrq(lx);
[all...]
/openjdk9/hotspot/src/share/vm/runtime/
H A DsharedRuntimeMath.hpp102 int k,hx,lx; local
104 lx = low(x);
107 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */

Completed in 193 milliseconds

12