Searched refs:tm2 (Results 1 – 2 of 2) sorted by relevance
61 tm->QuadPart -= tm2->QuadPart; in profile_sub()63 tm->tv_usec -= tm2->tv_usec; in profile_sub()64 tm->tv_sec -= tm2->tv_sec; in profile_sub()188 profile_zero(tm2); in profile_divide()197 tm2->tv_usec = vim_round(usec - (tm2->tv_sec * 1000000.0)); in profile_divide()216 tm->QuadPart += tm2->QuadPart; in profile_add()218 tm->tv_usec += tm2->tv_usec; in profile_add()219 tm->tv_sec += tm2->tv_sec; in profile_add()279 return (tm1->tv_usec == tm2->tv_usec && tm1->tv_sec == tm2->tv_sec); in profile_equal()292 if (tm1->tv_sec == tm2->tv_sec) in profile_cmp()[all …]
4 void profile_sub(proftime_T *tm, proftime_T *tm2);10 void profile_divide(proftime_T *tm, int count, proftime_T *tm2);11 void profile_add(proftime_T *tm, proftime_T *tm2);14 int profile_cmp(const proftime_T *tm1, const proftime_T *tm2);