Home | History | Annotate | Download | only in dist

Lines Matching refs:pStart

24696 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){
24697 return (pEnd->tv_usec - pStart->tv_usec)*0.000001 +
24698 (double)(pEnd->tv_sec - pStart->tv_sec);
24788 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){
24789 sqlite_int64 i64Start = *((sqlite_int64 *) pStart);