OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:expectEqualsInt
(Results
1 - 3
of
3
) sorted by null
/art/test/564-checker-bitcount/src/
Main.java
73
expectEqualsInt
($noinline$BitCountBoolean(false), 0);
74
expectEqualsInt
($noinline$BitCountBoolean(true), 1);
84
expectEqualsInt
($noinline$BitCountByte((byte) 0x00), 0);
85
expectEqualsInt
($noinline$BitCountByte((byte) 0x01), 1);
86
expectEqualsInt
($noinline$BitCountByte((byte) 0x10), 1);
87
expectEqualsInt
($noinline$BitCountByte((byte) 0x11), 2);
88
expectEqualsInt
($noinline$BitCountByte((byte) 0x03), 2);
89
expectEqualsInt
($noinline$BitCountByte((byte) 0x70), 3);
90
expectEqualsInt
($noinline$BitCountByte((byte) 0xF0), 4 + signExtensionSize);
91
expectEqualsInt
($noinline$BitCountByte((byte) 0x0F), 4)
[
all
...]
/art/test/565-checker-rotate/src/
Main.java
368
expectEqualsInt
(0, rotateLeftBoolean(false, i));
369
expectEqualsInt
(1 << i, rotateLeftBoolean(true, i));
374
expectEqualsInt
(0x00000001, rotateLeftByte((byte)0x01, 0));
375
expectEqualsInt
(0x00000002, rotateLeftByte((byte)0x01, 1));
376
expectEqualsInt
(0x80000000, rotateLeftByte((byte)0x01, 31));
377
expectEqualsInt
(0x00000001, rotateLeftByte((byte)0x01, 32)); // overshoot
378
expectEqualsInt
(0xFFFFFF03, rotateLeftByte((byte)0x81, 1));
379
expectEqualsInt
(0xFFFFFE07, rotateLeftByte((byte)0x81, 2));
380
expectEqualsInt
(0x00000120, rotateLeftByte((byte)0x12, 4));
381
expectEqualsInt
(0xFFFF9AFF, rotateLeftByte((byte)0x9A, 8))
[
all
...]
/art/test/593-checker-boolean-to-integral-conv/src/
Main.java
23
expectEqualsInt
(1, booleanToInt(true));
26
expectEqualsInt
(1, longToIntOfBoolean());
217
private static void
expectEqualsInt
(int expected, int result) {
Completed in 179 milliseconds