OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:intToByte
(Results
1 - 4
of
4
) sorted by null
/art/test/711-checker-type-conversion/src/
Main.java
207
/// CHECK-START: void Main.
intToByte
() instruction_simplifier$before_codegen (after)
209
private static void
intToByte
() {
257
intToByte
();
/art/test/551-checker-shifter-operand/src/
Main.java
65
static byte $noinline$
intToByte
(int v) { if (doThrow) throw new Error(); return (byte)v; }
582
assertLongEquals(a + $noinline$
intToByte
(b), a + (byte)b);
[
all
...]
/art/test/422-type-conversion/src/
Main.java
126
intToByte
();
521
private static void
intToByte
() {
522
assertByteEquals((byte)1, $opt$noinline$
IntToByte
(1));
523
assertByteEquals((byte)0, $opt$noinline$
IntToByte
(0));
524
assertByteEquals((byte)-1, $opt$noinline$
IntToByte
(-1));
525
assertByteEquals((byte)51, $opt$noinline$
IntToByte
(51));
526
assertByteEquals((byte)-51, $opt$noinline$
IntToByte
(-51));
527
assertByteEquals((byte)127, $opt$noinline$
IntToByte
(127)); // 2^7 - 1
528
assertByteEquals((byte)-127, $opt$noinline$
IntToByte
(-127)); // -(2^7 - 1)
529
assertByteEquals((byte)-128, $opt$noinline$
IntToByte
(-128)); // -(2^7
[
all
...]
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DexMakerTest.java
672
Method
intToByte
= numericCastingMethod(int.class, byte.class);
673
assertEquals((byte) 0x34,
intToByte
.invoke(null, 0x00000034));
674
assertEquals((byte) 0x34,
intToByte
.invoke(null, 0xabcd1234));
675
assertEquals((byte) 0x34,
intToByte
.invoke(null, 0xffffff34));
[
all
...]
Completed in 140 milliseconds