Searched defs:mask (Results 76 - 100 of 220) sorted by relevance

123456789

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DAddress.java192 of the bits of the address and the mask (least significant bits
193 of the Address and the mask are aligned) and returns the result
195 public Address andWithMask(long mask) throws UnsupportedOperationException; argument
199 of the bits of the address and the mask (least significant bits
200 of the Address and the mask are aligned) and returns the result
202 public Address orWithMask(long mask) throws UnsupportedOperationException; argument
206 operation of the bits of the address and the mask (least
207 significant bits of the Address and the mask are aligned) and
210 public Address xorWithMask(long mask) throws UnsupportedOperationException; argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdAddress.java262 public Address andWithMask(long mask) throws UnsupportedOperationException { argument
263 long value = addr & mask;
270 public Address orWithMask(long mask) throws UnsupportedOperationException { argument
271 long value = addr | mask;
278 public Address xorWithMask(long mask) throws UnsupportedOperationException { argument
279 long value = addr ^ mask;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/dummy/
H A DDummyAddress.java250 public Address andWithMask(long mask) throws UnsupportedOperationException { argument
251 long value = addr & mask;
258 public Address orWithMask(long mask) throws UnsupportedOperationException { argument
259 long value = addr | mask;
266 public Address xorWithMask(long mask) throws UnsupportedOperationException { argument
267 long value = addr ^ mask;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxAddress.java262 public Address andWithMask(long mask) throws UnsupportedOperationException { argument
263 long value = addr & mask;
270 public Address orWithMask(long mask) throws UnsupportedOperationException { argument
271 long value = addr | mask;
278 public Address xorWithMask(long mask) throws UnsupportedOperationException { argument
279 long value = addr ^ mask;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcAddress.java258 public Address andWithMask(long mask) throws UnsupportedOperationException { argument
259 long value = addr & mask;
266 public Address orWithMask(long mask) throws UnsupportedOperationException { argument
267 long value = addr | mask;
274 public Address xorWithMask(long mask) throws UnsupportedOperationException { argument
275 long value = addr ^ mask;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteAddress.java257 public Address andWithMask(long mask) throws UnsupportedOperationException { argument
258 long value = addr & mask;
265 public Address orWithMask(long mask) throws UnsupportedOperationException { argument
266 long value = addr | mask;
273 public Address xorWithMask(long mask) throws UnsupportedOperationException { argument
274 long value = addr ^ mask;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgAddress.java267 public Address andWithMask(long mask) throws UnsupportedOperationException { argument
268 long value = addr & mask;
275 public Address orWithMask(long mask) throws UnsupportedOperationException { argument
276 long value = addr | mask;
283 public Address xorWithMask(long mask) throws UnsupportedOperationException { argument
284 long value = addr ^ mask;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DImageScalingHelper.java41 * Painting type indicating the image should be centered in the space provided. When used the <code>mask</code>
48 * <code>mask</code> is ignored.
98 * @param mask Specifies portion of image to render, if <code>PAINT_ALL</code> is specified, any other regions
104 Insets dInsets, PaintType paintType, int mask) {
165 if ((mask & PAINT_ALL) != 0) {
166 mask = (PAINT_ALL - 1) & ~mask;
169 if ((mask & PAINT_LEFT) != 0) {
173 if ((mask & PAINT_TOP_LEFT) != 0) {
177 if ((mask
102 paint(Graphics g, int x, int y, int w, int h, Image image, Insets sInsets, Insets dInsets, PaintType paintType, int mask) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMinimalHTMLWriter.java508 * the mask settings.
512 private void writeStartMask(int mask) throws IOException { argument
513 if (mask != 0) {
514 if ((mask & UNDERLINE) != 0) {
517 if ((mask & ITALIC) != 0) {
520 if ((mask & BOLD) != 0) {
528 * the mask settings.
532 private void writeEndMask(int mask) throws IOException { argument
533 if (mask != 0) {
534 if ((mask
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DFilePermission.java136 // the actions mask
137 private transient int mask; field in class:FilePermission
159 // static Strings used by init(int mask)
169 sb.append("mask = "+mask+"\n");
184 * @param mask the actions mask to use.
187 private void init(int mask) argument
190 if ((mask & ALL) != mask)
300 FilePermission(String path, int mask) argument
569 getActions(int mask) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanPermission.java221 * The actions mask.
223 private transient int mask; field in class:MBeanPermission
254 int mask;
263 mask = getMask(actions);
265 if ((mask & ALL) != mask)
266 throw new IllegalArgumentException("Invalid actions mask");
267 if (mask == NONE)
268 throw new IllegalArgumentException("Invalid actions mask");
269 this.mask
490 getActions(int mask) argument
[all...]
/openjdk7/hotspot/src/share/vm/libadt/
H A Dvectset.cpp109 register uint32 mask = 1L << (elem & 31); // Get bit mask local
113 data[word] |= mask; // Set new bit
124 register uint32 mask = 1L << (elem & 31); // Get bit mask
125 data[word] &= ~mask; // Clear bit
296 register uint32 mask = 1L << (elem & 31); // Get bit mask
297 return ((data[word] & mask))!=0; // Return the sense of the bit
375 mask
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioFloatConverter.java60 final private byte mask; field in class:AudioFloatConverter.AudioFloatLSBFilter
72 mask = (byte) 0x00;
74 mask = (byte) 0x80;
76 mask = (byte) 0xC0;
78 mask = (byte) 0xE0;
80 mask = (byte) 0xF0;
82 mask = (byte) 0xF8;
84 mask = (byte) 0xFC;
86 mask = (byte) 0xFE;
88 mask
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_ByteGray.c723 mlib_s32 i, j, x0, x1, mask, res; local
774 mask = res >> 16;
775 *dst++ = (res & mask) | (*dst &~ mask);
784 mask = res >> 16;
785 ((mlib_u16*)dst)[0] = (res & mask) | (((mlib_u16*)dst)[0] &~ mask);
792 mask = res >> 16;
793 *dst = (res & mask) | (*dst &~ mask);
891 mlib_s32 i, j, x0, x1, mask, res; local
[all...]
H A Dvis_IntArgb.c156 mlib_s32 i, i0, j, x, mask; local
182 mask = vis_fcmplt32(dd, dzero);
183 vis_pst_32(dd, dst + i, mask);
206 mlib_s32 j, x, mask; local
232 mask = vis_fcmplt32(dd, dzero);
233 vis_pst_32(dd, dst, mask);
256 mlib_s32 j, x, mask; local
283 mask = (((-*(mlib_u8*)pp0) >> 31) & 2) |
286 vis_pst_32(dd, dst, mask);
310 mlib_s32 j, x, mask; local
371 mlib_s32 pix, mask; local
[all...]
H A Dvis_UshortGray.c486 mlib_s32 i, j, x0, mask, res; local
538 mask = res >> 16;
539 *dst = (res & mask) | (*dst &~ mask);
638 mlib_s32 i, j, x0, mask, res; local
692 mask = res >> 16;
693 *dst = (res & mask) | (*dst &~ mask);
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DDevPollArrayWrapper.c117 jint wfd, jint fd, jint mask)
123 a[0].events = mask;
116 Java_sun_nio_ch_DevPollArrayWrapper_register(JNIEnv *env, jobject this, jint wfd, jint fd, jint mask) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DAccessFlags.java71 public AccessFlags ignore(int mask) { argument
72 return new AccessFlags(flags & ~mask);
75 public boolean is(int mask) { argument
76 return (flags & mask) != 0;
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_c_ImageCopy.c209 mlib_u8 src, mask; local
214 mask = mask0 << (8 - size);
215 mask >>= offset;
217 da[0] = (src & (~mask)) | (sa[0] & mask);
221 mask = mask0 >> offset;
223 da[0] = (src & (~mask)) | (sa[0] & mask);
319 mask = mask0 << (8 - j);
321 da[0] = (src & (~mask)) | (s
[all...]
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_gfx.h60 rgbquad_t mask[4]; member in struct:ImageFormat
H A Dsplashscreen_gfx_impl.h62 /* converts a single i'th component to the specific format defined by format->shift[i] and format->mask[i] */
64 (LSHIFT((quad),(format)->shift[i])&(format)->mask[i])
66 /* extracts the component defined by format->shift[i] and format->mask[i] from a specific-format value */
68 (RSHIFT((value)&(format)->mask[i],(format)->shift[i]))
294 /* find the shift for specified mask, also verify the mask is valid */
296 getMaskShift(rgbquad_t mask, int *pShift, int *pnumBits) argument
300 /* check the mask is not empty */
301 if (!mask)
304 while ((mask
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DPaint9Painter.java43 * the space provided. When used the <code>mask</code> is ignored.
49 * specified width and height. When used the <code>mask</code> is
122 * @param mask Specifies portion of image to render, if
130 PaintType type, int mask) {
134 super.paint(c, g, x, y, w, h, source, sInsets, dInsets, type, mask);
145 int mask = (Integer)args[argIndex++];
146 paint9(g, 0, 0, w, h, image, sInsets, dInsets, type, mask);
127 paint(Component c, Graphics g, int x, int y, int w, int h, Image source, Insets sInsets, Insets dInsets, PaintType type, int mask) argument
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DMaskBlit.java40 * alpha coverage mask
41 * 4) the mask may be null in which case it should be treated
76 System.out.println("mask blit loop not found for:");
109 byte[] mask, int maskoff, int maskscan);
174 byte mask[], int offset, int scan)
221 mask, offset, scan);
256 byte[] mask, int maskoff, int maskscan)
261 mask, maskoff, maskscan);
104 MaskBlit(SurfaceData src, SurfaceData dst, Composite comp, Region clip, int srcx, int srcy, int dstx, int dsty, int width, int height, byte[] mask, int maskoff, int maskscan) argument
167 MaskBlit(SurfaceData srcData, SurfaceData dstData, Composite comp, Region clip, int srcx, int srcy, int dstx, int dsty, int width, int height, byte mask[], int offset, int scan) argument
252 MaskBlit(SurfaceData src, SurfaceData dst, Composite comp, Region clip, int srcx, int srcy, int dstx, int dsty, int width, int height, byte[] mask, int maskoff, int maskscan) argument
H A DMaskFill.java47 * alpha coverage mask
48 * 4) the mask may be null in which case it should be treated
129 byte[] mask, int maskoff, int maskscan);
189 byte mask[], int offset, int scan)
208 mask, offset, scan);
243 byte[] mask, int maskoff, int maskscan)
247 mask, maskoff, maskscan);
126 MaskFill(SunGraphics2D sg2d, SurfaceData sData, Composite comp, int x, int y, int w, int h, byte[] mask, int maskoff, int maskscan) argument
185 MaskFill(SunGraphics2D sg2d, SurfaceData sData, Composite comp, int x, int y, int w, int h, byte mask[], int offset, int scan) argument
240 MaskFill(SunGraphics2D sg2d, SurfaceData sData, Composite comp, int x, int y, int w, int h, byte[] mask, int maskoff, int maskscan) argument
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DJISAutoDetect.java93 public final static boolean canBeSJIS1B(int mask) { argument
94 return (mask & SJIS1B_MASK) != 0;
97 public final static boolean canBeEUCJP(int mask) { argument
98 return (mask & EUCJP_MASK) != 0;

Completed in 99 milliseconds

123456789