/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/ |
H A D | img_alpha.h | 32 * data to construct a 1-bit deep image mask used to control the 52 #define SetupEndMask(mask, dstH, cvdata) \ 53 do {endMask = mask + dstH * MaskScan(cvdata);} while (0) 56 #define SetupEndMask(mask, dstH, cvdata) \ 62 MaskBits *mask; \ 70 mask = (MaskBits *) cvdata->maskbuf; \ 72 if (mask) { \ 73 SetupEndMask(mask, dstTotalHeight, cvdata); \ 74 mask += ((dstY * MaskScan(cvdata)) \ 86 maskbits = *mask; \ [all...] |
/openjdk7/jdk/src/share/classes/javax/management/ |
H A D | MBeanServerPermission.java | 104 * 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...] |
H A D | MBeanPermission.java | 221 * 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/agent/src/share/classes/sun/jvm/hotspot/interpreter/ |
H A D | MaskFillerForNative.java | 34 MaskFillerForNative(Method method, BitMap mask, int maskSize) { argument 36 this.mask = mask; 44 public void passObject() { mask.atPut(offset(), true); } 53 private BitMap mask; field in class:MaskFillerForNative
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/ |
H A D | ProcOopHandle.java | 38 public Address andWithMask(long mask) throws UnsupportedOperationException { argument 42 public Address orWithMask(long mask) throws UnsupportedOperationException { argument 46 public Address xorWithMask(long mask) throws UnsupportedOperationException { argument
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/ |
H A D | RemoteOopHandle.java | 38 public Address andWithMask(long mask) throws UnsupportedOperationException { argument 42 public Address orWithMask(long mask) throws UnsupportedOperationException { argument 46 public Address xorWithMask(long mask) throws UnsupportedOperationException { argument
|
/openjdk7/jdk/src/share/classes/javax/smartcardio/ |
H A D | CardPermission.java | 116 private transient int mask; field in class:CardPermission 145 mask = getMask(actions); 163 int mask = 0; 169 mask |= ARRAY_MASKS[i]; 176 return mask; 179 private static String getActions(int mask) { argument 180 if (mask == A_ALL) { 187 if ((mask & action) == action) { 210 actions = getActions(mask); 236 if ((this.mask [all...] |
/openjdk7/jdk/src/share/native/sun/awt/medialib/ |
H A D | mlib_ImageConvClearEdge_Bit.c | 52 * cmask Channel mask to indicate the channels to be convolved. 84 mlib_u8 color_i, mask, mask_end, tmp_color; local 100 mask = (0xFF >> bitoff) & (0xFF << ((8 - (bitoff + dx_l)) & 7)); 101 tmp_color = color_i & mask; 102 mask = ~mask; 105 pd[i*img_stride] = (pd[i*img_stride] & mask) | tmp_color; 109 mask = (0xFF >> bitoff); 110 tmp_color = color_i & mask; 111 mask [all...] |
H A D | mlib_ImageConvCopyEdge_Bit.c | 52 * 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...] |
/openjdk7/jdk/src/windows/native/sun/windows/ |
H A D | awt_Win32GraphicsConfig.cpp | 66 * fields in the Windows GDI PIXELFORMATDESCRIPTOR and the mask 70 int mask = 0xFFFFFFFF; local 73 mask = mask << numBits; 74 mask = ~mask; 76 mask = mask << shift; 77 return mask;
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/ |
H A D | Flags.java | 56 public static EnumSet<Flag> asFlagSet(long mask) { argument 58 if ((mask&PUBLIC) != 0) flags.add(Flag.PUBLIC); 59 if ((mask&PRIVATE) != 0) flags.add(Flag.PRIVATE); 60 if ((mask&PROTECTED) != 0) flags.add(Flag.PROTECTED); 61 if ((mask&STATIC) != 0) flags.add(Flag.STATIC); 62 if ((mask&FINAL) != 0) flags.add(Flag.FINAL); 63 if ((mask&SYNCHRONIZED) != 0) flags.add(Flag.SYNCHRONIZED); 64 if ((mask&VOLATILE) != 0) flags.add(Flag.VOLATILE); 65 if ((mask&TRANSIENT) != 0) flags.add(Flag.TRANSIENT); 66 if ((mask [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/ |
H A D | CMStateSet.java | 166 final int mask = (0x1 << (bitToGet % 32)); 168 return (fBits1 & mask) != 0; 170 return (fBits2 & mask) != 0; 174 // Create the mask and byte values 175 final byte mask = (byte)(0x1 << (bitToGet % 8)); 179 return ((fByteArray[ofs] & mask) != 0); 241 final int mask = (0x1 << (bitToSet % 32)); 244 fBits1 &= ~mask; 245 fBits1 |= mask; 249 fBits2 &= ~mask; [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/compiler/ |
H A D | OopMapStream.java | 32 private int mask; field in class:OopMapStream 44 mask = type.getValue(); 53 mask = computeMask(types); 80 mask = 0; 83 mask |= types[i].getValue(); 86 return mask; 92 if ((omv.getType().getValue() & mask) > 0) {
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/ |
H A D | BsdOopHandle.java | 50 public Address andWithMask(long mask) throws UnsupportedOperationException { argument 54 public Address orWithMask(long mask) throws UnsupportedOperationException { argument 58 public Address xorWithMask(long mask) throws UnsupportedOperationException { argument
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/dummy/ |
H A D | DummyOopHandle.java | 52 public Address andWithMask(long mask) throws UnsupportedOperationException { argument 56 public Address orWithMask(long mask) throws UnsupportedOperationException { argument 60 public Address xorWithMask(long mask) throws UnsupportedOperationException { argument
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/ |
H A D | LinuxOopHandle.java | 50 public Address andWithMask(long mask) throws UnsupportedOperationException { argument 54 public Address orWithMask(long mask) throws UnsupportedOperationException { argument 58 public Address xorWithMask(long mask) throws UnsupportedOperationException { argument
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/ |
H A D | WindbgOopHandle.java | 50 public Address andWithMask(long mask) throws UnsupportedOperationException { argument 54 public Address orWithMask(long mask) throws UnsupportedOperationException { argument 58 public Address xorWithMask(long mask) throws UnsupportedOperationException { argument
|
/openjdk7/langtools/test/tools/javac/ |
H A D | StrictAbstract.java | 55 int mask=Modifier.ABSTRACT | Modifier.STRICT; 56 if ((m.getModifiers() & mask) == mask) throw new Error();
|
/openjdk7/hotspot/src/share/vm/libadt/ |
H A D | port.cpp | 60 int ff1( uint32 mask ) 65 if( mask&i ) return n; 71 int fh1( uint32 mask ) 76 if( mask&i ) return n; 88 cnt = (-cnt)&31; // Flip sign; mask extra shift bits
|
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/ |
H A D | BerEncoder.java | 350 int mask = 0x7f800000 ; 353 while (((mask & v) == mask) && (byteNeeded > 1)) { 354 mask = mask >> 8 ; 359 while (((mask & v) == 0) && (byteNeeded > 1)) { 360 mask = mask >> 8 ; 380 long mask = 0x7f80000000000000L ; 383 while (((mask [all...] |
/openjdk7/jdk/test/sun/security/smartcardio/ |
H A D | TestTransmit.java | 72 byte mask = response.mask[i]; 73 if ((received[i] & response.mask[i]) != response.bytes[i]) { 88 final byte[] mask; field in class:TestTransmit.Bytes 89 Bytes(byte[] bytes, byte[] mask) { argument 91 this.mask = mask; 99 ByteArrayOutputStream mask = new ByteArrayOutputStream(n >> 1); 112 mask.write(0); 121 mask [all...] |
/openjdk7/jdk/src/windows/classes/sun/nio/fs/ |
H A D | WindowsSecurityDescriptor.java | 227 // map access mask 228 int mask = unsafe.getInt(aceAddress + OFFSETOF_ACCESS_MASK); 230 if ((mask & FILE_READ_DATA) > 0) 232 if ((mask & FILE_WRITE_DATA) > 0) 234 if ((mask & FILE_APPEND_DATA ) > 0) 236 if ((mask & FILE_READ_EA) > 0) 238 if ((mask & FILE_WRITE_EA) > 0) 240 if ((mask & FILE_EXECUTE) > 0) 242 if ((mask & FILE_DELETE_CHILD ) > 0) 244 if ((mask [all...] |
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/ |
H A D | ServicePermission.java | 125 // the actions mask 126 private transient int mask; field in class:ServicePermission 156 private void init(String servicePrincipal, int mask) { argument 161 if ((mask & ALL) != mask) 162 throw new IllegalArgumentException("invalid actions mask"); 164 this.mask = mask; 184 return ((this.mask & that.mask) 237 getActions(int mask) argument [all...] |
/openjdk7/jdk/src/share/classes/java/util/ |
H A D | PropertyPermission.java | 113 * The actions mask. 116 private transient int mask; field in class:PropertyPermission 130 * @param mask the actions mask to use. 134 private void init(int mask) argument 137 if ((mask & ALL) != mask) 138 throw new IllegalArgumentException("invalid actions mask"); 140 if (mask == NONE) 141 throw new IllegalArgumentException("invalid actions mask"); 334 getActions(int mask) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/ |
H A D | BufferedMaskFill.java | 76 final byte[] mask, 88 // we adjust the mask length so that the mask ends on a 91 if (mask != null) { 92 // we adjust the mask length so that the mask ends on a 94 maskBytesRequired = (mask.length + 3) & (~3); 96 // mask not needed 104 // process the queue first and then enqueue the mask 114 if (mask ! 73 MaskFill(SunGraphics2D sg2d, SurfaceData sData, Composite comp, final int x, final int y, final int w, final int h, final byte[] mask, final int maskoff, final int maskscan) argument 142 maskFill(int x, int y, int w, int h, int maskoff, int maskscan, int masklen, byte[] mask) argument [all...] |