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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
H A DCharsetEncoderTest.java820 private byte[] duplicateByteArray(byte[] ba, int times) { argument
821 byte[] result = new byte[ba.length * times];
822 for (int i = 0; i < times; i++) {
/libcore/ojluni/src/main/java/java/util/
H A DSimpleTimeZone.java1371 * end rule is an exclusive limit point. That is, the range of times that
1526 * Adjust the start and end times to wall time. This works perfectly
1604 * Pack the start and end times into an array of bytes. This is required
1608 int[] times = new int[2];
1609 times[0] = startTime;
1610 times[1] = endTime;
1611 return times;
1615 * Unpack the start and end times from an array of bytes. This is required
1618 private void unpackTimes(int[] times) { argument
1619 startTime = times[
[all...]
/libcore/ojluni/src/main/native/
H A DUnixNativeDispatcher.c603 struct timeval times[2]; local
606 times[0].tv_sec = accessTime / 1000000;
607 times[0].tv_usec = accessTime % 1000000;
609 times[1].tv_sec = modificationTime / 1000000;
610 times[1].tv_usec = modificationTime % 1000000;
612 RESTARTABLE(utimes(path, &times[0]), err);
622 struct timeval times[2]; local
625 times[0].tv_sec = accessTime / 1000000;
626 times[0].tv_usec = accessTime % 1000000;
628 times[
[all...]

Completed in 631 milliseconds