OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unsignedShiftRight
(Results
1 - 12
of
12
) sorted by null
/external/v8/test/mjsunit/regress/
regress-1050043.js
28
function
unsignedShiftRight
(val, shift) {
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
(-8, 33), "-8 >>> 33")
[
all
...]
/external/proguard/src/proguard/evaluation/value/
LongValue.java
167
public LongValue
unsignedShiftRight
(IntegerValue other)
321
public LongValue
unsignedShiftRight
(SpecificLongValue other)
477
public LongValue
unsignedShiftRight
(ParticularIntegerValue other)
479
return
unsignedShiftRight
((SpecificIntegerValue)other);
ParticularIntegerValue.java
171
public IntegerValue
unsignedShiftRight
(IntegerValue other)
178
return other.
unsignedShiftRight
(this);
193
return other.
unsignedShiftRight
(this);
289
public IntegerValue
unsignedShiftRight
(ParticularIntegerValue other)
SpecificIntegerValue.java
139
public IntegerValue
unsignedShiftRight
(IntegerValue other)
146
return other.
unsignedShiftRight
(this);
161
return other.
unsignedShiftRight
(this);
261
public IntegerValue
unsignedShiftRight
(SpecificIntegerValue other)
UnknownLongValue.java
115
public LongValue
unsignedShiftRight
(IntegerValue other)
IntegerValue.java
148
public abstract IntegerValue
unsignedShiftRight
(IntegerValue other);
349
public IntegerValue
unsignedShiftRight
(UnknownIntegerValue other)
351
return
unsignedShiftRight
((IntegerValue)other);
593
public IntegerValue
unsignedShiftRight
(SpecificIntegerValue other)
595
return
unsignedShiftRight
((IntegerValue)other);
837
public IntegerValue
unsignedShiftRight
(ParticularIntegerValue other)
839
return
unsignedShiftRight
((SpecificIntegerValue)other);
ParticularLongValue.java
134
public LongValue
unsignedShiftRight
(IntegerValue other)
222
public LongValue
unsignedShiftRight
(ParticularIntegerValue other)
SpecificLongValue.java
114
public LongValue
unsignedShiftRight
(IntegerValue other)
206
public LongValue
unsignedShiftRight
(SpecificLongValue other)
UnknownIntegerValue.java
141
public IntegerValue
unsignedShiftRight
(IntegerValue other)
/external/proguard/lib/
proguard.jar
/prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar
/external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java
[
all
...]
Completed in 160 milliseconds