Searched refs:unsignedShiftRight (Results 1 - 11 of 11) sorted by relevance

/external/v8/test/mjsunit/regress/
H A Dregress-1050043.js28 function unsignedShiftRight(val, shift) { function
32 assertEquals( 15, unsignedShiftRight(15, 0), "15 >>> 0");
33 assertEquals( 7, unsignedShiftRight(15, 1), "15 >>> 1");
34 assertEquals( 3, unsignedShiftRight(15, 2), "15 >>> 2");
36 assertEquals(4294967288, unsignedShiftRight(-8, 0), "-8 >>> 0");
37 assertEquals(2147483644, unsignedShiftRight(-8, 1), "-8 >>> 1");
38 assertEquals(1073741822, unsignedShiftRight(-8, 2), "-8 >>> 2");
40 assertEquals( 1, unsignedShiftRight(-8, 31), "-8 >>> 31");
41 assertEquals(4294967288, unsignedShiftRight(-8, 32), "-8 >>> 32");
42 assertEquals(2147483644, unsignedShiftRight(
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DLongValue.java167 public LongValue unsignedShiftRight(IntegerValue other) method in class:LongValue
321 public LongValue unsignedShiftRight(SpecificLongValue other) method in class:LongValue
477 public LongValue unsignedShiftRight(ParticularIntegerValue other) method in class:LongValue
479 return unsignedShiftRight((SpecificIntegerValue)other);
H A DParticularIntegerValue.java171 public IntegerValue unsignedShiftRight(IntegerValue other) method in class:ParticularIntegerValue
178 return other.unsignedShiftRight(this);
193 return other.unsignedShiftRight(this);
289 public IntegerValue unsignedShiftRight(ParticularIntegerValue other) method in class:ParticularIntegerValue
H A DSpecificIntegerValue.java139 public IntegerValue unsignedShiftRight(IntegerValue other) method in class:SpecificIntegerValue
146 return other.unsignedShiftRight(this);
161 return other.unsignedShiftRight(this);
261 public IntegerValue unsignedShiftRight(SpecificIntegerValue other) method in class:SpecificIntegerValue
H A DUnknownLongValue.java115 public LongValue unsignedShiftRight(IntegerValue other) method in class:UnknownLongValue
H A DIntegerValue.java148 public abstract IntegerValue unsignedShiftRight(IntegerValue other); method in class:IntegerValue
349 public IntegerValue unsignedShiftRight(UnknownIntegerValue other) method in class:IntegerValue
351 return unsignedShiftRight((IntegerValue)other);
593 public IntegerValue unsignedShiftRight(SpecificIntegerValue other) method in class:IntegerValue
595 return unsignedShiftRight((IntegerValue)other);
837 public IntegerValue unsignedShiftRight(ParticularIntegerValue other) method in class:IntegerValue
839 return unsignedShiftRight((SpecificIntegerValue)other);
H A DParticularLongValue.java134 public LongValue unsignedShiftRight(IntegerValue other) method in class:ParticularLongValue
222 public LongValue unsignedShiftRight(ParticularIntegerValue other) method in class:ParticularLongValue
H A DSpecificLongValue.java114 public LongValue unsignedShiftRight(IntegerValue other) method in class:SpecificLongValue
206 public LongValue unsignedShiftRight(SpecificLongValue other) method in class:SpecificLongValue
H A DUnknownIntegerValue.java141 public IntegerValue unsignedShiftRight(IntegerValue other) method in class:UnknownIntegerValue
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...
/external/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java775 Method unsignedShiftRight = binaryOpMethod(int.class,
777 assertEquals(0x00abcd12, unsignedShiftRight.invoke(null, 0xabcd1234, 8));
826 Method unsignedShiftRight = binaryOpMethod(long.class,
828 assertEquals(0x00abcdef01234567L, unsignedShiftRight.invoke(null, 0xabcdef0123456789L, 8L));

Completed in 501 milliseconds