Lines Matching refs:offset
35 int16_t offset; in udf_disk_stamp_to_time() local
38 offset = typeAndTimezone << 4; in udf_disk_stamp_to_time()
40 offset = (offset >> 4); in udf_disk_stamp_to_time()
41 if (offset == -2047) /* unspecified offset */ in udf_disk_stamp_to_time()
42 offset = 0; in udf_disk_stamp_to_time()
44 offset = 0; in udf_disk_stamp_to_time()
48 dest->tv_sec -= offset * 60; in udf_disk_stamp_to_time()
67 int16_t offset; in udf_time_to_disk_stamp() local
70 offset = -sys_tz.tz_minuteswest; in udf_time_to_disk_stamp()
72 dest->typeAndTimezone = cpu_to_le16(0x1000 | (offset & 0x0FFF)); in udf_time_to_disk_stamp()
74 seconds = ts.tv_sec + offset * 60; in udf_time_to_disk_stamp()