Searched refs:hx (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/test/java/lang/StrictMath/ |
D | FdlibmTranslit.java | 93 int hx; in compute() local 97 hx = __HI(x); // high word of x in compute() 98 sign = hx & 0x80000000; // sign= sign(x) in compute() 99 hx ^= sign; in compute() 100 if (hx >= 0x7ff00000) { in compute() 103 if ((hx | __LO(x)) == 0) { in compute() 107 x = __HI(x, hx); // x <- |x| in compute() 109 if (hx < 0x00100000) { // subnormal number in compute() 114 t = __HI(t, hx / 3 + B1); in compute() 311 int hx; in compute() local [all …]
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | ConcurrentSkipListMap.java | 676 Index<K,V> hx = new Index<K,V>(z, x, null); in doPut() local 677 Index<K,V> nh = new Index<K,V>(h.node, h, hx); in doPut()
|