Lines Matching refs:b
29 int b = myOtherField << a; in testIntShiftLeft() local
30 if (b != -2147483648) { in testIntShiftLeft()
31 throw new Error("Expected -2147483648, got " + b); in testIntShiftLeft()
40 int b = myOtherField >> a; in testIntShiftRight() local
41 if (b != 0) { in testIntShiftRight()
42 throw new Error("Expected 0, got " + b); in testIntShiftRight()
51 int b = myOtherField >>> a; in testIntUnsignedShiftRight() local
52 if (b != 0) { in testIntUnsignedShiftRight()
53 throw new Error("Expected 0, got " + b); in testIntUnsignedShiftRight()
62 long b = myOtherLongField << a; in testLongShiftLeft() local
63 if (b != 0x2468ACF13579BDEL) { in testLongShiftLeft()
64 throw new Error("Expected 0x2468ACF13579BDEL, got " + b); in testLongShiftLeft()
75 long b = myOtherLongField >> a; in testLongShiftRight() local
76 if (b != 0x91A2B3C4D5E6F7L) { in testLongShiftRight()
77 throw new Error("Expected 0x91A2B3C4D5E6F7L, got " + b); in testLongShiftRight()
88 long b = myOtherLongField >>> a; in testLongUnsignedShiftRight() local
89 if (b != 0x91A2B3C4D5E6F7L) { in testLongUnsignedShiftRight()
90 throw new Error("Expected 0x91A2B3C4D5E6F7L, got " + b); in testLongUnsignedShiftRight()