102103104105106107108109110111112
// a long with lots of zeroes at the end l1 = LONGS[i] = _TestUtil.nextLong(random, 0, Integer.MAX_VALUE) << 32; } else { l1 = LONGS[i] = _TestUtil.nextLong(random, 0, Long.MAX_VALUE); } bdo.writeVLong(l1); bdo.writeLong(l1); } } @AfterClass
105106107108109110111112113114115
// a long with lots of zeroes at the end l1 = LONGS[i] = TestUtil.nextLong(random, 0, Integer.MAX_VALUE) << 32; } else { l1 = LONGS[i] = TestUtil.nextLong(random, 0, Long.MAX_VALUE); } bdo.writeVLong(l1); bdo.writeLong(l1); } } @AfterClass
103104105106107108109110111112113
99100101102103104105106107108109
// a long with lots of zeroes at the end l1 = LONGS[i] = ((long) Math.abs(random.nextInt())) << 32; } else { l1 = LONGS[i] = Math.abs(random.nextLong()); } bdo.writeVLong(l1); bdo.writeLong(l1); } } @AfterClass