Searched refs:mask (Results 126 - 150 of 374) sorted by relevance

1234567891011>>

/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/native/sun/awt/splashscreen/
H A Dsplashscreen_gfx_impl.c299 format->mask[0] = blueMask;
300 format->mask[1] = greenMask;
301 format->mask[2] = redMask;
302 format->mask[3] = alphaMask;
304 getMaskShift(format->mask[i], &shift, &numBits);
320 printf("mask[%d]=%08x shift[%d]=%d\n", i, (unsigned) format->mask[i], i,
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DInputLexer.java54 long mask = 0xFFFFFFFF00000000L;
55 if ((l & mask) != 0) {
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DMaskFormatter.java35 * of a <code>MaskFormatter</code> is controlled by way of a String mask
73 * is not the case. The mask is on a per character basis, and will thus
81 * code block is equivalent to a mask of '0xHHH' with no invalid/valid
89 * less than the length of the mask, two things can happen. Either
106 * the mask "###-####" and current value "555-1212". Using the right
126 * <li>If the inserted character matches the mask for the next non-literal
153 // Potential values in mask.
165 /** The user specified mask. */
166 private String mask; field in class:MaskFormatter
177 * fill the mask
204 MaskFormatter(String mask) argument
216 setMask(String mask) argument
486 append(StringBuilder result, String value, int[] index, String placeholder, MaskCharacter[] mask) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse.hpp530 float branch_prediction(float &cnt, BoolTest::mask btest, int target_bci);
532 bool seems_stable_comparison(BoolTest::mask btest, Node* c);
534 void do_ifnull(BoolTest::mask btest, Node* c);
535 void do_if(BoolTest::mask btest, Node* c);
537 void adjust_map_after_if(BoolTest::mask btest, Node* c, float prob,
539 void sharpen_type_after_if(BoolTest::mask btest,
542 IfNode* jump_if_fork_int(Node* a, Node* b, BoolTest::mask mask);
H A Difg.cpp311 const RegMask &rm = lrgs(r).mask();
317 if( rm.overlap( lrgs(l).mask() ) )
416 if( lrgs(lidx).mask().is_UP() &&
420 lrgs(lidx).mask().overlap(*Matcher::idealreg2regmask[Op_RegI]) )
432 if( lrgs(lidx).mask().is_UP() &&
443 if (lrg->mask().is_UP() && lrg->mask_size()) {
455 } else if( lrg->mask().overlap(*Matcher::idealreg2regmask[Op_RegI]) ) {
526 if (lrg.mask().is_UP() && lrg.mask_size()) {
534 } else if( lrgs(lidx).mask().overlap(*Matcher::idealreg2regmask[Op_RegI]) ) {
589 RegMask itmp = lrgs(r).mask();
[all...]
H A Dmulnode.cpp458 int mask = max_juint >> shift; local
459 if ((mask & con) == mask) // If AND is useless, skip it
469 // Special case constant AND mask
472 const int mask = t2->get_con(); local
478 (mask & 0xFFFF0000) ) // Can we make a smaller mask?
479 return new (phase->C) AndINode(load,phase->intcon(mask&0xFFFF));
484 if (lop == Op_LoadS && (mask & 0xFFFF0000) == 0 ) {
490 return new (phase->C) AndINode(ldus, phase->intcon(mask
586 jlong mask = max_julong >> shift; local
600 const jlong mask = t2->get_con(); local
900 const Node *mask = in(1); local
1106 const int mask = right_n_bits(BitsPerJavaInteger - con); local
1253 const jlong mask = (((jlong)CONST64(1) << (jlong)(BitsPerJavaLong - con)) -1); local
[all...]
H A DindexSet.cpp199 // the RegMask mask. If the degree of the union becomes exceeds
206 const RegMask &mask ) {
242 if (mask.overlap(lrg.mask())) {
244 if( !lrg.mask().is_AllStack() ) {
259 if (mask.overlap(lrg.mask())) {
261 if( !lrg.mask().is_AllStack() ) {
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_ImageConvCopyEdge_Fp.c51 * cmask Channel mask to indicate the channels to be convolved.
73 #define EDGES(chan, type, mask) \
84 if ((mask & testchan) == 0) { \
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_c_ImageConvClearEdge.c51 * cmask Channel mask to indicate the channels to be convolved.
70 #define EDGES(chan, type, mask) \
80 if ((mask & testchan) == 0) { \
H A Dmlib_c_ImageConvCopyEdge.c52 * cmask Channel mask to indicate the channels to be convolved.
74 #define EDGES(chan, type, mask) \
85 if ((mask & testchan) == 0) { \
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/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/share/classes/com/sun/jmx/snmp/IPAcl/
H A DNetMaskImpl.java42 * This class is used to represent a subnet mask (a group of hosts matching the same
43 * IP mask).
79 "The mask is the complete address, strange..." + addrLength);
116 byte mask = 0;
118 mask |= (1 << (7 - i));
122 "Mask value : " + (mask & 0xFF));
125 byte maskedValue = (byte) ((int)toDeal & (int)mask);
156 * Constructs a group using the specified subnet mask.
159 * @exception UnknownHostException if the subnet mask cann't be built.
175 // we don't need to add members because the ip address is a subnet mask
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.h57 /* XWMHints.flags is declared long, so 'mask' argument is declared long too */
58 extern void awt_wm_removeSizeHints(Widget shell, long mask);
/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/classes/sun/java2d/d3d/
H A DD3DMaskFill.java64 byte[] mask);
62 maskFill(int x, int y, int w, int h, int maskoff, int maskscan, int masklen, byte[] mask) argument
/openjdk7/jdk/src/windows/native/java/net/
H A DNetworkInterface.h38 short mask; member in struct:_netaddr
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Cursor.h89 BYTE *mask; member in class:AwtCursor
/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/classes/sun/text/normalizer/
H A DNormalizerBase.java1043 int/*unsigned*/ mask,
1066 if((norm32&mask)==0) {
1084 int/*unsigned*/ mask,
1120 decompQCMask=(ccOrQCMask<<2)&0xf; /*decomposition quick check mask*/
1129 int/*mask*/ mask,
1139 isBoundary=obj.isPrevBoundary(src, minC, mask, chars);
1183 int/*unsigned*/ mask;
1194 mask = mode.getMask();
1228 minC, mask,buffe
1041 getPrevNorm32(UCharacterIterator src, int minC, int mask, char[] chars) argument
1082 isPrevBoundary(UCharacterIterator src, int minC, int mask, char[] chars) argument
1126 findPreviousIterationBoundary(UCharacterIterator src, IsPrevBoundary obj, int minC, int mask, char[] buffer, int[] startIndex) argument
1267 isNextBoundary(UCharacterIterator src, int minC, int mask, int[] chars) argument
1278 getNextNorm32(UCharacterIterator src, int minC, int mask, int[] chars) argument
1348 findNextIterationBoundary(UCharacterIterator src, IsNextBoundary obj, int minC, int mask, char[] buffer) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLMaskFill.java64 byte[] mask);
62 maskFill(int x, int y, int w, int h, int maskoff, int maskscan, int masklen, byte[] mask) argument
/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 DDevPollArrayWrapper.java180 void setInterest(int fd, int mask) { argument
194 byte b = (byte)mask;
195 assert (b == mask) && (b != IGNORE);
313 private native void register(int wfd, int fd, int mask); argument

Completed in 147 milliseconds

1234567891011>>