OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:expectEqualsLong
(Results
1 - 2
of
2
) sorted by null
/art/test/565-checker-rotate/src/
Main.java
446
expectEqualsLong
(0x0000000000000001L, rotateLeftLong(0x0000000000000001L, 0));
447
expectEqualsLong
(0x0000000000000002L, rotateLeftLong(0x0000000000000001L, 1));
448
expectEqualsLong
(0x8000000000000000L, rotateLeftLong(0x0000000000000001L, 63));
449
expectEqualsLong
(0x0000000000000001L, rotateLeftLong(0x0000000000000001L, 64)); // overshoot
450
expectEqualsLong
(0x0000000000000003L, rotateLeftLong(0x8000000000000001L, 1));
451
expectEqualsLong
(0x0000000000000006L, rotateLeftLong(0x8000000000000001L, 2));
452
expectEqualsLong
(0x23456789ABCDEF01L, rotateLeftLong(0x123456789ABCDEF0L, 4));
453
expectEqualsLong
(0x3456789ABCDEF012L, rotateLeftLong(0x123456789ABCDEF0L, 8));
456
expectEqualsLong
(0x0000000000000000L, rotateLeftLong(0x0000000000000000L, i));
457
expectEqualsLong
(0xFFFFFFFFFFFFFFFFL, rotateLeftLong(0xFFFFFFFFFFFFFFFFL, i))
[
all
...]
/art/test/593-checker-boolean-2-integral-conv/src/
Main.java
24
expectEqualsLong
(1L, booleanToLong(true));
223
private static void
expectEqualsLong
(long expected, long result) {
Completed in 57 milliseconds