HomeSort by relevance Sort by last modified time
    Searched refs:intToByte (Results 1 - 5 of 5) 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();
  /packages/services/Car/tests/usb/AoapHostApp/src/com/google/android/car/usb/aoap/host/
SpeedMeasurementController.java 263 protected byte[] intToByte(int value) {
275 byte[] bufferSizeArray = intToByte(mBufferSize);
334 byte[] bufferSizeArray = intToByte(mBufferSize);
  /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 660 Method intToByte = numericCastingMethod(int.class, byte.class);
661 assertEquals((byte) 0x34, intToByte.invoke(null, 0x00000034));
662 assertEquals((byte) 0x34, intToByte.invoke(null, 0xabcd1234));
663 assertEquals((byte) 0x34, intToByte.invoke(null, 0xffffff34));
    [all...]

Completed in 862 milliseconds