Lines Matching refs:bit64
97 if (tz->bit64.timecnt) { in skip_64bit_transistions()
98 *tzf += (sizeof(int64_t) * tz->bit64.timecnt); in skip_64bit_transistions()
99 *tzf += (sizeof(unsigned char) * tz->bit64.timecnt); in skip_64bit_transistions()
135 *tzf += sizeof(unsigned char) * 6 * tz->bit64.typecnt; in skip_64bit_types()
136 *tzf += sizeof(char) * tz->bit64.charcnt; in skip_64bit_types()
137 if (tz->bit64.leapcnt) { in skip_64bit_types()
138 *tzf += sizeof(int64_t) * tz->bit64.leapcnt * 2; in skip_64bit_types()
140 if (tz->bit64.ttisstdcnt) { in skip_64bit_types()
141 *tzf += sizeof(unsigned char) * tz->bit64.ttisstdcnt; in skip_64bit_types()
143 if (tz->bit64.ttisgmtcnt) { in skip_64bit_types()
144 *tzf += sizeof(unsigned char) * tz->bit64.ttisgmtcnt; in skip_64bit_types()
371 tz->bit64.ttisgmtcnt = timelib_conv_int(buffer[0]); in read_64bit_header()
372 tz->bit64.ttisstdcnt = timelib_conv_int(buffer[1]); in read_64bit_header()
373 tz->bit64.leapcnt = timelib_conv_int(buffer[2]); in read_64bit_header()
374 tz->bit64.timecnt = timelib_conv_int(buffer[3]); in read_64bit_header()
375 tz->bit64.typecnt = timelib_conv_int(buffer[4]); in read_64bit_header()
376 tz->bit64.charcnt = timelib_conv_int(buffer[5]); in read_64bit_header()