Home | History | Annotate | Download | only in unicode

Lines Matching full:double

51  *          double timeTaken = 0;
58 * timeTaken = utimer_loopUntilDone((double)10,(void*) param, NormFn, &loopCount);
65 * double perfNormalization(NormFn fn,const char* mode,Line* fileLines,int32_t loopCount){
72 * double elapsedTime = 0;
137 * double NFDTimeTaken, NFCTimeTaken, FCDTimeTaken;
178 double uprv_delta(UTimer* timer1, UTimer* timer2){
179 return ((double)(timer2->start.QuadPart - timer1->start.QuadPart))/((double)timer1->placeHolder.QuadPart);
200 double uprv_delta(UTimer* timer1, UTimer* timer2){
201 double t1, t2;
203 t1 = (double)timer1->start.tv_sec + (double)timer1->start.tv_usec/(1000*1000);
204 t2 = (double)timer2->start.tv_sec + (double)timer2->start.tv_usec/(1000*1000);
231 static U_INLINE double U_EXPORT2
246 static U_INLINE double U_EXPORT2
262 static U_INLINE double U_EXPORT2
263 utimer_loopUntilDone(double thresholdTimeVal,
268 double currentVal=0;