Searched refs:mask (Results 76 - 100 of 374) sorted by relevance

1234567891011>>

/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/native/sun/java2d/opengl/
H A DOGLRenderQueue.h52 #define EXTRACT_VAL(packedval, offset, mask) \
53 (((packedval) >> (offset)) & (mask))
80 * following operation represents an operation that uses an alpha mask,
H A DOGLVertexCache.h39 * mask operations.
56 * operations where the mask is null.
78 jint maskscan, void *mask);
/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/solaris/native/sun/java2d/loops/
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...]
H A Dvis_IntRgbx.c46 mlib_d64 dd, mask; local
54 mask = vis_to_double_dup(0xFF000000);
72 *(mlib_d64*)(dst + i) = vis_for(dd, mask);
90 mlib_d64 dd, mask; local
93 mask = vis_to_double_dup(0xFF000000);
114 *(mlib_d64*)dst = vis_for(dd, mask);
134 mlib_d64 dd, mask; local
142 mask = vis_to_double_dup(0xFFFFFF00);
160 *(mlib_d64*)(dst + i) = vis_fand(dd, mask);
178 mlib_d64 dd, mask; local
541 mlib_s32 i, i0, j, mask; local
591 mlib_s32 j, mask; local
644 mlib_s32 i, i0, j, mask; local
792 mlib_s32 i, i0, j, x, mask; local
846 mlib_s32 j, x, mask; local
900 mlib_s32 j, x, mask; local
965 mlib_s32 pix, mask, mask_z; local
[all...]
H A Dvis_DrawLine.c76 mlib_s32 bumpmajor, bumpminor, mask; \
107 mask = error >> 31; \
108 PTR_ADD(pPix, bumpmajor + (bumpminor &~ mask)); \
109 error += errmajor - (errminor &~ mask); \
/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/hotspot/src/share/vm/interpreter/
H A DoopMapCache.cpp43 // fills the bit mask for native calls
51 void allocate_bit_mask(); // allocates the bit mask on C heap f necessary
52 void deallocate_bit_mask(); // allocates the bit mask on C heap f necessary
170 // The expection is that the bit mask was allocated
216 uintptr_t mask = 0; local
218 for (int i = 0; i < n; i++, mask <<= bits_per_entry) {
220 if (mask == 0) {
222 mask = 1;
225 if ((value & (mask << oop_bit_number)) != 0) oop_closure->offset_do(i);
243 uintptr_t mask local
294 MaskFillerForNative(methodHandle method, uintptr_t* mask, int size) argument
407 uintptr_t mask = 1; local
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DClassValue.java528 // racing cache[i & (mask)] : null <=> Entry
542 int mask = (cache.length-1);
543 int home = (classValue.hashCodeForCache & mask);
551 Entry<?> e = cache[i & mask];
559 cache[i & mask] = Entry.DEAD_ENTRY;
563 cache[pos2 & mask] = ((entryDislocation(cache, pos2, e2) < PROBE_LIMIT)
578 int mask = (cache.length-1);
579 return (pos - cv.hashCodeForCache) & mask;
619 int mask = (cache.length-1);
622 Entry<?> e = cache[i & mask];
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpEngineId.java143 long mask = 0xFF;
153 engineid[5] = (byte) ( (time & (mask << 56)) >>> 56 );
154 engineid[6] = (byte) ( (time & (mask << 48) ) >>> 48 );
155 engineid[7] = (byte) ( (time & (mask << 40) ) >>> 40 );
156 engineid[8] = (byte) ( (time & (mask << 32) ) >>> 32 );
157 engineid[9] = (byte) ( (time & (mask << 24) ) >>> 24 );
158 engineid[10] = (byte) ( (time & (mask << 16) ) >>> 16 );
159 engineid[11] = (byte) ( (time & (mask << 8) ) >>> 8 );
160 engineid[12] = (byte) (time & mask);
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DMaskTileManager.java32 * We render non-antialiased geometry (consisting of rectangles) into a mask,
34 * To avoid mask-allocations of large size, MaskTileManager splits
91 * Adds a rectangle to the mask.
98 * Adds a line to the mask.
148 * Uploads aa geometry generated for maskblit/fill into the mask pixmap.
150 public int uploadMask(int w, int h, int maskscan, int maskoff, byte[] mask) { argument
153 if (mask != null) {
156 con.putMaskImage(maskPixmap, maskGC, mask, 0, 0, 0, 0,
167 * Clears the area of the mask-pixmap used for uploading aa coverage values.
169 public void clearUploadMask(int mask, in argument
[all...]
/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
H A DD3DMaskCache.h34 * mask operations.
51 * operations where the mask is null.
72 int maskscan, void *mask);
/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/solaris/classes/sun/awt/X11/
H A DXCustomCursor.java108 long mask = XlibWrapper.XCreateBitmapFromData(display,root_window,nativeAndMask,width,height);
110 long cursor = XlibWrapper.XCreatePixmapCursor(display,source,mask,fore_color.pData,back_color.pData,xHotSpot,yHotSpot);
115 XlibWrapper.XFreePixmap(display,mask);
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DNumericShaper.java77 * <p><b>Bit mask- and enum-based Unicode ranges</b></p>
81 * mask-based ones, such as {@link #ARABIC NumericShaper.ARABIC}, and
83 * Multiple ranges can be specified by ORing bit mask-based constants,
93 * The enum-based ranges are a super set of the bit mask-based ones.
144 * mask-based values (e.g., {@link NumericShaper#ARABIC}), and
145 * supports more Unicode ranges than the bit mask-based ones. For
146 * example, the following code using the bit mask:
334 private static Set<Range> maskToRangeSet(int mask) { argument
338 if ((mask & (1 << i)) != 0) {
376 private int mask; field in class:NumericShaper
906 getKeyFromMask(int mask) argument
1035 NumericShaper(int key, int mask) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharJISAutoDetect.java126 int mask = firstmask & secondmask;
127 if (mask == EUCJP_MASK) {
131 if ((mask == SJIS2B_MASK) || (mask == SJIS1B_MASK)
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageConvClearEdge_Fp.c52 * cmask Channel mask to indicate the channels to be convolved.
71 #define EDGES(chan, type, mask) \
81 if ((mask & testchan) == 0) { \

Completed in 117 milliseconds

1234567891011>>