Lines Matching defs:shorts
354 Shorty shorts = new Shorty();
356 shorts.mShort = (short) x;
357 shorts.mChar = (char) x;
358 shorts.mByte = (byte) x;
359 return shorts;
361 static void truncateCheck(Shorty shorts) {
362 assert(shorts.mShort == -5597); // 0xea23
363 assert(shorts.mChar == 59939); // 0xea23
364 assert(shorts.mByte == 35); // 0x23
480 Shorty shorts = truncateTest(-16717277); // 0xff00ea23
481 truncateCheck(shorts);