Lines Matching refs:ntime
477 nfs4_time_ntov(nfstime4 *ntime, timestruc_t *vatime) in nfs4_time_ntov() argument
489 if (! NFS4_TIME_OK(ntime->seconds)) { in nfs4_time_ntov()
495 if (ntime->nseconds >= 1000000000) in nfs4_time_ntov()
498 if (ntime->seconds < 0) { in nfs4_time_ntov()
499 sec = ntime->seconds + 1; in nfs4_time_ntov()
500 nsec = -1000000000 + ntime->nseconds; in nfs4_time_ntov()
502 sec = ntime->seconds; in nfs4_time_ntov()
503 nsec = ntime->nseconds; in nfs4_time_ntov()
513 nfs4_time_vton(timestruc_t *vatime, nfstime4 *ntime) in nfs4_time_vton() argument
530 ntime->seconds = sec; in nfs4_time_vton()
531 ntime->nseconds = nsec; in nfs4_time_vton()