• Home
  • Raw
  • Download

Lines Matching refs:value

1373   public static int $noinline$intToDoubleToInt(int value) {  in $noinline$intToDoubleToInt()  argument
1375 return (int) (double) value; in $noinline$intToDoubleToInt()
1391 public static String $noinline$intToDoubleToIntPrint(int value) { in $noinline$intToDoubleToIntPrint() argument
1394 double d = (double) value; in $noinline$intToDoubleToIntPrint()
1412 public static int $noinline$byteToDoubleToInt(byte value) { in $noinline$byteToDoubleToInt() argument
1414 return (int) (double) value; in $noinline$byteToDoubleToInt()
1432 public static int $noinline$floatToDoubleToInt(float value) { in $noinline$floatToDoubleToInt() argument
1434 return (int) (double) value; in $noinline$floatToDoubleToInt()
1447 public static String $noinline$floatToDoubleToIntPrint(float value) { in $noinline$floatToDoubleToIntPrint() argument
1450 double d = (double) value; in $noinline$floatToDoubleToIntPrint()
1469 public static short $noinline$byteToDoubleToShort(byte value) { in $noinline$byteToDoubleToShort() argument
1473 return (short) (double) value; in $noinline$byteToDoubleToShort()
1492 public static short $noinline$charToDoubleToShort(char value) { in $noinline$charToDoubleToShort() argument
1496 return (short) (double) value; in $noinline$charToDoubleToShort()
1511 public static short $noinline$floatToIntToShort(float value) { in $noinline$floatToIntToShort() argument
1513 return (short) value; in $noinline$floatToIntToShort()
1528 public static int $noinline$intToFloatToInt(int value) { in $noinline$intToFloatToInt() argument
1530 return (int) (float) value; in $noinline$intToFloatToInt()
1545 public static double $noinline$longToIntToDouble(long value) { in $noinline$longToIntToDouble() argument
1547 return (double) (int) value; in $noinline$longToIntToDouble()
1562 public static long $noinline$longToIntToLong(long value) { in $noinline$longToIntToLong() argument
1564 return (long) (int) value; in $noinline$longToIntToLong()
1577 public static short $noinline$shortToCharToShort(short value) { in $noinline$shortToCharToShort() argument
1579 return (short) (char) value; in $noinline$shortToCharToShort()
1592 public static int $noinline$shortToLongToInt(short value) { in $noinline$shortToLongToInt() argument
1594 return (int) (long) value; in $noinline$shortToLongToInt()
1608 public static byte $noinline$shortToCharToByte(short value) { in $noinline$shortToCharToByte() argument
1611 return (byte) (char) value; in $noinline$shortToCharToByte()
1624 public static String $noinline$shortToCharToBytePrint(short value) { in $noinline$shortToCharToBytePrint() argument
1627 char c = (char) value; in $noinline$shortToCharToBytePrint()
1646 public static long $noinline$intAndSmallLongConstant(int value) { in $noinline$intAndSmallLongConstant() argument
1647 return value & -12345678L; // Shall be simplified (constant is 32-bit). in $noinline$intAndSmallLongConstant()
1664 public static long $noinline$intAndLargeLongConstant(int value) { in $noinline$intAndLargeLongConstant() argument
1665 return value & 9876543210L; // Shall not be simplified (constant is not 32-bit). in $noinline$intAndLargeLongConstant()
1684 public static long $noinline$intShr28And15L(int value) { in $noinline$intShr28And15L() argument
1685 return (value >> 28) & 15L; in $noinline$intShr28And15L()
1704 public static byte $noinline$longAnd0xffToByte(long value) { in $noinline$longAnd0xffToByte() argument
1705 return (byte) (value & 0xff); in $noinline$longAnd0xffToByte()
1723 public static char $noinline$intAnd0x1ffffToChar(int value) { in $noinline$intAnd0x1ffffToChar() argument
1725 return (char) (value & 0x1ffff); in $noinline$intAnd0x1ffffToChar()
1742 public static short $noinline$intAnd0x17fffToShort(int value) { in $noinline$intAnd0x17fffToShort() argument
1744 return (short) (value & 0x17fff); in $noinline$intAnd0x17fffToShort()
1760 public static double $noinline$shortAnd0xffffToShortToDouble(short value) { in $noinline$shortAnd0xffffToShortToDouble() argument
1761 short same = (short) (value & 0xffff); in $noinline$shortAnd0xffffToShortToDouble()
1851 public static int $noinline$intUnnecessaryShiftMasking(int value, int shift) { in $noinline$intUnnecessaryShiftMasking() argument
1852 return value << (shift & 31); in $noinline$intUnnecessaryShiftMasking()
1869 public static long $noinline$longUnnecessaryShiftMasking(long value, int shift) { in $noinline$longUnnecessaryShiftMasking() argument
1870 return value >> (shift & 63); in $noinline$longUnnecessaryShiftMasking()
1887 public static int $noinline$intUnnecessaryWiderShiftMasking(int value, int shift) { in $noinline$intUnnecessaryWiderShiftMasking() argument
1888 return value >>> (shift & 0xff); in $noinline$intUnnecessaryWiderShiftMasking()
1907 public static long $noinline$longSmallerShiftMasking(long value, int shift) { in $noinline$longSmallerShiftMasking() argument
1908 return value << (shift & 3); in $noinline$longSmallerShiftMasking()
1929 public static int $noinline$otherUseOfUnnecessaryShiftMasking(int value, int shift) { in $noinline$otherUseOfUnnecessaryShiftMasking() argument
1931 return (value >> temp) + temp; in $noinline$otherUseOfUnnecessaryShiftMasking()
1961 public static int $noinline$intUnnecessaryShiftModifications(int value, int shift) { in $noinline$intUnnecessaryShiftModifications() argument
1963 return (value << (shift | 32)) + in $noinline$intUnnecessaryShiftModifications()
1964 (value >> (shift ^ 64)) + in $noinline$intUnnecessaryShiftModifications()
1965 (value >>> (shift + 96)) + in $noinline$intUnnecessaryShiftModifications()
1966 (value << (shift - c128)) + // Needs a named constant to generate Sub. in $noinline$intUnnecessaryShiftModifications()
1967 (value >> ((byte) shift)); in $noinline$intUnnecessaryShiftModifications()
2002 public static int $noinline$intNecessaryShiftModifications(int value, int shift) { in $noinline$intNecessaryShiftModifications() argument
2004 return (value << (shift | 33)) + in $noinline$intNecessaryShiftModifications()
2005 (value >> (shift ^ 65)) + in $noinline$intNecessaryShiftModifications()
2006 (value >>> (shift + 97)) + in $noinline$intNecessaryShiftModifications()
2007 (value << (shift - c129)); // Needs a named constant to generate Sub. in $noinline$intNecessaryShiftModifications()
2332 public static int $inline$toByte(int value) { in $inline$toByte() argument
2333 return (byte) value; in $inline$toByte()
2392 public static int $noinline$intAnd0xffToChar(int value) { in $noinline$intAnd0xffToChar() argument
2393 return (char) (value & 0xff); in $noinline$intAnd0xffToChar()
2411 public static int $noinline$intAnd0x1ffToChar(int value) { in $noinline$intAnd0x1ffToChar() argument
2412 return (char) (value & 0x1ff); in $noinline$intAnd0x1ffToChar()
2537 public static byte $noinline$redundantAndNotRedundant(int value) { in $noinline$redundantAndNotRedundant() argument
2541 return (byte) ((value & 0xf500) >> 8); in $noinline$redundantAndNotRedundant()
2549 public static byte $noinline$redundantAndOtherUse(int value){ in $noinline$redundantAndOtherUse() argument
2550 int v1 = value & 0xff00; in $noinline$redundantAndOtherUse()
2563 public static byte $noinline$redundantAndShortToByteShift2(short value) { in $noinline$redundantAndShortToByteShift2() argument
2567 return (byte) ((value & 0xfff) >> 2); in $noinline$redundantAndShortToByteShift2()
2575 public static byte $noinline$redundantAndShortToByteShift5(short value) { in $noinline$redundantAndShortToByteShift5() argument
2579 return (byte) ((value & 0xffe0) >> 5); in $noinline$redundantAndShortToByteShift5()
2587 public static byte $noinline$redundantAndShortToByteShift8(short value) { in $noinline$redundantAndShortToByteShift8() argument
2588 return (byte) ((value & 0xff00) >> 8); in $noinline$redundantAndShortToByteShift8()
2596 public static byte $noinline$redundantAndShortToByteShift9NotRedundant(short value) { in $noinline$redundantAndShortToByteShift9NotRedundant() argument
2602 return (byte) ((value & 0xfe00) >> 9); in $noinline$redundantAndShortToByteShift9NotRedundant()
2610 public static byte $noinline$redundantAndShortToByteShift10NotRedundant(short value) { in $noinline$redundantAndShortToByteShift10NotRedundant() argument
2611 return (byte) ((value & 0x1ffff) >> 10); in $noinline$redundantAndShortToByteShift10NotRedundant()
2619 public static byte $noinline$redundantAndShortToByteShift12(short value) { in $noinline$redundantAndShortToByteShift12() argument
2623 return (byte) ((value & 0xfff00) >> 12); in $noinline$redundantAndShortToByteShift12()
2631 public static byte $noinline$redundantAndShortToByteShift15(short value) { in $noinline$redundantAndShortToByteShift15() argument
2632 return (byte) ((value & 0xffff00) >> 15); in $noinline$redundantAndShortToByteShift15()
2640 public static byte $noinline$redundantAndShortToByteShift16(short value) { in $noinline$redundantAndShortToByteShift16() argument
2641 return (byte) ((value & 0xf0ffff00) >> 16); in $noinline$redundantAndShortToByteShift16()
2649 public static byte $noinline$redundantAndIntToByteShift2(int value) { in $noinline$redundantAndIntToByteShift2() argument
2650 return (byte) ((value & 0xfff) >> 2); in $noinline$redundantAndIntToByteShift2()
2658 public static byte $noinline$redundantAndIntToByteShift5(int value) { in $noinline$redundantAndIntToByteShift5() argument
2659 return (byte) ((value & 0xffe0) >> 5); in $noinline$redundantAndIntToByteShift5()
2667 public static byte $noinline$redundantAndIntToByteShift8(int value) { in $noinline$redundantAndIntToByteShift8() argument
2668 return (byte) ((value & 0xffffff00) >> 8); in $noinline$redundantAndIntToByteShift8()
2676 public static byte $noinline$redundantAndIntToByteShift9(int value) { in $noinline$redundantAndIntToByteShift9() argument
2677 return (byte) ((value & 0xf001fe00) >> 9); in $noinline$redundantAndIntToByteShift9()
2685 public static byte $noinline$redundantAndIntToByteShift16(int value) { in $noinline$redundantAndIntToByteShift16() argument
2686 return (byte) ((value & 0xf0ff0000) >> 16); in $noinline$redundantAndIntToByteShift16()
2694 public static byte $noinline$redundantAndIntToByteShift20(int value) { in $noinline$redundantAndIntToByteShift20() argument
2695 return (byte) ((value & 0xfff00000) >> 20); in $noinline$redundantAndIntToByteShift20()
2703 public static byte $noinline$redundantAndIntToByteShift25(int value) { in $noinline$redundantAndIntToByteShift25() argument
2704 return (byte) ((value & 0xfe000000) >> 25); in $noinline$redundantAndIntToByteShift25()
2712 public static byte $noinline$redundantAndIntToByteShift24(int value) { in $noinline$redundantAndIntToByteShift24() argument
2713 return (byte) ((value & 0xff000000) >> 24); in $noinline$redundantAndIntToByteShift24()
2721 public static byte $noinline$redundantAndIntToByteShift31(int value) { in $noinline$redundantAndIntToByteShift31() argument
2722 return (byte) ((value & 0xff000000) >> 31); in $noinline$redundantAndIntToByteShift31()
2730 public static byte $noinline$redundantAndShortToByteShortAndConstant(short value) { in $noinline$redundantAndShortToByteShortAndConstant() argument
2732 return (byte) ((value & and_constant) >> 16); in $noinline$redundantAndShortToByteShortAndConstant()
2740 public static byte $noinline$redundantAndIntToByteShortAndConstant(int value) { in $noinline$redundantAndIntToByteShortAndConstant() argument
2742 return (byte) ((value & and_constant) >> 16); in $noinline$redundantAndIntToByteShortAndConstant()
2750 public static byte $noinline$redundantAndRegressionNotConstant(int value, int mask) { in $noinline$redundantAndRegressionNotConstant() argument
2751 return (byte) ((value & mask) >> 8); in $noinline$redundantAndRegressionNotConstant()