Searched refs:shift (Results 176 - 200 of 233) sorted by relevance

12345678910

/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DIndex8Gray.c185 jint sxinc, jint syinc, jint shift,
204 sxloc, syloc, sxinc, syinc, shift,
212 sxloc, syloc, sxinc, syinc, shift,
H A DUshortIndexed.c191 jint sxinc, jint syinc, jint shift,
210 sxloc, syloc, sxinc, syinc, shift,
216 sxloc, syloc, sxinc, syinc, shift,
H A DProcessPath.c583 /* Setting default shift for preparing to the midpoint rounding */
584 jint shift = DF_QUAD_SHIFT; local
625 shift += 2;
639 x2 = x0w + (px >> shift);
640 y2 = y0w + (py >> shift);
970 * shift of the forward differencing precision (keeping in shift variable) in
979 * shift = shift + 3
986 * shift
1021 jint shift = DF_CUB_SHIFT; local
[all...]
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DIBM933_OLD.java104 super.shift = 4;
2623 private int shift; field in class:IBM933_OLD.Encoder
2641 shift = 3;
2670 index = index1[((ch & mask1) >> shift)] + (ch & mask2);
3113 index = index1[((unicode & mask1) >> shift)] + (unicode & mask2);
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_UshortGray_FromRgb.c212 PTR_ADD(src, (syloc >> shift) * srcScan);
217 i = tmpsxloc >> shift;
229 s02 = vis_fpmerge(src[(tmpsxloc ) >> shift],
230 src[(tmpsxloc + sxinc) >> shift]);
239 i = tmpsxloc >> shift;
269 PTR_ADD(src, (syloc >> shift) * srcScan);
274 i0 = 3*(tmpsxloc >> shift);
286 i0 = 3*(tmpsxloc >> shift);
288 i1 = 3*(tmpsxloc >> shift);
297 i0 = 3*(tmpsxloc >> shift);
[all...]
H A Djava2d_Mlib.h89 jint sxinc, jint syinc, jint shift, \
97 sxloc, syloc, sxinc, syinc, shift, \
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrutil.c2739 int shift; local
2759 shift = s_start;
2767 value = (*sp >> shift) & 0x01;
2768 *dp &= (png_byte)((0x7f7f >> (7 - shift)) & 0xff);
2769 *dp |= (png_byte)(value << shift);
2772 if (shift == s_end)
2774 shift = s_start;
2780 shift += s_inc;
2797 int shift; local
2818 shift
2854 int shift; local
[all...]
H A Dpngwutil.c2289 int shift; local
2297 shift = 7;
2304 d |= (value << shift);
2306 if (shift == 0)
2308 shift = 7;
2314 shift--;
2317 if (shift != 7)
2327 int shift; local
2334 shift = 6;
2342 d |= (value << shift);
2364 int shift; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DImageUtil.java340 int shift = 24;
343 (byte)((data[i] >>> shift) & 0xFF);
344 shift -= 8;
602 int shift = 24;
605 (int)((binaryDataArray[b++] & 0xFF) << shift);
606 shift -= 8;
735 int shift = 24 - mod;
740 data[i] = (data[i] & (~(255 << shift))) | (datum << shift);
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DFloatControl.java79 * can be effected during a value shift, in microseconds.
127 * can change from one discrete value to the next during a {@link #shift(float,float,int) shift}
184 * can change from one discrete value to the next during a {@link #shift(float,float,int) shift}
307 * change during a shift. The update period is the inverse of the frequency with which
308 * the control updates its value during a shift. If the implementation does not support value shifting over
313 * @see #shift
323 * This method returns without blocking; it does not wait for the shift
328 * @param from initial value at the beginning of the shift
337 public void shift(float from, float to, int microseconds) { method in class:FloatControl
[all...]
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_gfx.h61 int shift[4]; member in struct:ImageFormat
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.hpp1462 void psrldq(XMMRegister dst, int shift);
1719 void psllw(XMMRegister dst, int shift);
1720 void pslld(XMMRegister dst, int shift);
1721 void psllq(XMMRegister dst, int shift);
1722 void psllw(XMMRegister dst, XMMRegister shift);
1723 void pslld(XMMRegister dst, XMMRegister shift);
1724 void psllq(XMMRegister dst, XMMRegister shift);
1725 void vpsllw(XMMRegister dst, XMMRegister src, int shift, bool vector256);
1726 void vpslld(XMMRegister dst, XMMRegister src, int shift, bool vector256);
1727 void vpsllq(XMMRegister dst, XMMRegister src, int shift, boo
[all...]
H A Dassembler_x86.cpp2453 void Assembler::psrldq(XMMRegister dst, int shift) { argument
2459 emit_byte(shift);
2553 assert(isShiftCount(imm8), "illegal shift count");
2627 assert(isShiftCount(imm8), "illegal shift count");
2677 assert(isShiftCount(imm8), "illegal shift count");
2696 assert(isShiftCount(imm8), "illegal shift count");
3340 void Assembler::psllw(XMMRegister dst, int shift) { argument
3346 emit_byte(shift & 0xFF);
3349 void Assembler::pslld(XMMRegister dst, int shift) { argument
3355 emit_byte(shift
3358 psllq(XMMRegister dst, int shift) argument
3367 psllw(XMMRegister dst, XMMRegister shift) argument
3372 pslld(XMMRegister dst, XMMRegister shift) argument
3377 psllq(XMMRegister dst, XMMRegister shift) argument
3382 vpsllw(XMMRegister dst, XMMRegister src, int shift, bool vector256) argument
3389 vpslld(XMMRegister dst, XMMRegister src, int shift, bool vector256) argument
3396 vpsllq(XMMRegister dst, XMMRegister src, int shift, bool vector256) argument
3403 vpsllw(XMMRegister dst, XMMRegister src, XMMRegister shift, bool vector256) argument
3408 vpslld(XMMRegister dst, XMMRegister src, XMMRegister shift, bool vector256) argument
3413 vpsllq(XMMRegister dst, XMMRegister src, XMMRegister shift, bool vector256) argument
3419 psrlw(XMMRegister dst, int shift) argument
3428 psrld(XMMRegister dst, int shift) argument
3437 psrlq(XMMRegister dst, int shift) argument
3448 psrlw(XMMRegister dst, XMMRegister shift) argument
3453 psrld(XMMRegister dst, XMMRegister shift) argument
3458 psrlq(XMMRegister dst, XMMRegister shift) argument
3463 vpsrlw(XMMRegister dst, XMMRegister src, int shift, bool vector256) argument
3470 vpsrld(XMMRegister dst, XMMRegister src, int shift, bool vector256) argument
3477 vpsrlq(XMMRegister dst, XMMRegister src, int shift, bool vector256) argument
3484 vpsrlw(XMMRegister dst, XMMRegister src, XMMRegister shift, bool vector256) argument
3489 vpsrld(XMMRegister dst, XMMRegister src, XMMRegister shift, bool vector256) argument
3494 vpsrlq(XMMRegister dst, XMMRegister src, XMMRegister shift, bool vector256) argument
3500 psraw(XMMRegister dst, int shift) argument
3509 psrad(XMMRegister dst, int shift) argument
3518 psraw(XMMRegister dst, XMMRegister shift) argument
3523 psrad(XMMRegister dst, XMMRegister shift) argument
3528 vpsraw(XMMRegister dst, XMMRegister src, int shift, bool vector256) argument
3535 vpsrad(XMMRegister dst, XMMRegister src, int shift, bool vector256) argument
3542 vpsraw(XMMRegister dst, XMMRegister src, XMMRegister shift, bool vector256) argument
3547 vpsrad(XMMRegister dst, XMMRegister src, XMMRegister shift, bool vector256) argument
11367 int shift = -1; local
[all...]
H A DstubGenerator_x86_32.cpp946 int shift = Address::times_ptr - sf; local
974 __ cmpl(count, 2<<shift); // Short arrays (< 8 bytes) copy by element
994 __ subl(count, 1<<(shift-1));
999 __ shrl(count, shift); // bytes count
1013 __ subl(count, 1<<shift);
1017 __ shrl(rax, shift+1); // 8 bytes chunk count
1029 __ testl(count, 1<<shift);
1037 __ testl(count, 1<<(shift-1));
1112 int shift = Address::times_ptr - sf; local
1152 __ cmpl(count, 2<<shift); // Shor
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DRaster.java542 int shift = (bands-1)*bitsPerBand;
545 if (shift+bitsPerBand > DataBuffer.getDataTypeSize(dataType)) {
562 masks[i] = mask << shift;
563 shift = shift - bitsPerBand;
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_c_ImageLookUp_f.c2171 mlib_u32 shift, shift1, res1, res2; local
2205 shift = 8 * off;
2206 shift1 = 32 - shift;
2229 res1 = (t0 >> shift) + (t1 << shift1);
2230 res2 = (t1 >> shift) + (t2 << shift1);
2232 res1 = (t0 << shift) + (t1 >> shift1);
2233 res2 = (t1 << shift) + (t2 >> shift1);
2245 res1 = (t0 >> shift) + (t1 << shift1);
2246 res2 = (t1 >> shift) + (t2 << shift1);
2248 res1 = (t0 << shift)
2441 mlib_u32 shift, shift1, res1, res2, res; local
2710 mlib_u32 shift, shift1, res1, res2, res; local
[all...]
H A Dmlib_image_proto.h312 mlib_s32 shift);
320 mlib_s32 shift);
359 mlib_s32 shift);
367 mlib_s32 shift);
472 mlib_s32 shift);
480 mlib_s32 shift);
489 mlib_s32 shift);
497 mlib_s32 shift);
505 mlib_s32 shift);
690 mlib_s32 shift);
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DInteger.java258 private static String toUnsignedString(int i, int shift) { argument
261 int radix = 1 << shift;
265 i >>>= shift;
309 // TODO-FIXME: convert (x * 52429) into the equiv shift-add
H A DLong.java241 private static String toUnsignedString(long i, int shift) { argument
244 int radix = 1 << shift;
248 i >>>= shift;
/openjdk7/hotspot/src/share/vm/opto/
H A DloopTransform.cpp1559 Node* shift = _igvn.intcon(31);
1560 set_ctrl(shift, C->root());
1561 Node* sign = new (C) RShiftINode(offset, shift);
1612 Node* shift = _igvn.intcon(31);
1613 set_ctrl(shift, C->root());
1614 Node* sign = new (C) RShiftINode(plus_one, shift);
2396 Node*& shift, Node*& con) {
2402 shift = NULL;
2489 } else if (n->Opcode() == Op_LShiftX && shift == NULL) {
2498 msg = "unhandled shift i
2395 match_fill_loop(IdealLoopTree* lpt, Node*& store, Node*& store_value, Node*& shift, Node*& con) argument
2634 Node* shift = NULL; local
[all...]
H A Dvectornode.cpp121 case T_SHORT: return 0; // Vector logical right shift for signed short
125 // extension before a shift.
326 VectorNode* VectorNode::shift_count(Compile* C, Node* shift, Node* cnt, uint vlen, BasicType bt) { argument
327 assert(VectorNode::is_shift(shift) && !cnt->is_Con(), "only variable shift count");
328 // Match shift count type with shift vector type.
330 switch (shift->Opcode()) {
340 fatal(err_msg_res("Missed vector creation for '%s'", NodeClassNames[shift->Opcode()]));
/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java436 * Right shift this MutableBigInteger n bits. The MutableBigInteger is left
457 * Left shift this MutableBigInteger n bits.
472 // If shift can be done without moving words, do so
547 * Right shift this MutableBigInteger n bits, where n is
563 * Left shift this MutableBigInteger n bits, where n is
834 int shift = Integer.numberOfLeadingZeros(divisor);
864 if (shift > 0)
975 int shift = Integer.numberOfLeadingZeros(divisor[0]);
976 if (shift > 0) {
977 // First shift wil
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DProcessPath.java686 /* Setting default shift for preparing to the midpoint rounding */
687 int shift = DF_QUAD_SHIFT;
729 shift += 2;
742 x2 = x0w + (px >> shift);
743 y2 = y0w + (py >> shift);
1012 /* Setting default shift for preparing to the midpoint rounding */
1013 int shift = DF_CUB_SHIFT;
1062 shift += 3;
1069 while ((count & 1) == 0 && shift > DF_CUB_SHIFT &&
1081 shift
[all...]
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java103 final byte shift; field in class:JRSUIConstants.PropertyEncoding
105 PropertyEncoding(final long mask, final byte shift) { argument
107 this.shift = shift;
118 this.value = ((long)ordinal) << encoding.shift;
/openjdk7/hotspot/src/share/vm/memory/
H A Duniverse.hpp104 // Number of shift bits for encoding/decoding narrow oops.
364 static void set_narrow_oop_shift(int shift) { _narrow_oop._shift = shift; } argument

Completed in 713 milliseconds

12345678910