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