Searched refs:mos (Results 1 – 3 of 3) sorted by relevance
149 MockOutputStream mos = new MockOutputStream(5); in test_write$BII() local150 BufferedOutputStream bos = new BufferedOutputStream(mos, 3); in test_write$BII()153 assertEquals("Large data should be written directly", "abcde", mos in test_write$BII()155 mos = new MockOutputStream(4); in test_write$BII()156 bos = new BufferedOutputStream(mos, 3); in test_write$BII()159 assertEquals("Should flush before write", "ab", mos.getWritten()); in test_write$BII()
255 int mos = (int) (millis % 1000); in ofMillis() local256 if (mos < 0) { in ofMillis()257 mos += 1000; in ofMillis()260 return create(secs, mos * 1000_000); in ofMillis()
339 int mos = (int)Math.floorMod(epochMilli, 1000); in ofEpochMilli() local340 return create(secs, mos * 1000_000); in ofEpochMilli()