Lines Matching refs:offset

265 		tz->type[i].offset = 0;  in read_64bit_types()
266 …tz->type[i].offset += (int32_t) (((uint32_t) buffer[j]) << 24) + (buffer[j + 1] << 16) + (buffer[j… in read_64bit_types()
296 tz->leap_times[i].offset = timelib_conv_int_signed(leap_buffer[i * 3 + 2]); in read_64bit_types()
377 static signed int find_ttinfo_index(timelib_tzinfo *tz, int32_t offset, int isdst, char *abbr) in find_ttinfo_index() argument
383 (offset == tz->type[i].offset) && in find_ttinfo_index()
406 static signed int add_new_ttinfo_index(timelib_tzinfo *tz, int32_t offset, int isdst, char *abbr) in add_new_ttinfo_index() argument
408 tz->type[tz->bit64.typecnt].offset = offset; in add_new_ttinfo_index()
499 (long int) tz->type[i].offset, in format_offset_type()
551 tz->leap_times[i].offset in timelib_dump_tzinfo()
885 int32_t offset = 0, leap_secs = 0; in timelib_get_time_zone_info() local
891 offset = to->offset; in timelib_get_time_zone_info()
896 offset = 0; in timelib_get_time_zone_info()
903 leap_secs = -tl->offset; in timelib_get_time_zone_info()
906 tmp->offset = offset; in timelib_get_time_zone_info()
913 int timelib_get_time_zone_offset_info(timelib_sll ts, timelib_tzinfo *tz, int32_t* offset, timelib_… in timelib_get_time_zone_offset_info() argument
923 if (offset) { in timelib_get_time_zone_offset_info()
924 *offset = to->offset; in timelib_get_time_zone_offset_info()
945 int32_t offset = 0; in timelib_get_current_offset() local
946 timelib_get_time_zone_offset_info(t->sse, t->tz_info, &offset, NULL, NULL); in timelib_get_current_offset()
947 return offset; in timelib_get_current_offset()