Lines Matching refs:offset
49 int16_t offset; in udf_disk_stamp_to_time() local
52 offset = typeAndTimezone << 4; in udf_disk_stamp_to_time()
54 offset = (offset >> 4); in udf_disk_stamp_to_time()
55 if (offset == -2047) /* unspecified offset */ in udf_disk_stamp_to_time()
56 offset = 0; in udf_disk_stamp_to_time()
58 offset = 0; in udf_disk_stamp_to_time()
62 dest->tv_sec -= offset * 60; in udf_disk_stamp_to_time()
76 int16_t offset; in udf_time_to_disk_stamp() local
79 offset = -sys_tz.tz_minuteswest; in udf_time_to_disk_stamp()
81 dest->typeAndTimezone = cpu_to_le16(0x1000 | (offset & 0x0FFF)); in udf_time_to_disk_stamp()
83 seconds = ts.tv_sec + offset * 60; in udf_time_to_disk_stamp()