Searched defs:epochSec (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/time/zone/
H A DSer.java246 * @param epochSec the epoch seconds, not null
250 static void writeEpochSec(long epochSec, DataOutput out) throws IOException { argument
251 if (epochSec >= -4575744000L && epochSec < 10413792000L && epochSec % 900 == 0) { // quarter hours between 1825 and 2300
252 int store = (int) ((epochSec + 4575744000L) / 900);
258 out.writeLong(epochSec);

Completed in 54 milliseconds