Searched defs:MASK (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/test/compiler/5057225/
H A DTest5057225.java100 static final long MASK; field in class:Test5057225.loadUB2L
106 MASK = value;
109 public void run() { check(doload(ba), MASK); }
110 static long doload(byte[] ba) { return ba[0] & MASK; }
114 static final long MASK; field in class:Test5057225.loadUS2L
120 MASK = value;
123 public void run() { check(doload(sa), MASK); }
124 static long doload(short[] sa) { return sa[0] & MASK; }
128 static final long MASK; field in class:Test5057225.loadUI2L
134 MASK
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DColorChooserPanel.java43 private static final int MASK = 0xFF000000; field in class:ColorChooserPanel
184 int value = MASK & model.getSelectedColor().getRGB() | (Integer) object;
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontResolver.java66 // blocks[c>>SHIFT][c&MASK]
73 private static final int MASK = BLOCKSIZE-1; field in class:FontResolver
172 int index = c & MASK;
/openjdk7/hotspot/src/os/bsd/vm/
H A Djsig.c41 #define MASK(sig) ((unsigned int)1 << sig) macro
107 sigused = (MASK(sig) & jvmsigs) != 0;
124 jvmsigs |= MASK(sig);
166 sigused = (MASK(sig) & jvmsigs) != 0;
189 jvmsigs |= MASK(sig);
221 if ((MASK(sig) & jvmsigs) != 0) {
/openjdk7/hotspot/src/os/linux/vm/
H A Djsig.c44 #define MASK(sig) ((unsigned int)1 << sig) macro
110 sigused = (MASK(sig) & jvmsigs) != 0;
127 jvmsigs |= MASK(sig);
168 sigused = (MASK(sig) & jvmsigs) != 0;
191 jvmsigs |= MASK(sig);
223 if ((MASK(sig) & jvmsigs) != 0) {
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DParserConstants.java64 int MASK = 39; field in interface:ParserConstants
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dmlib_ImageZoom_NN.c357 #define MASK(dst) (dst).uint0 = (dst).uint1 = -1 macro
403 #define MASK(dst) (dst) = ((mlib_u64)((mlib_s64) -1)) macro
512 MASK(mask);
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Base.java1519 private static final BigInteger MASK = new BigInteger("7f", 16); field in class:DigestMD5Base
1555 result[i] = in.and(MASK).toByteArray()[0];
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java139 private static final long MASK = (long)0x7 << SHIFT; field in class:JRSUIConstants.Size
140 private static final PropertyEncoding size = new PropertyEncoding(MASK, SHIFT);
159 private static final long MASK = (long)0xF << SHIFT; field in class:JRSUIConstants.State
160 private static final PropertyEncoding state = new PropertyEncoding(MASK, SHIFT);
185 private static final long MASK = (long)0xF << SHIFT; field in class:JRSUIConstants.Direction
186 private static final PropertyEncoding direction = new PropertyEncoding(MASK, SHIFT);
215 private static final long MASK = (long)0x3 << SHIFT; field in class:JRSUIConstants.Orientation
216 private static final PropertyEncoding orientation = new PropertyEncoding(MASK, SHIFT);
231 private static final long MASK = (long)0x3 << SHIFT; field in class:JRSUIConstants.AlignmentVertical
232 private static final PropertyEncoding alignmentVertical = new PropertyEncoding(MASK, SHIF
249 private static final long MASK = (long)0x3 << SHIFT; field in class:JRSUIConstants.AlignmentHorizontal
267 private static final long MASK = (long)0x7 << SHIFT; field in class:JRSUIConstants.SegmentPosition
287 private static final long MASK = (long)0xF << SHIFT; field in class:JRSUIConstants.ScrollBarPart
315 private static final long MASK = (long)0xF << SHIFT; field in class:JRSUIConstants.Variant
346 private static final long MASK = (long)0x3 << SHIFT; field in class:JRSUIConstants.WindowType
364 private static final long MASK = (long)0x1 << SHIFT; field in class:JRSUIConstants.Focused
380 private static final long MASK = (long)0x1 << SHIFT; field in class:JRSUIConstants.IndicatorOnly
396 private static final long MASK = (long)0x1 << SHIFT; field in class:JRSUIConstants.NoIndicator
412 private static final long MASK = (long)0x1 << SHIFT; field in class:JRSUIConstants.ArrowsOnly
428 private static final long MASK = (long)0x1 << SHIFT; field in class:JRSUIConstants.FrameOnly
444 private static final long MASK = (long)0x1 << SHIFT; field in class:JRSUIConstants.SegmentTrailingSeparator
460 private static final long MASK = (long)0x1 << SHIFT; field in class:JRSUIConstants.SegmentLeadingSeparator
476 private static final long MASK = (long)0x1 << SHIFT; field in class:JRSUIConstants.NothingToScroll
492 private static final long MASK = (long)0x1 << SHIFT; field in class:JRSUIConstants.WindowTitleBarSeparator
508 private static final long MASK = (long)0x1 << SHIFT; field in class:JRSUIConstants.WindowClipCorners
524 private static final long MASK = (long)0x1 << SHIFT; field in class:JRSUIConstants.ShowArrows
540 private static final long MASK = (long)0x1 << SHIFT; field in class:JRSUIConstants.BooleanValue
556 private static final long MASK = (long)0x1 << SHIFT; field in class:JRSUIConstants.Animating
572 private static final long MASK = (long)0x7F << SHIFT; field in class:JRSUIConstants.Widget
[all...]

Completed in 50 milliseconds