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()
258 int mos = (int) (millis % 1000); in ofMillis() local259 if (mos < 0) { in ofMillis()260 mos += 1000; in ofMillis()263 return create(secs, mos * 1000_000); in ofMillis()
340 int mos = Math.floorMod(epochMilli, 1000); in ofEpochMilli() local341 return create(secs, mos * 1000_000); in ofEpochMilli()