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

  /device/linaro/bootloader/edk2/StdLib/LibC/Time/
tzfile.h 57 char tzh_timecnt[4]; /* coded number of transition times */ member in struct:tzhead
65 ** tzh_timecnt (char [4])s coded transition times a la time(2)
66 ** tzh_timecnt (unsigned char)s types of local time starting at above
  /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}
195 int tzh_timecnt = it.readInt(); local
199 if (tzh_timecnt < 0 || tzh_timecnt > MAX_TRANSITIONS) {
201 "Timezone id=" + id + " has an invalid number of transitions=" + tzh_timecnt);
222 int[] transitions32 = new int[tzh_timecnt];
225 long[] transitions64 = new long[tzh_timecnt];
226 for (int i = 0; i < tzh_timecnt; ++i) {
235 byte[] type = new byte[tzh_timecnt];
    [all...]

Completed in 874 milliseconds