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