Lines Matching refs:timerStop
109 clock_t timerStop = 0;
113 timerStop = clock();
118 duration += (double)(timerStop - timerStart) / CLOCKS_PER_SEC;
119 g_mallocDuration += (double)(timerStop - timerStart) / CLOCKS_PER_SEC;
124 timerStop = clock();
125 duration += (double)(timerStop - timerStart) / CLOCKS_PER_SEC;
126 g_freeDuration += (double)(timerStop - timerStart) / CLOCKS_PER_SEC;
127 printf("free success, free time is %f\n", (double)(timerStop - timerStart) / CLOCKS_PER_SEC);
136 clock_t timerStop = 0;
140 timerStop = clock();
145 duration += (double)(timerStop - timerStart) / CLOCKS_PER_SEC;
146 g_callocDuration += (double)(timerStop - timerStart) / CLOCKS_PER_SEC;
151 timerStop = clock();
152 duration += (double)(timerStop - timerStart) / CLOCKS_PER_SEC;
153 g_freeDuration += (double)(timerStop - timerStart) / CLOCKS_PER_SEC;
154 printf("free success, free time is %f\n", (double)(timerStop - timerStart) / CLOCKS_PER_SEC);
167 clock_t timerStop = 0;
176 timerStop = clock();
182 duration += (double)(timerStop - timerStart) / CLOCKS_PER_SEC;
183 g_reallocDuration += (double)(timerStop - timerStart) / CLOCKS_PER_SEC;
188 timerStop = clock();
189 duration += (double)(timerStop - timerStart) / CLOCKS_PER_SEC;
190 g_freeDuration += (double)(timerStop - timerStart) / CLOCKS_PER_SEC;
191 printf("free success, free time is %f\n", (double)(timerStop - timerStart) / CLOCKS_PER_SEC);