Searched refs:mask (Results 251 - 275 of 374) sorted by relevance

<<1112131415

/openjdk7/hotspot/src/share/vm/code/
H A Ddependencies.hpp211 static bool dept_in_mask(DepType dept, int mask) { argument
212 return (int)dept >= 0 && dept < TYPE_LIMIT && ((1<<dept) & mask) != 0;
H A DvtableStubs.cpp138 return (is_vtable_stub ? ~hash : hash) & mask;
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTEvent.m44 * key pad (i.e. using event mask to distinguish between period on regular
347 // Mask off just the keyboard modifiers from the event modifier mask.
566 jint mask = isExtMods? cur->javaExtMask : cur->javaMask;
567 if ((mask & javaModifiers) != 0) {
573 jint mask = isExtMods? java_awt_event_InputEvent_ALT_GRAPH_DOWN_MASK :
576 if ((mask & javaModifiers) != 0) {
/openjdk7/jdk/src/macosx/native/sun/java2d/opengl/
H A DCGLLayer.m88 - (CGLPixelFormatObj)copyCGLPixelFormatForDisplayMask:(uint32_t)mask {
/openjdk7/jdk/test/java/lang/Math/
H A DIeeeRecommendedTests.java212 // create a bit mask with (i-1) 1's in the low order
214 int mask = ~((~0)<<(i-1));
218 (rand.nextInt() & mask ) ) ;
319 // create a bit mask with (i-1) 1's in the low order
321 long mask = ~((~0L)<<(i-1));
325 (rand.nextLong() & mask ) ) ;
1477 // create a bit mask with (i-1) 1's in the low order
1479 int mask = ~((~0)<<(i-1));
1483 (rand.nextInt() & mask ) ) ;
1582 // create a bit mask wit
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerImpl.java378 int/*unsigned*/ mask) {
380 if(((norm32&mask)>0) && isNorm32LeadSurrogate(norm32)) {
531 int/*unsigned*/ mask) {
552 if((norm32&mask)==0) {
883 decompQCMask=(qcMask<<2)&0xf; // decomposition quick check mask
1256 /* mask off bit 15, the last-entry-in-the-list flag */
1945 int decompQCMask=(qcMask<<2)&0xf; /* decomposition quick check mask */
2047 public static boolean isNFSkippable(int c, NormalizerBase.Mode mode, long mask) { argument
2049 mask = mask
377 getNorm32(char[] p,int start, int mask) argument
529 getPrevNorm32(PrevArgs args, int minC, int mask) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXTrayIconPeer.java364 private void addXED(long window, XEventDispatcher xed, long mask) { argument
370 XlibWrapper.XSelectInput(XToolkit.getDisplay(), window, mask);
H A DXlibWrapper.java393 Cursor XCreatePixmapCursor(display, source, mask,
397 Pixmap mask;
402 static native long XCreatePixmapCursor(long display, long source, long mask, long fore, long back, int x, int y); argument
523 static native void XChangeActivePointerGrab(long display, int mask, argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java865 long mask;
870 mask = LocalVarFlags;
872 mask = implicit = InterfaceVarFlags;
874 mask = VarFlags;
883 mask = PRIVATE;
885 mask = ConstructorFlags;
887 mask = implicit = InterfaceMethodFlags;
889 mask = MethodFlags;
897 mask = LocalClassFlags;
901 mask |
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DRegexParser.java540 int add = 0, mask = 0, ch = -1;
555 mask |= v;
564 tok = Token.createModifierGroup(this.parseRegex(), add, mask);
570 tok = Token.createModifierGroup(this.parseRegex(), add, mask);
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.hpp317 // with the RegMask mask. If the degree of the union becomes
323 const RegMask &mask);
H A Dpostaloc.cpp175 can_use = can_use && !use_mask.is_misaligned_pair() && !def_lrg.mask().is_misaligned_pair();
581 lrgs(useidx).mask().Member(ureg_lo))) { // Nearly always adjacent
660 !lrgs(lidx).mask().Member(nreg_lo) ) { // Nearly always adjacent
663 RegMask tmp = lrgs(lidx).mask();
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DParser.jj536 /*@egen*/ {jjtn000.mask = t.image; }/*@bgen(jjtree)*/
565 /*@egen*/ {jjtn000.mask = t.image; }/*@bgen(jjtree)*/
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DNamingEventNotifier.java71 info.mask,
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dinterp_masm_x86_32.hpp191 int increment, int mask,
H A Dinterp_masm_x86_64.hpp200 int increment, int mask,
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIState.java88 return (byte)((derivedEncodedState & property.encoding.mask) >> property.encoding.shift) == property.ordinal;
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageWriter.java854 int mask = samplesPerByte - 1;
859 if ((pos++ & mask) == mask) {
867 if ((pos & mask) != 0) {
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_table.c326 BV_CHUNK_TYPE mask; local
328 mask = BV_CHUNK_MASK(i);
329 if ( (chunk & mask) != 0 ) {
331 chunk &= ~mask;
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dmlib_ImageZoom_NN.c480 mlib_u32 v, mask = mlib_bit_mask4[i]; local
482 v = (gray_val0 & ~mask) | (gray_val1 & mask);
511 DTYPE mask; local
512 MASK(mask);
558 LSHIFT(dtmp, mask, off);
563 RSHIFT(dtmp, mask, off);
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java574 * The mask should NOT be set when listeners are registered
5484 int numListening(long mask) { argument
5485 // One mask or the other, but not neither or both.
5487 if ((mask != AWTEvent.HIERARCHY_EVENT_MASK) &&
5488 (mask != AWTEvent.HIERARCHY_BOUNDS_EVENT_MASK))
5493 if ((mask == AWTEvent.HIERARCHY_EVENT_MASK &&
5496 (mask == AWTEvent.HIERARCHY_BOUNDS_EVENT_MASK &&
5573 void adjustListeningChildrenOnParent(long mask, int num) { argument
5575 parent.adjustListeningChildren(mask, num);
6030 * Enables the events defined by the specified event mask paramete
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DMetaData.java820 int mask = key.getModifiers();
826 ? new Object[]{code, mask}
827 : new Object[]{code, mask, onKeyRelease};
830 args = (mask == 0)
832 : new Object[]{ch, mask};
833 } else if (mask == 0) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Ddeoptimization.cpp622 InterpreterOopMap mask; variable
628 OopMapCache::compute_one_oop_map(mh, iframe->interpreter_frame_bci(), &mask);
690 (iframe->interpreter_frame_expression_stack_size() == mask.expression_stack_size() + callee_size_of_parameters) ||
692 (iframe->interpreter_frame_expression_stack_size() == mask.expression_stack_size() + callee_max_locals) ||
698 (iframe->interpreter_frame_expression_stack_size() == mask.expression_stack_size() + cur_invoke_parameter_size))
707 tty->print_cr(" Interpreter oop map had %d expression stack elements", mask.expression_stack_size());
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c1357 * Remove size hints specified by the mask.
1361 awt_wm_removeSizeHints(Widget shell, long mask) argument
1373 /* sanitize the mask, only do these hints */
1374 mask &= (PMaxSize|PMinSize|USPosition|PPosition);
1377 if ((hints->flags & mask) == 0) {
1385 if (mask & PMaxSize) {
1394 if (mask & PMinSize) {
1406 hints->flags &= ~mask;
1436 * If MWM_DECOR_ALL bit is set, then the rest of the bit-mask is taken
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c571 mp_digit mask; local
573 mask = ((mp_digit)1 << pow) - 1;
574 rem = DIGIT(a, 0) & mask;
2999 mp_digit mask; local
3006 mask = ((mp_digit)~0 << (MP_DIGIT_BIT - bshift));
3007 mask &= MP_DIGIT(mp, MP_USED(mp) - 1);
3009 if (MP_OKAY != (res = s_mp_pad(mp, MP_USED(mp) + dshift + (mask != 0) )))
3161 mp_digit save, next, mask; local
3166 mask = ((mp_digit)1 << d) - 1;
3169 next = DIGIT(mp, ix) & mask;
3196 mp_digit mask; local
[all...]

Completed in 269 milliseconds

<<1112131415