Searched refs:timeByte (Results 1 – 1 of 1) sorted by relevance
310 final int timeByte = (timeSecs % 3600 == 0 ? (timeEndOfDay ? 24 : time.getHour()) : 31); in writeExternal() local318 (timeByte << 14) + // 5 bits in writeExternal()324 if (timeByte == 31) { in writeExternal()351 int timeByte = (data & (31 << 14)) >>> 14; in readExternal() local356 …LocalTime time = (timeByte == 31 ? LocalTime.ofSecondOfDay(in.readInt()) : LocalTime.of(timeByte %… in readExternal()360 …return ZoneOffsetTransitionRule.of(month, dom, dow, time, timeByte == 24, defn, std, before, after… in readExternal()