Searched refs:hi (Results 26 - 50 of 110) sorted by relevance

12345

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DUUIDEncodingAlgorithm.java114 long hi = 1L << (digits * 4);
115 return Long.toHexString(hi | (val & (hi - 1))).substring(1);
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse2.cpp246 jint hi() const { return _hi; } function in class:SwitchRange
251 void setRange(jint lo, jint hi, int dest, int table_index) { argument
252 assert(lo <= hi, "must be a non-empty range");
253 _lo = lo, _hi = hi; _dest = dest; _table_index = table_index;
255 bool adjoinRange(jint lo, jint hi, int dest, int table_index) { argument
256 assert(lo <= hi, "must be a non-empty range");
258 _hi = hi;
275 tty->print(" {..%d}=>%d", hi(), dest());
276 else if (hi() == max_jint)
279 tty->print(" {%d..%d}=>%d", lo(), hi(), des
489 jump_switch_ranges(Node* key_val, SwitchRange *lo, SwitchRange *hi, int switch_depth) argument
[all...]
H A Dregalloc.hpp96 void set_pair( uint idx, OptoReg::Name hi, OptoReg::Name lo ) {
98 _node_regs[idx].set_pair(hi, lo);
H A Dmulnode.cpp734 jint lo = r1->_lo, hi = r1->_hi; local
736 ((hi << shift) >> shift) == hi) {
739 (jint)hi << (jint)shift,
843 jlong lo = r1->_lo, hi = r1->_hi; local
845 ((hi << shift) >> shift) == hi) {
848 (jlong)hi << (jint)shift,
874 int hi = ~lo; // 00007FFF local
878 if( lo <= t11->_lo && t11->_hi <= hi )
990 jint hi = (jint)r1->_hi >> (jint)shift; local
1052 jlong hi = (jlong)r1->_hi >> (jlong)shift; local
1196 jint hi = (juint)r1->_hi >> (juint)shift; local
1325 jlong hi = (julong)r1->_hi >> (juint)shift; local
[all...]
H A Daddnode.cpp348 int hi = r0->_hi + r1->_hi; local
352 lo = min_jint; hi = max_jint; // Underflow on the low side
354 if( (~(r0->_hi | r1->_hi)) < 0 && hi < 0 ) {
355 lo = min_jint; hi = max_jint; // Overflow on the high side
357 if( lo > hi ) { // Handle overflow
358 lo = min_jint; hi = max_jint;
361 // both constants, compute precise result using 'lo' and 'hi'
365 return TypeInt::make( lo, hi, MAX2(r0->_widen,r1->_widen) );
466 jlong hi = r0->_hi + r1->_hi; local
470 lo =min_jlong; hi
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/xml/util/
H A DNaming.java129 int hi = c >> 8;
130 if (charTypeTable[hi] == null)
131 charTypeTable[hi] = new byte[256];
132 charTypeTable[hi][c & 0xFF] = (byte)type;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileSystemModel.java274 int hi = hi0;
283 while (lo <= hi) {
295 while ((hi > lo0) && lt(mid, (SortableFile)v.elementAt(hi))) {
296 --hi;
300 if (lo <= hi) {
301 swap(v, lo, hi);
303 --hi;
309 if (lo0 < hi) {
310 quickSort(v, lo0, hi);
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DDualPivotQuicksort.java127 for (int lo = run[count] - 1, hi = k; ++lo < --hi; ) {
128 int t = a[lo]; a[lo] = a[hi]; a[hi] = t;
173 int hi = run[k], mi = run[k - 1];
174 for (int i = run[k - 2], p = i, q = mi; i < hi; ++i) {
175 if (q >= hi || p < mi && a[p] <= a[q]) {
181 run[++last] = hi;
567 for (int lo = run[count] - 1, hi = k; ++lo < --hi; ) {
[all...]
H A DUUID.java384 long hi = 1L << (digits * 4);
385 return Long.toHexString(hi | (val & (hi - 1))).substring(1);
H A DTreeMap.java1246 * loInclusive) and (toEnd, hi, hiInclusive). If fromStart is
1252 final K lo, hi; field in class:TreeMap.NavigableSubMap
1258 boolean toEnd, K hi, boolean hiInclusive) {
1260 if (m.compare(lo, hi) > 0)
1266 m.compare(hi, hi);
1274 this.hi = hi;
1291 int c = m.compare(key, hi);
1304 && (toEnd || m.compare(hi, ke
1256 NavigableSubMap(TreeMap<K,V> m, boolean fromStart, K lo, boolean loInclusive, boolean toEnd, K hi, boolean hiInclusive) argument
1696 AscendingSubMap(TreeMap<K,V> m, boolean fromStart, K lo, boolean loInclusive, boolean toEnd, K hi, boolean hiInclusive) argument
1774 DescendingSubMap(TreeMap<K,V> m, boolean fromStart, K lo, boolean loInclusive, boolean toEnd, K hi, boolean hiInclusive) argument
2362 buildFromSorted(int level, int lo, int hi, int redLevel, Iterator it, java.io.ObjectInputStream str, V defaultVal) argument
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DRedefineAnnotation.sh57 new $1().hi(false);
58 new $1().hi(true); // @1 breakpoint
59 sub.hi(true);
60 subsub.hi(true);
65 public void hi(
119 Method my_method = getClass().getMethod("hi", params);
123 + getClass() + ".hi()");
136 throw new Error("FAIL: cannot find method 'hi' in " + getClass());
143 Method my_method = getClass().getMethod("hi", params);
169 throw new Error("FAIL: cannot find method 'hi' i
[all...]
H A DFinalLocalsTest.java55 public void hi(){ method in class:FinalLocalsTarg
60 new FinalLocalsTarg().hi();
177 BreakpointEvent bp = resumeTo("FinalLocalsTarg", "hi", "()V");
H A DVars.java60 void hi() { method in class:TestVars
65 new TestVars().hi();
158 BreakpointEvent bp = resumeTo("TestVars", "hi", "()V");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DInputLexer.java133 int hi = ((int) readByte()) & 0xFF;
135 return (char) ((hi << 8) | lo);
/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DAnnoVal.java124 "double hi 1.0/0.0",
133 hi = 1.0/0.0,
194 double hi(); method in interface:AT3
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DConstMethod.java170 int hi = getBytecodeOrBPAt(bci);
172 return (short) ((hi << 8) | lo);
178 int hi = getBytecodeOrBPAt(bci);
181 return (short) ((hi << 8) | lo);
183 return (short) ((lo << 8) | hi);
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DRdn.java691 int hi = Character.digit(chars[beg], 16);
693 if (hi < 0 || lo < 0) {
696 bytes[i] = (byte)((hi<<4) + lo);
720 int hi = Character.digit(chars[beg++], 16);
722 if (hi < 0 || lo < 0) {
725 utf8[len++] = (byte)((hi<<4) + lo);
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DUtility.java80 char hi = (char)(value >> 16);
82 s = s + hi + (char)value;
85 s = hi + (char)value + s.substring(2);
88 s = s.substring(0, index) + hi + (char)value + s.substring(index+2);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/privateutil/
H A DPolicyUtils.java456 int hi, lo;
463 hi = Character.digit(quoted.charAt(++i), 16);
465 if ((0 > hi) || (0 > lo)) {
468 unquoted[newLength++] = (byte) (hi * 16 + lo);
/openjdk7/jdk/src/share/classes/sun/font/
H A DLayoutPathImpl.java694 * lo <= x < hi. If we do, also return the pinned portion of ourselves in
697 boolean pin(double lo, double hi, LineInfo result) { argument
700 if (sx < hi && lx >= lo) {
705 if (lx > hi) {
706 if (m != 0) result.ly = ly + m * (hi - lx);
707 result.lx = hi;
712 if (lx < hi && sx >= lo) {
717 if (sx > hi) {
718 if (m != 0) result.sy = sy + m * (hi - sx);
719 result.sx = hi;
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecode.cpp255 int hi = high_key(); local
256 assert (hi >= lo, "incorrect hi/lo values in tableswitch");
257 int i = hi - lo - 1 ;
/openjdk7/jdk/src/share/demo/jfc/TransparentRuler/transparentruler/
H A DRuler.java235 boolean hi = x % 50 == 0;
237 hi ? 20 : (x % 25 == 0 ? 13 : 8));
238 if (hi) {
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultHighlighter.java170 HighlightInfo hi = highlights.elementAt(i);
171 if (hi instanceof LayeredHighlightInfo) {
172 LayeredHighlightInfo info = (LayeredHighlightInfo)hi;
180 p0 = hi.p0.getOffset();
181 p1 = hi.p1.getOffset();
184 p0 = Math.min(p0, hi.p0.getOffset());
185 p1 = Math.max(p1, hi.p1.getOffset());
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapName.java936 int hi = Character.digit(chars[beg], 16);
938 if (hi < 0 || lo < 0) {
941 bytes[i] = (byte)((hi<<4) + lo);
965 int hi = Character.digit(chars[beg++], 16);
967 if (hi < 0 || lo < 0) {
970 utf8[len++] = (byte)((hi<<4) + lo);
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DCharSet.java368 * @param hi The highest-numbered character to include in the range
370 public CharSet(int lo, int hi) { argument
372 if (lo <= hi) {
374 chars[1] = hi;
377 chars[0] = hi;

Completed in 131 milliseconds

12345