Searched refs:offsetByte (Results 1 – 2 of 2) sorted by relevance
223 int offsetByte = offsetSecs % 900 == 0 ? offsetSecs / 900 : 127; // compress to -72 to +72 in writeOffset() local224 out.writeByte(offsetByte); in writeOffset()225 if (offsetByte == 127) { in writeOffset()238 int offsetByte = in.readByte(); in readOffset() local239 …return (offsetByte == 127 ? ZoneOffset.ofTotalSeconds(in.readInt()) : ZoneOffset.ofTotalSeconds(of… in readOffset()
781 int offsetByte = offsetSecs % 900 == 0 ? offsetSecs / 900 : 127; // compress to -72 to +72782 out.writeByte(offsetByte);783 if (offsetByte == 127) {789 int offsetByte = in.readByte();790 …return (offsetByte == 127 ? ZoneOffset.ofTotalSeconds(in.readInt()) : ZoneOffset.ofTotalSeconds(of…