ts2              1040 source3/include/proto.h 			   const struct timespec *ts2);
ts2              1041 source3/include/proto.h int timespec_compare(const struct timespec *ts1, const struct timespec *ts2);
ts2               707 source3/lib/time.c 			   const struct timespec *ts2)
ts2               709 source3/lib/time.c 	if (ts1->tv_sec < ts2->tv_sec) return *ts1;
ts2               710 source3/lib/time.c 	if (ts1->tv_sec > ts2->tv_sec) return *ts2;
ts2               711 source3/lib/time.c 	if (ts1->tv_nsec < ts2->tv_nsec) return *ts1;
ts2               712 source3/lib/time.c 	return *ts2;
ts2               722 source3/lib/time.c int timespec_compare(const struct timespec *ts1, const struct timespec *ts2)
ts2               724 source3/lib/time.c 	if (ts1->tv_sec  > ts2->tv_sec)  return 1;
ts2               725 source3/lib/time.c 	if (ts1->tv_sec  < ts2->tv_sec)  return -1;
ts2               726 source3/lib/time.c 	if (ts1->tv_nsec > ts2->tv_nsec) return 1;
ts2               727 source3/lib/time.c 	if (ts1->tv_nsec < ts2->tv_nsec) return -1;