Searched defs:mask (Results 26 - 50 of 220) sorted by relevance

123456789

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Cursor.h89 BYTE *mask; member in class:AwtCursor
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinftrees.c76 unsigned mask; /* mask for low root bits */ local
233 mask = used - 1; /* mask for comparing low */
284 if (len > root && (huff & mask) != low) {
308 low = huff & mask;
327 if (drop != 0 && (huff & mask) != low) {
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageConvClearEdge_Bit.c52 * 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...]
/openjdk7/jdk/test/java/util/concurrent/BlockingQueue/
H A DLoopHelpers.java84 private static final long mask = (1L << 48) - 1; field in class:LoopHelpers.SimpleRandom
93 long nextseed = (seed * multiplier + addend) & mask;
/openjdk7/jdk/test/java/util/concurrent/ConcurrentHashMap/
H A DLoopHelpers.java84 private static final long mask = (1L << 48) - 1; field in class:LoopHelpers.SimpleRandom
93 long nextseed = (seed * multiplier + addend) & mask;
/openjdk7/jdk/test/java/util/concurrent/ConcurrentQueues/
H A DLoopHelpers.java84 private static final long mask = (1L << 48) - 1; field in class:LoopHelpers.SimpleRandom
93 long nextseed = (seed * multiplier + addend) & mask;
/openjdk7/jdk/test/java/util/concurrent/Exchanger/
H A DLoopHelpers.java83 private static final long mask = (1L << 48) - 1; field in class:LoopHelpers.SimpleRandom
92 long nextseed = (seed * multiplier + addend) & mask;
/openjdk7/jdk/test/java/util/concurrent/ExecutorCompletionService/
H A DLoopHelpers.java83 private static final long mask = (1L << 48) - 1; field in class:LoopHelpers.SimpleRandom
92 long nextseed = (seed * multiplier + addend) & mask;
/openjdk7/jdk/test/java/util/concurrent/FutureTask/
H A DLoopHelpers.java83 private static final long mask = (1L << 48) - 1; field in class:LoopHelpers.SimpleRandom
92 long nextseed = (seed * multiplier + addend) & mask;
/openjdk7/jdk/test/java/util/concurrent/locks/ReentrantLock/
H A DLoopHelpers.java83 private static final long mask = (1L << 48) - 1; field in class:LoopHelpers.SimpleRandom
92 long nextseed = (seed * multiplier + addend) & mask;
/openjdk7/jdk/test/java/util/concurrent/locks/ReentrantReadWriteLock/
H A DLoopHelpers.java83 private static final long mask = (1L << 48) - 1; field in class:LoopHelpers.SimpleRandom
92 long nextseed = (seed * multiplier + addend) & mask;
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DBufferedMaskFill.java76 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...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLMaskFill.c42 * the mask texture tile. In picture form, this process looks like:
52 * Cx = coverage value from mask tile
60 * with the coverage values from the mask texture tile (provided on texture
73 * Cx = coverage value from mask tile
79 * w,h - width/height of the mask tile
82 * sx1,sy1 - upper left corner of the mask tile source region
83 * sx2,sy2 - lower left corner of the mask tile source region
84 * sx,sy - "current" upper left corner of the mask tile region of interest
137 unsigned char *mask; local
142 mask
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmplogic.c117 mp_digit mask; local
129 mask = (mp_digit)1 << bitNum;
131 MP_DIGIT(a,ix) |= mask;
133 MP_DIGIT(a,ix) &= ~mask;
173 mp_digit mask = ((1 << numBits) - 1); local
175 ARGCHK(numBits < CHAR_BIT * sizeof mask, MP_BADARG);
180 mask &= (digit[0] >> rshift);
182 mask &= ((digit[0] >> rshift) | (digit[1] << (MP_DIGIT_BIT - rshift)));
184 return (mp_err)mask;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAtomList.java122 * Returns a subset of a list which is intersection of this set and set build by mapping <code>mask</code> in
125 public XAtomList subset(int mask, Map<Integer, XAtom> mapping) { argument
130 if ( (mask & bits.intValue()) == bits.intValue() ) {
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRMaskBlit.java66 int maskscan, int masklen, byte[] mask);
70 int height, byte[] mask, int maskoff, int maskscan) {
86 uploadMask(width, height, maskscan, maskoff, mask);
64 maskBlit(long srcXsdo, long dstxsdo, int srcx, int srcy, int dstx, int dsty, int w, int h, int maskoff, int maskscan, int masklen, byte[] mask) argument
68 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 DXRMaskFill.java94 int maskoff, int maskscan, int masklen, byte[] mask);
98 final byte[] mask, final int maskoff, final int maskscan) {
108 int maskPict = maskBuffer.getMaskBuffer().uploadMask(w, h, maskscan, maskoff, mask);
93 maskFill(long xsdo, int x, int y, int w, int h, int maskoff, int maskscan, int masklen, byte[] mask) argument
96 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
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DOopMapCacheEntry.java60 // compute bit mask size
79 mask.atPut(entryIdx, true);
83 // verify bit mask
85 Assert.that(verifyMask(vars, stack, maxLocals, stackTop), "mask could not be verified");
92 private Method method; // the method for which the mask is valid
93 private int bci; // the bci for which the mask is valid
94 private int maskSize; // the required mask size in bits
95 private BitMap mask; // may be null if mask is empty field in class:OopMapCacheEntry
101 return mask
[all...]
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DServicePermission.java125 // 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/javax/smartcardio/
H A DCardPermission.java116 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/classes/sun/font/
H A DEAttribute.java70 /* package */ final int mask; field in class:EAttribute
74 mask = 1 << ordinal();
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DPackedColorModel.java44 * in bits indicated by bit masks. Each bit mask must be contiguous and
93 * Constructs a <code>PackedColorModel</code> from a color mask array,
95 * contain each of the color samples, and an alpha mask. Color
98 * the <code>ColorSpace</code>. All of the bits in each mask
114 * @param alphaMask specifies the mask representing
142 // Get the mask offset and #bits
159 * mask must be contiguous and fit in the specified number of
172 * @param rmask specifies the mask representing
175 * @param gmask specifies the mask representing
178 * @param bmask specifies the mask representin
263 DecomposeMask(int mask, int idx, String componentName) argument
469 countBits(int mask) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DPropertyPermission.java113 * 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...]
H A DRandom.java82 private static final long mask = (1L << 48) - 1; field in class:Random
131 return (seed ^ multiplier) & mask;
188 nextseed = (oldseed * multiplier + addend) & mask;
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DThreadLocalRandom.java68 private static final long mask = (1L << 48) - 1; field in class:ThreadLocalRandom
125 rnd = (seed ^ multiplier) & mask;
129 rnd = (rnd * multiplier + addend) & mask;

Completed in 49 milliseconds

123456789