Lines Matching refs:timerStop

107     clock_t timerStop = 0;
111 timerStop = clock();
116 duration += static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC;
117 g_mallocDuration += static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC;
122 timerStop = clock();
123 duration += static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC;
124 g_freeDuration += static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC;
125 printf("free success, free time is %f\n", static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC);
134 clock_t timerStop = 0;
138 timerStop = clock();
143 duration += static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC;
144 g_callocDuration += static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC;
149 timerStop = clock();
150 duration += static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC;
151 g_freeDuration += static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC;
152 printf("free success, free time is %f\n", static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC);
166 clock_t timerStop = 0;
175 timerStop = clock();
181 duration += static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC;
182 g_reallocDuration += static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC;
187 timerStop = clock();
188 duration += static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC;
189 g_freeDuration += static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC;
190 printf("free success, free time is %f\n", static_cast<double>(timerStop - timerStart) / CLOCKS_PER_SEC);