Searched defs:mask (Results 51 - 75 of 220) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanServerPermission.java104 * The target names mask. This is not private to avoid having to
107 * This mask includes implied bits. So if it has CREATE_MASK then
110 transient int mask; field in class:MBeanServerPermission
151 mask = parseMask(name);
160 MBeanServerPermission(int mask) { argument
161 super(getCanonicalName(mask));
162 this.mask = impliedMask(mask);
168 mask = parseMask(getName());
171 static int simplifyMask(int mask) { argument
177 impliedMask(int mask) argument
183 getCanonicalName(int mask) argument
197 makeCanonicalName(int mask) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DpcDesc.hpp50 void set_flag(int mask, bool z) { argument
51 _flags = z ? (_flags | mask) : (_flags & ~mask);
H A DvtableStubs.hpp112 mask = N - 1 enumerator in enum:VtableStubs::__anon217
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsVirtualspace.cpp194 const size_t mask = ~(align - 1); local
195 return (tmp_value & mask) == value;
/openjdk7/hotspot/src/share/vm/libadt/
H A Dvectset.hpp123 uint32 mask = 1L << (elem & 31); // Get bit mask
124 uint32 datum = data[word] & mask;// Get bit
125 data[word] |= mask; // Set bit
137 uint32 mask = 1L << (elem & 31); // Get bit mask
138 return data[word] & mask; // Get bit
147 uint32 mask = 1L << (elem & 31); // Get bit mask local
148 data[word] |= mask; // Se
167 uint32 mask; member in class:VectorSetI
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DStandardMidiFileWriter.java310 private final static long mask = 0x7F; field in class:StandardMidiFileWriter
314 int shift=63; // number of bitwise left-shifts of mask
316 while ((shift > 0) && ((value & (mask << shift)) == 0)) shift-=7;
319 tddos.writeByte((int) (((value & (mask << shift)) >> shift) | 0x80));
323 tddos.writeByte((int) (value & mask));
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dvm_version_solaris_sparc.cpp44 static void do_sysinfo(int si, const char* string, int* features, int mask) { argument
59 *features |= mask;
/openjdk7/jdk/make/tools/src/build/tools/hasher/
H A DHasher.java137 int mask; // Hash-code mask field in class:Hasher
141 return (w.hashCode() >> shift) & mask;
151 this.mask = n - 1;
284 + Integer.toHexString(mask) + ";");
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dimg_util_md.h33 XID mask; /* The X11 pixmap with the transparency mask */ member in struct:__anon1009
41 XImage *maskim; /* The Ximage structure for the mask */
77 #define SetOpaqueBit(mask, bit) ((mask) |= (bit))
78 #define SetTransparentBit(mask, bit) ((mask) &= ~(bit))
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dmlib_v_ImageLogic.h114 mlib_s32 offdst, offsrc1, offsrc2 , mask, emask; local
130 mask = ((offsrc1 ^ offsrc2) << 8) |
133 if (mask == 0) { /* offdst = offsrc1 = offsrc2 */
144 /* generate edge mask for the start point */
167 } else if ((mask & 0xF) == 0) { /* offdst = offsrc1 != offsrc2 */
171 } else if ((mask & 0xF0) == 0) { /* offdst = offsrc2 != offsrc1 */
175 } else if ((mask & 0xF00) == 0) { /* offsrc1 = offsrc2 != offdst */
209 /* generate edge mask for the start point */
307 /* generate edge mask for the start point */
360 /* generate edge mask fo
[all...]
H A Dvis_GlyphList.c36 #define STORE_D64(TSIZE, dst, mask) \
37 vis_pst_##TSIZE(fgpixel_d, dst, mask)
224 mlib_s32 pix, mask0, mask1, mask, off; local
260 mask = (mask0 << off) | (mask1 >> (4 - off));
261 STORE_D64(32, dst, mask >> 2);
262 STORE_D64(32, dst + 2, mask);
289 mlib_s32 pix, mask0, mask1, mask, off; local
344 mask = (mask0 << off) | (mask1 >> (4 - off));
345 STORE_D64(32, dst, mask >> 2);
346 STORE_D64(32, dst + 2, mask);
[all...]
H A Dvis_GlyphListXor.c36 #define STORE_D64(TSIZE, dst, mask) \
37 vis_pst_##TSIZE(vis_fxor(*(mlib_d64*)(dst), fgpixel_d), dst, mask)
226 mlib_s32 pix, mask0, mask1, mask, off; local
262 mask = (mask0 << off) | (mask1 >> (4 - off));
263 STORE_D64(32, dst, mask >> 2);
264 STORE_D64(32, dst + 2, mask);
291 mlib_s32 pix, mask0, mask1, mask, off; local
346 mask = (mask0 << off) | (mask1 >> (4 - off));
347 STORE_D64(32, dst, mask >> 2);
348 STORE_D64(32, dst + 2, mask);
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DLinuxWatchService.c61 arr[1] = (jint)offsetof(struct inotify_event, mask);
84 (JNIEnv* env, jclass clazz, jint fd, jlong address, jint mask)
89 wfd = inotify_add_watch((int)fd, path, mask);
83 Java_sun_nio_fs_LinuxWatchService_inotifyAddWatch(JNIEnv* env, jclass clazz, jint fd, jlong address, jint mask) argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWTextComponentPeer.java111 public long filterEvents(long mask) { return 0; } argument
128 public native long filterEvents(long mask);
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DMaskCache.cpp100 int maskscan, void *mask)
117 if (mask != NULL) {
127 // copy alpha mask into texture tile
128 pCtx->UploadTileToTexture(pMaskTexRes, mask,
97 AddMaskQuad(int srcx, int srcy, int dstx, int dsty, int width, int height, int maskscan, void *mask) argument
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngwtran.c141 int mask, v; local
147 mask = 0x80;
153 v |= mask;
157 if (mask > 1)
158 mask >>= 1;
162 mask = 0x80;
169 if (mask != 0x80)
318 png_byte mask; local
322 mask = 0x55;
325 mask
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageConvCopyEdge_Bit.c52 * cmask Channel mask to indicate the channels to be convolved.
92 mlib_u8 mask, mask_end; local
102 mask = (0xFF >> bitoffd) & (0xFF << ((8 - (bitoffd + dx_l)) & 7));
105 pd[i*img_strided] = (pd[i*img_strided] & ~mask) | (ps[i*img_strides] & mask);
109 mask = (0xFF >> bitoffd);
112 pd[i*img_strided] = (pd[i*img_strided] & ~mask) | (ps[i*img_strides] & mask);
116 mask = (0xFF << ((8 - (bitoffd + dx_l)) & 7));
125 pd[i*img_strided + amount - 1] = (pd[i*img_strided + amount - 1] & ~mask) |
[all...]
H A Dmlib_ImageCreate.c135 mlib_s32 mask; /* mask for check of stride */ local
176 mask = 7;
184 mask = 3;
192 mask = 1;
196 mask = 0;
203 mask = 0;
209 if (stride & mask) {
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryClass.java111 DataInputStream in, int mask) throws IOException {
172 BinaryAttribute atts = BinaryAttribute.load(in, cpool, mask);
185 BinaryAttribute atts = BinaryAttribute.load(in, cpool, mask);
190 c.atts = BinaryAttribute.load(in, cpool, mask);
110 load(Environment env, DataInputStream in, int mask) argument
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DDefaultControlTest.java183 for (int mask = 0; mask < (1 << NARGS)-1; mask++) {
184 Object[] data = getNpeArgs(NARGS, mask);
213 for (int mask = 0; mask < (1 << NARGS)-1; mask++) {
214 Object[] data = getNpeArgs(NARGS, mask);
280 for (int mask = 0; mask < (
416 getNpeArgs(int length, int mask) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DBufferedMaskBlit.java96 byte[] mask, int maskoff, int maskscan)
102 if (mask == null) {
103 // no mask involved; delegate to regular blit loop
139 mask, mask.length, maskoff, maskscan,
152 byte[] mask, int masklen,
91 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
149 enqueueTile(long buf, int bpos, SurfaceData srcData, long pSrcOps, int srcType, byte[] mask, int masklen, int maskoff, int maskscan, int srcx, int srcy, int dstx, int dsty, int width, int height) argument
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec2_mont.c192 mp_digit top_bit, mask; local
227 mask = top_bit;
228 while (!(MP_DIGITS(n)[i] & mask)) {
229 mask >>= 1;
232 mask >>= 1;
236 if (!mask) {
239 mask = top_bit;
244 if (MP_DIGITS(n)[i] & mask) {
251 mask >>= 1;
254 mask
[all...]
/openjdk7/jdk/src/solaris/classes/sun/net/sdp/
H A DSdpProvider.java132 private final byte mask; field in class:SdpProvider.AddressPortRangeRule
139 this.mask = (byte)(0xff << (8 - (prefix % 8)));
156 ((candidate[prefixByteCount] & mask) !=
157 (addressAsBytes[prefixByteCount] & mask)))
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DEventPortWrapper.java215 void setInterest(int fd, int mask) { argument
218 setUpdate(fd, (byte)mask);
219 assert getUpdate(fd) == mask;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DBitArray.java81 * Set the mask for this bit array. The upper 8 bits of this mask
84 public void setMask(int mask) { argument
85 _mask = mask;

Completed in 57 milliseconds

123456789