Searched defs:mask (Results 151 - 175 of 220) sorted by relevance

123456789

/openjdk7/hotspot/src/share/vm/adlc/
H A DarchDesc.cpp821 // Construct the name of the register mask.
831 const char *mask = "_mask"; local
832 int length = (int)strlen(rc_name) + (int)strlen(mask) + 5;
834 sprintf(regMask,"%s%s()", rc_name, mask);
840 // Convert a register class name to its register mask.
851 // Construct the name of the register mask.
H A Dformsopt.hpp113 // Return register mask, compressed chunk and register #
135 // The chunk and register mask bits define info for register allocation
176 // Returns the lowest numbered register in the mask.
287 unsigned mask() const { return _resmask; }; function in class:ResourceForm
H A Doutput_h.cpp96 fprintf(fp_hpp, "\n// Size of register-mask in ints\n");
234 fprintf(fp," BoolTest::mask _c%d;\n", i);
298 fprintf(fp,is_ideal_bool ? "BoolTest::mask c%d" : "int32 c%d", i);
346 fprintf(fp,"BoolTest::mask c%d", i);
732 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask(uint mask) : _mask(mask) {}\n\n");
735 fprintf(fp_hpp, " Pipeline_Use_Cycle_Mask(uint64_t mask) : _mask(mask) {}\n\n");
767 fprintf(fp_hpp, "uint mask%d%s", l, l < masklen ? ", " : ") : ");
769 fprintf(fp_hpp, "_mask%d(mask
820 int mask = _pipeline->_resdict[resource]->is_resource()->mask(); local
2187 int mask = resform->mask(); local
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Canonicalizer.cpp307 jint mask = ~(~0 << (32 - shift)); local
308 if (shift == 0) mask = ~0;
312 case Bytecodes::_iushr: set_constant((value >> shift) & mask); return;
317 jlong mask = ~(~jlong_cast(0) << (64 - shift)); local
318 if (shift == 0) mask = ~jlong_cast(0);
322 case Bytecodes::_lushr: set_constant((value >> shift) & mask); return;
537 jint mask = op2->y()->type()->as_IntConstant()->value(); local
544 // the mask doesn't include the sign bit the cast isn't needed.
545 if (safebits && (mask & ~safebits) == 0) {
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DGenerateCharacter.java574 static void addExProp(long[] map, PropList propList, String prop, long mask) { argument
579 map[cp] |= mask;
1567 int mask = (1 << (sizes[k] - offset)) - 1;
1569 "(" + shifted + "&0x" + hex(mask) + ")";
1571 (mask == 0) ? access : "(" + access + "|" + masked + ")";
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEventController.cpp119 jlong mask = bit_for(event_type); local
121 bits |= mask;
123 bits &= ~mask;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DX11Color.c355 awt_fill_imgcv(ImgConvertFcn **array, int mask, int value, ImgConvertFcn fcn) argument
360 if ((i & mask) == value) {
H A DmultiVis.c1119 int32_t mask; local
1134 mask = VisualScreenMask;
1136 *pVisuals = XGetVisualInfo(display, mask, &getVisInfo, numVisuals);
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageAffine_BC.c471 mlib_s32 cols, i, mask, off; local
493 mask = vis_edge8(dstPixelPtr, dstLineEnd);
519 vis_pst_8(res, dp++, mask);
520 vis_pst_8(res, dp, ~mask);
530 vis_pst_8(res, dp++, mask);
531 vis_pst_8(res, dp, ~mask);
536 vis_pst_8(res, dp++, mask);
537 vis_pst_8(res, dp, ~mask);
1054 mlib_s32 mask, emask, gsrd; local
1074 mask
[all...]
H A Dmlib_v_ImageAffine_BC_S16.c513 mlib_s32 cols, i, mask, emask; local
540 mask = vis_edge16(dstPixelPtr, dstLineEnd);
562 vis_pst_16(res, dp++, mask);
563 vis_pst_16(res, dp, ~mask);
571 vis_pst_16(res, dp++, mask);
572 vis_pst_16(res, dp, ~mask);
577 vis_pst_16(res, dp++, mask);
578 vis_pst_16(res, dp, ~mask);
588 vis_pst_16(res, dp++, mask);
589 vis_pst_16(res, dp, ~mask);
1321 mlib_s32 cols, i, mask, gsrd; local
[all...]
H A Dmlib_v_ImageAffine_BC_U16.c498 mlib_s32 cols, i, mask, emask; local
526 mask = vis_edge16(dstPixelPtr, dstLineEnd);
548 vis_pst_16(res, dp++, mask);
549 vis_pst_16(res, dp, ~mask);
557 vis_pst_16(res, dp++, mask);
558 vis_pst_16(res, dp, ~mask);
563 vis_pst_16(res, dp++, mask);
564 vis_pst_16(res, dp, ~mask);
574 vis_pst_16(res, dp++, mask);
575 vis_pst_16(res, dp, ~mask);
1308 mlib_s32 cols, i, mask, gsrd; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_FourByteAbgr.c1131 mlib_s32 i, j, x, mask; local
1180 mask = vis_fcmplt32(dd, dzero);
1182 vis_pst_32(dd, dst, mask);
1211 mlib_s32 i, j, x, mask; local
1266 mask = vis_fcmplt32(dd, dzero);
1269 vis_pst_32(dd, dst, mask);
1399 mlib_s32 i, j, x, mask; local
1453 mask = vis_fcmplt32(dd, dzero);
1455 vis_pst_32(dd, dst, mask);
1483 mlib_s32 i, j, x, mask; local
1869 mlib_s32 pix, mask; local
[all...]
/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/share/native/sun/awt/libpng/
H A Dpngset.c1196 png_set_invalid(png_structp png_ptr, png_infop info_ptr, int mask) argument
1199 info_ptr->valid &= ~mask;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWM.java807 * Remove size hints specified by the mask.
810 static void removeSizeHints(XDecoratedPeer window, long mask) { argument
811 mask &= XUtilConstants.PMaxSize | XUtilConstants.PMinSize;
816 if ((hints.get_flags() & mask) == 0) {
820 hints.set_flags(hints.get_flags() & ~mask);
831 * If MWM_DECOR_ALL bit is set, then the rest of the bit-mask is taken
849 * If MWM_FUNC_ALL bit is set, then the rest of the bit-mask is taken
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRBackendNative.java84 public native void renderComposite(byte op, int src, int mask, argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DToken.java173 static Token.ModifierToken createModifierGroup(Token child, int add, int mask) { argument
175 return new Token.ModifierToken(child, add, mask);
1385 final int mask; field in class:Token.ModifierToken
1387 ModifierToken(Token tok, int add, int mask) { argument
1391 this.mask = mask;
1405 return this.mask;
1411 +(this.mask == 0 ? "" : REUtil.createOptionString(this.mask))
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.cpp150 void methodOopDesc::mask_for(int bci, InterpreterOopMap* mask) { argument
170 instanceKlass::cast(method_holder())->mask_for(h_this, bci, mask);
/openjdk7/hotspot/src/share/vm/opto/
H A Dchaitin.cpp344 gather_lrg_masks( true ); // Collect intersect mask
493 // Live ranges record the highest register in their mask.
507 lrg.Remove(hi); // Yank from mask
508 int lo = lrg.mask().find_first_elem(); // Find lo
612 // Limit result register mask to acceptable registers
629 const RegMask &lrgmask = lrg.mask();
774 // Prepare register mask for each input
802 // Limit result register mask to acceptable registers.
810 // mask untrimmed by the call. This encourages more coalescing.
818 const RegMask &lrgmask = lrg.mask();
1154 int mask = lrg.num_regs()-1; local
1662 const RegMask *mask = C->matcher()->idealreg2spillmask[Op_RegI]; local
[all...]
H A Dparse1.cpp1928 Node* mask = _gvn.transform(new (C) AndINode(access_flags, intcon(JVM_ACC_HAS_FINALIZER))); local
1929 Node* check = _gvn.transform(new (C) CmpINode(mask, intcon(0)));
H A Dparse2.cpp132 BoolTest::mask btest = BoolTest::lt;
168 IfNode* Parse::jump_if_fork_int(Node* a, Node* b, BoolTest::mask mask) { argument
170 Node *tst = _gvn.transform( new (C) BoolNode( cmp, mask));
171 IfNode *iff = create_and_map_if( control(), tst, ((mask == BoolTest::eq) ? PROB_STATIC_INFREQUENT : PROB_FAIR), COUNT_UNKNOWN );
701 Node *mask = _gvn.intcon((divisor - 1)); local
711 Node *andn= _gvn.transform( new (C) AndINode(neg, mask) );
715 Node *andx = _gvn.transform( new (C) AndINode(a, mask) );
841 BoolTest::mask btest,
901 bool Parse::seems_stable_comparison(BoolTest::mask btes
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DToolkit.java1368 * @return the modifier mask on the <code>Event</code> class
2062 // OR the eventMask into the selectiveListener's event mask.
2067 long mask = eventMask;
2070 if (mask == 0) {
2073 if ((mask & 1L) != 0) { // Always test bit 0.
2076 mask >>>= 1; // Right shift, fill with zeros on left.
2161 * the event mask for the given listener.
2210 * the event mask for the given listener.
2329 public void orEventMasks(long mask) { argument
2330 eventMask |= mask;
2344 SelectiveAWTEventListener(AWTEventListener l, long mask) argument
[all...]
H A DWindow.java1231 void adjustListeningChildrenOnParent(long mask, int num) { argument
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dinterp_masm_x86_32.cpp260 assert(ConstantPoolCacheEntry::bytecode_1_mask == ConstantPoolCacheEntry::bytecode_2_mask, "common mask");
1413 // Jump if ((*counter_addr += increment) & mask) satisfies the condition.
1415 int increment, int mask,
1423 andl(scratch, mask);
1414 increment_mask_and_jump(Address counter_addr, int increment, int mask, Register scratch, bool preloaded, Condition cond, Label* where) argument
H A Dinterp_masm_x86_64.cpp263 assert(ConstantPoolCacheEntry::bytecode_1_mask == ConstantPoolCacheEntry::bytecode_2_mask, "common mask");
1473 // Jump if ((*counter_addr += increment) & mask) satisfies the condition.
1475 int increment, int mask,
1483 andl(scratch, mask);
1474 increment_mask_and_jump(Address counter_addr, int increment, int mask, Register scratch, bool preloaded, Condition cond, Label* where) argument

Completed in 641 milliseconds

123456789