Searched refs:int1 (Results 1 – 4 of 4) sorted by relevance
382 BigDecimal int1 = new BigDecimal(value, 3); in test_intValue() local384 int1.intValue() == 12345); in test_intValue()385 int1 = new BigDecimal("1.99"); in test_intValue()386 assertTrue("the int value of 1.99 is not 1", int1.intValue() == 1); in test_intValue()387 int1 = new BigDecimal("23423419083091823091283933"); in test_intValue()389 assertTrue("the int value of 23423419083091823091283933 is wrong", int1 in test_intValue()391 int1 = new BigDecimal(-1235D); in test_intValue()393 int1.intValue() == -1235); in test_intValue()
253 private static byte int1(int x) { return (byte)(x >> 8); } in int1() method in Bits259 bb._put(bi + 1, int1(x)); in putIntL()266 _put(a + 1, int1(x)); in putIntL()273 bb._put(bi + 2, int1(x)); in putIntB()280 _put(a + 2, int1(x)); in putIntB()
354 int int1 = 1; field in MockClass
341 int int1 = in.readInt(); in readObject() local343 passed = int1 == 0xA9 && object1.equals(v1); in readObject()