Lines Matching defs:times
1454 * Get high precision NTFS times
1467 u64 *times;
1481 times = (u64*)value;
1482 times[0] = sle64_to_cpu(std_info->creation_time);
1485 times[1] = sle64_to_cpu(std_info->last_data_change_time);
1489 times[2] = sle64_to_cpu(std_info->last_access_time);
1493 times[3] = sle64_to_cpu(std_info->last_mft_change_time);
1508 * Set high precision NTFS times
1514 * The times are inserted directly in the standard_information and
1515 * file names attributes to avoid manipulating low precision times
1527 u64 times[4];
1535 memcpy(times, value,
1536 (size < sizeof(times) ? size : sizeof(times)));
1550 * Mark times set to avoid overwriting
1555 * return sub-second times in getattr()
1558 std_info->creation_time = cpu_to_sle64(times[0]);
1562 std_info->last_data_change_time = cpu_to_sle64(times[1]);
1567 std_info->last_access_time = cpu_to_sle64(times[2]);
1585 = cpu_to_sle64(times[0]);
1588 = cpu_to_sle64(times[1]);
1591 = cpu_to_sle64(times[2]);