HomeSort by relevance Sort by last modified time
    Searched defs:tzh_timecnt (Results 1 - 3 of 3) sorted by null

  /bionic/libc/tzcode/
tzfile.h 47 char tzh_timecnt[4]; /* coded number of transition times */ member in struct:tzhead
55 ** tzh_timecnt (char [4])s coded transition times a la time(2)
56 ** tzh_timecnt (unsigned char)s types of local time starting at above
  /external/icu/icu4c/source/tools/tzcode/
tzfile.h 47 char tzh_timecnt[4]; /* coded number of transition times */ member in struct:tzhead
55 ** tzh_timecnt (char [4])s coded transition times a la time(2)
56 ** tzh_timecnt (unsigned char)s types of local time starting at above
  /libcore/luni/src/main/java/libcore/util/
ZoneInfo.java 52 * {@code tzh_timecnt} and the associated transition times and type information. For each type
124 * <p>In terms of {@link ZoneInfo tzfile} structure this array is of length {@code tzh_timecnt}
200 int tzh_timecnt = it.readInt(); local
214 int[] transitions32 = new int[tzh_timecnt];
217 long[] transitions64 = new long[tzh_timecnt];
218 for (int i = 0; i < tzh_timecnt; ++i) {
222 byte[] type = new byte[tzh_timecnt];
    [all...]

Completed in 66 milliseconds