Searched defs:up (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A Dbytes_zero.hpp52 unaligned *up = (unaligned *) p; local
53 return up->us;
57 unaligned *up = (unaligned *) p; local
58 return up->u;
62 unaligned *up = (unaligned *) p; local
63 return up->ul;
67 unaligned *up = (unaligned *) p; local
68 up->us = x;
72 unaligned *up = (unaligned *) p; local
73 up
77 unaligned *up = (unaligned *) p; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadInfo.java279 void up(int nFrames) throws IncompatibleThreadStateException { method in class:ThreadInfo
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixUriUtils.java100 static URI toUri(UnixPath up) { argument
101 byte[] path = up.toAbsolutePath().asByteArray();
118 if (UnixFileAttributes.get(up, true).isDirectory())
/openjdk7/hotspot/src/share/vm/ci/
H A DciInstanceKlass.cpp325 Klass* up = ik->up_cast_abstract(); local
326 assert(up->oop_is_instance(), "must be instanceKlass");
327 if (ik == up) {
330 return CURRENT_THREAD_ENV->get_object(up->as_klassOop())->as_instance_klass();
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngwrite.c119 png_unknown_chunk *up; local
123 for (up = info_ptr->unknown_chunks;
124 up < info_ptr->unknown_chunks + info_ptr->unknown_chunks_num;
125 up++)
127 int keep = png_handle_as_unknown(png_ptr, up->name);
130 up->location &&
131 !(up->location & PNG_HAVE_PLTE) &&
132 !(up->location & PNG_HAVE_IDAT) &&
133 !(up->location & PNG_AFTER_IDAT) &&
134 ((up
296 png_unknown_chunk *up; local
405 png_unknown_chunk *up; local
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DGregorianCalendar.java263 * // set up rules for Daylight Saving Time
1060 * Adds or subtracts (up/down) a single unit of time on the given time
1068 * @param up indicates if the value of the specified calendar field is to be
1069 * rolled up or rolled down. Use <code>true</code> if rolling up, <code>false</code> otherwise.
1077 public void roll(int field, boolean up) { argument
1078 roll(field, up ? +1 : -1);
H A DJapaneseImperialCalendar.java76 * and reads <JRE_HOME>/lib/calendars.properties at the start-up.
485 public void roll(int field, boolean up) { argument
486 roll(field, up ? +1 : -1);
H A DCalendar.java878 // - 0 (default) for version up to JDK 1.1.5
1072 * This allows you to sync up the calendar field values with
2016 * Adds or subtracts (up/down) a single unit of time on the given time
2018 * date up by one day, you can achieve it by calling:
2030 * @param up indicates if the value of the specified time field is to be
2031 * rolled up or rolled down. Use true if rolling up, false otherwise.
2035 abstract public void roll(int field, boolean up); argument
2084 * AFTER it up to the next call to complete().
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DListHelper.java145 // FIXME: need to clean up select list, too?
152 // FIXME: need to clean up select list, too?
311 public void up() { method in class:ListHelper
H A DXScrollbar.java129 protected Polygon createArrowShape(boolean vertical, boolean up) { argument
135 int y1 = (up ? ARROW_IND : barLength - ARROW_IND);
136 int y2 = (up ? getArrowWidth() : barLength - getArrowWidth() - ARROW_IND);
143 int x1 = (up ? ARROW_IND : barLength - ARROW_IND);
144 int x2 = (up ? getArrowWidth() : barLength - getArrowWidth() - ARROW_IND);
342 // wake up the scroll repeater
696 * (up) gadgets.
713 * (up) gadgets.
/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.cpp143 // Fix up _idx to meet asserts.
648 // Trimming to limit allows a uint8 to handle up to 255 edges.
671 // Trimming to limit allows a uint8 to handle up to 255 edges.
1106 // Walk 'sub' backward up the chain to 'dom', watching for regions.
1107 // After seeing 'dom', continue up to Root or Start.
1111 // will either exit through the loop head, or give up.
1123 // Region nodes were visited. Continue walk up to Start or Root
1132 // (This assumption is up to the caller to ensure!)
1135 Node* up = sub->in(0); local
1137 up
[all...]

Completed in 70 milliseconds