Lines Matching defs:src
44 udf_disk_stamp_to_time(struct timespec64 *dest, struct timestamp src)
46 u16 typeAndTimezone = le16_to_cpu(src.typeAndTimezone);
47 u16 year = le16_to_cpu(src.year);
60 dest->tv_sec = mktime64(year, src.month, src.day, src.hour, src.minute,
61 src.second);
63 dest->tv_nsec = 1000 * (src.centiseconds * 10000 +
64 src.hundredsOfMicroseconds * 100 + src.microseconds);