Searched refs:MIN (Results 1 - 25 of 37) sorted by relevance

12

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DTarget.java86 private static Target MIN; field in class:Target
87 public static Target MIN() { return MIN; } method in class:Target
95 if (MIN == null) MIN = t;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListSelectionModel.java55 private static final int MIN = -1; field in class:DefaultListSelectionModel
59 private int maxIndex = MIN;
63 private int lastAdjustedIndex = MIN;
67 private int lastChangedIndex = MIN;
143 if (lastChangedIndex == MIN) {
153 lastChangedIndex = MIN;
190 if (lastAdjustedIndex == MIN) {
209 lastAdjustedIndex = MIN;
328 maxIndex = MIN;
504 int clearMax = MIN;
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DOptionListModel.java50 private static final int MIN = -1; field in class:OptionListModel
54 private int maxIndex = MIN;
58 private int lastChangedIndex = MIN;
153 if (lastChangedIndex == MIN) {
163 lastChangedIndex = MIN;
243 maxIndex = MIN;
366 int clearMax = MIN;
384 int setMax = MIN;
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrio.c101 #define MIN(a,b) (a <= b ? a : b) macro
131 read = MIN(NEAR_BUF_SIZE, remaining);
H A Dpngwio.c98 #define MIN(a,b) (a <= b ? a : b) macro
128 written = MIN(NEAR_BUF_SIZE, remaining);
H A Dpngtest.c406 #define MIN(a,b) (a <= b ? a : b) macro
431 read = MIN(NEAR_BUF_SIZE, remaining);
491 #define MIN(a,b) (a <= b ? a : b) macro
518 written = MIN(NEAR_BUF_SIZE, remaining);
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DSolarisOperatingSystem.c177 #define MIN(a, b) ((a < b) ? a : b) macro
201 load = MIN((t / num_cpus), 1.0);
203 load = MIN(get_single_cpu_load(which), 1.0);
H A DLinuxOperatingSystem.c219 #define MIN(a,b) (a<b?a:b) macro
281 *pkernelLoad = MIN(*pkernelLoad, 1.0);
285 user_load = MIN(user_load, 1.0);
300 return MIN((u + s), 1.0);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DSurrogate.java49 public static final char MIN = MIN_HIGH; field in class:Surrogate
75 return (MIN <= c) && (c <= MAX);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DEngineInputRecord.java114 if ((recordVersion.v < ProtocolVersion.MIN.v)
152 if ((recordVersion.v < ProtocolVersion.MIN.v)
401 if ((recordVersion.v < ProtocolVersion.MIN.v)
H A DProtocolVersion.java78 final static ProtocolVersion MIN = FIPS ? TLS10 : SSL30; field in class:ProtocolVersion
/openjdk7/jdk/test/sun/invoke/util/
H A DValueConversionsTest.java276 final int MIN = START_ARITY;
278 for (int nargs = MIN; nargs <= MAX; nargs = nextArgCount(nargs, 17, MAX)) {
327 int MIN = START_ARITY;
331 if (elemType == long.class || elemType == double.class) { MAX /= 2; MIN /= 2; }
332 for (int nargs = MIN; nargs <= MAX; nargs = nextArgCount(nargs, density, MAX)) {
426 final int MIN = START_ARITY;
428 for (int nargs = MIN; nargs <= MAX; nargs = nextArgCount(nargs, 7, MAX)) {
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DmultiVis.c132 #ifndef MIN
133 #define MIN( a, b) ((a) < (b) ? a : b) macro
450 srcRect_width = MIN( vis_reg->rects[rect].x2, bbox.width + bbox.x)
453 srcRect_height = MIN( vis_reg->rects[rect].y2, bbox.height + bbox.y)
544 srcRect_width = MIN( reg->width + reg->x_vis, bbox.width + bbox.x)
546 srcRect_height = MIN( reg->height + reg->y_vis, bbox.height
715 curr_clipRt = MIN(pclip->x + pclip->width,
718 curr_clipBt = MIN(pclip->y + pclip->height,
731 new_width = MIN(curr_clipRt,
741 new_height = MIN(curr_clipB
[all...]
H A Dawt_util.h148 #ifndef MIN
149 #define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djmemmgr.c427 rowsperchunk = MIN(rowsperchunk, numrows - currow);
475 rowsperchunk = MIN(rowsperchunk, numrows - currow);
704 rows = MIN((long) ptr->rowsperchunk, (long) ptr->rows_in_mem - i);
707 rows = MIN(rows, (long) ptr->first_undef_row - thisrow);
709 rows = MIN(rows, (long) ptr->rows_in_array - thisrow);
737 rows = MIN((long) ptr->rowsperchunk, (long) ptr->rows_in_mem - i);
740 rows = MIN(rows, (long) ptr->first_undef_row - thisrow);
742 rows = MIN(rows, (long) ptr->rows_in_array - thisrow);
H A Djcprepct.c148 numrows = (int) MIN((JDIMENSION) numrows, inrows);
215 numrows = (int) MIN((JDIMENSION) numrows, inrows);
H A Djpegint.h272 #undef MIN macro
273 #define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DSurrogate.java49 public static final char MIN = Character.MIN_SURROGATE; field in class:Surrogate
75 return (MIN <= c) && (c <= MAX);
/openjdk7/hotspot/agent/src/os/bsd/
H A Dps_core.c451 #ifndef MIN
452 #define MIN(x, y) (((x) < (y))? (x): (y)) macro
470 len = MIN(resid, mp->memsz - mapoff);
485 len = MIN(resid, rem);
776 pread(ph->core->exec_fd, interp_name, MIN(exec_php->p_filesz, BUF_SIZE), exec_php->p_offset);
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_core.c451 #ifndef MIN
452 #define MIN(x, y) (((x) < (y))? (x): (y)) macro
470 len = MIN(resid, mp->memsz - mapoff);
485 len = MIN(resid, rem);
770 pread(ph->core->exec_fd, interp_name, MIN(exec_php->p_filesz, BUF_SIZE), exec_php->p_offset);
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DProcessPath.c279 #define CALC_MIN(MIN, X) ((MIN)=((X)<(MIN))?(X):(MIN))
281 #define MIN(MIN, X) (((X)<(MIN))?(X):(MIN)) macro
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.c60 #define MIN(a,b) ((a) < (b) ? (a) : (b)) macro
1148 x2 = MIN(bounds->x2, x2);
1149 y2 = MIN(bounds->y2, y2);
1194 x2 = MIN(x2, px2);
1195 y2 = MIN(y2, py2);
1234 x2 = MIN(x2, px2);
1235 y2 = MIN(y2, py2);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCTrayIcon.m46 CGFloat scaleFactor = MIN(1.0, desiredHeight/imageSize.height);
/openjdk7/jdk/src/share/back/
H A DstepControl.c544 step->granularity == JDWP_STEP_SIZE(MIN)) {
624 if (step->granularity == JDWP_STEP_SIZE(MIN)) {
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_PCM.cpp66 #define MIN(x, y) ((x) <= (y) ? (x) : (y)) macro
130 int channelsCount = MIN(totalChannels, 3);
144 int defChannels = MIN(2, channelsCount);

Completed in 104 milliseconds

12