Home | History | Annotate | Download | only in dist

Lines Matching refs:pStart

115 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){
116 return (pEnd->tv_usec - pStart->tv_usec)*0.000001 +
117 (double)(pEnd->tv_sec - pStart->tv_sec);
186 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){
187 sqlite_int64 i64Start = *((sqlite_int64 *) pStart);