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

<<1112131415

/openjdk7/hotspot/src/share/vm/opto/
H A Dlibrary_call.cpp919 BoolTest::mask le_or_eq = (never_negative ? BoolTest::eq : BoolTest::le);
1954 BoolTest::mask btest = bol->as_Bool()->_test._test;
1978 BoolTest::mask best_btest = BoolTest::illegal;
1985 BoolTest::mask btest = bol->as_Bool()->_test._test;
3089 // Fall through if (mods & mask) == bits, take the guard otherwise.
3095 Node* mask = intcon(modifier_mask); local
3097 Node* mbit = _gvn.transform( new (C) AndINode(mods, mask) );
3430 BoolTest::mask btest = BoolTest::lt; // correct for testing is_[obj]array
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 Dmemnode.hpp448 Node *Ideal_masked_input (PhaseGVN *phase, uint mask);
1013 virtual const RegMask &in_RegMask(uint) const; // mask for RawAddress
H A Dreg_split.cpp64 // Get a SpillCopy node with wide-enough masks. Use the 'wide-mask', the
65 // wide ideal-register spill-mask if possible. If the 'wide-mask' does
66 // not cover the input (or output), use the input (or output) mask instead.
95 } else { // wide ideal mask does not overlap with o_mask
98 // Does the ideal-reg-mask overlap with o_mask? I.e., can I use
246 // gather_lrg_masks will add the flags bit to its mask, and
493 assert(!lrgs(bidx).mask().is_AllStack(),"AllStack should color");
983 // Grab register mask info
H A Dmemnode.cpp2428 // Check for a useless mask before a partial-word store
2430 // If (conIa & mask == mask) this simplifies to
2432 Node *StoreNode::Ideal_masked_input(PhaseGVN *phase, uint mask) { argument
2436 if( t && t->is_con() && (t->get_con() & mask) == mask ) {
2492 // If the store is from an AND mask that leaves the low bits untouched, then
2508 // If the store is from an AND mask that leaves the low bits untouched, then
H A Dsubnode.cpp1088 static Node *clone_cmp( Node *cmp, Node *cmp1, Node *cmp2, PhaseGVN *gvn, BoolTest::mask test ) {
H A Dloopnode.cpp299 BoolTest::mask bt = test->_test._test;
813 BoolTest::mask bt = cl->loopexit()->test_trip();
1019 // %%% This check should match any mask of 2**K-1.
/openjdk7/jdk/src/share/classes/java/math/
H A DBigInteger.java172 * This mask is used to obtain the value of an int as if it were unsigned.
502 // Generate random bytes and mask out any excess bits
2888 int mask = -1 >>> (8*(3-numBytesToTransfer));
2889 result[i] = ~result[i] & mask;
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_image_proto.h1318 const mlib_image *mask,
1327 const mlib_image *mask,
H A Dawt_ImagingLib.c1173 unsigned int mask = NLUT-1; local
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp2216 int mask = LIR_OpArrayCopy::src_objarray|LIR_OpArrayCopy::dst_objarray; local
2217 if ((flags & mask) != mask) {
2219 assert(flags & mask, "one of the two should be known to be an object array");
H A DtemplateTable_sparc.cpp1652 int mask = ((1 << Tier0BackedgeNotifyFreqLog) - 1) << InvocationCounter::count_shift;
1661 __ increment_mask_and_jump(mdo_backedge_counter, increment, mask, G3_scratch, Lscratch,
1670 __ increment_mask_and_jump(backedge_counter, increment, mask, G3_scratch, Lscratch,
2302 // Make sure we don't need to mask Rflags after the above shift
2591 // Make sure we don't need to mask Rflags after the above shift
2657 // Make sure we don't need to mask Rflags after the above shift
3011 // Make sure we don't need to mask flags after the above shift
3070 // Make sure we don't need to mask Rret after the above shift
3113 // Make sure we don't need to mask Rret after the above shift
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRAssembler_x86.cpp3300 int mask = LIR_OpArrayCopy::src_objarray|LIR_OpArrayCopy::dst_objarray; local
3301 if ((flags & mask) != mask) {
3303 assert(flags & mask, "one of the two should be known to be an object array");
H A DstubGenerator_x86_64.cpp292 __ andl(rax, MXCSR_MASK); // Only check control and mask bits
747 __ andl(rax, MXCSR_MASK); // Only check control and mask bits
934 address generate_fp_mask(const char *stub_name, int64_t mask) { argument
939 __ emit_data64( mask, relocInfo::none );
940 __ emit_data64( mask, relocInfo::none );
3040 // can optionally specify that the shuffle mask is already in an xmmregister
H A DtemplateTable_x86_32.cpp1632 int mask = ((1 << Tier0BackedgeNotifyFreqLog) - 1) << InvocationCounter::count_shift; local
1641 __ increment_mask_and_jump(mdo_backedge_counter, increment, mask,
1647 __ increment_mask_and_jump(Address(rcx, be_offset), increment, mask, local
2427 // Make sure we don't need to mask rcx after the above shift
2956 // Make sure we don't need to mask flags after the above shift
H A DtemplateTable_x86_64.cpp1661 int mask = ((1 << Tier0BackedgeNotifyFreqLog) - 1) << InvocationCounter::count_shift; local
1670 __ increment_mask_and_jump(mdo_backedge_counter, increment, mask,
1676 __ increment_mask_and_jump(Address(rcx, be_offset), increment, mask, local
2337 // Make sure we don't need to mask edx after the above shift
2487 // Make sure we don't need to mask rcx after the above shift
3020 // Make sure we don't need to mask flags after the above shift
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DAnyByteBinary.h108 srcpixel, xorpixel, mask) \
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXTextAreaPeer.java80 public long filterEvents(long mask) { argument
/openjdk7/jdk/src/share/native/sun/java2d/opengl/J2D_GL/
H A Dglext.h3516 typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
3517 typedef void (APIENTRYP PFNGLSTENCILMASKSEPARATEPROC) (GLenum face, GLuint mask);
4605 typedef void (APIENTRYP PFNGLDEFORMSGIXPROC) (GLbitfield mask);
4606 typedef void (APIENTRYP PFNGLLOADIDENTITYDEFORMATIONMAPSGIXPROC) (GLbitfield mask);
5480 typedef void (APIENTRYP PFNGLTBUFFERMASK3DFXPROC) (GLuint mask);
6394 typedef void (APIENTRYP PFNGLSTENCILFUNCSEPARATEATIPROC) (GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask);
/openjdk7/jdk/src/share/classes/java/awt/
H A DWindow.java1231 void adjustListeningChildrenOnParent(long mask, int num) { argument
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp207 bool check_value_mask(intptr_t mask, intptr_t masked_value) const { argument
208 return (value() & mask) == masked_value;
H A Dc1_LIRGenerator.cpp3058 LIR_Opr mask = load_immediate(frequency << InvocationCounter::count_shift, T_INT); local
3059 __ logical_and(result, mask, result);
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrtran.c2489 png_byte mask = (png_byte)((((int)0xf0 >> shift[0]) & (int)0xf0) | local
2495 *bp++ &= mask;
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp129 int attr, int mask);
1066 // initialize signal mask for this thread
1115 //Save caller's signal mask
1147 // initialize signal mask for this thread
1148 // and save the caller's signal mask
1170 // initialize signal mask for this thread
1171 // and save the caller's signal mask
1593 // Restore caller's signal mask
4693 // try to honor the signal mask
4704 // restore the signal mask
[all...]

Completed in 381 milliseconds

<<1112131415