Lines Matching full:tend
377 static struct tms tstart,tend;
383 times(&tend);
384 ret=((double)(tend.tms_utime-tstart.tms_utime))/HZ;
388 static clock_t tstart,tend;
397 tend=clock();
398 ret=(double)((double)(tend)-(double)(tstart));
418 static struct timeb tstart,tend;
425 ftime(&tend);
426 i=(long)tend.millitm-(long)tstart.millitm;
427 ret=((double)(tend.time-tstart.time))+((double)i)/1000.0;