Searched refs:toDuration (Results 1 – 8 of 8) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/ |
H A D | Unix.h | 82 inline std::chrono::microseconds toDuration(const struct timeval &TV) { in toDuration() function
|
H A D | Process.inc | 62 return { toDuration(RU.ru_utime), toDuration(RU.ru_stime) };
|
H A D | Program.inc | 453 std::chrono::microseconds UserT = toDuration(Info.ru_utime); 454 std::chrono::microseconds KernelT = toDuration(Info.ru_stime);
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/Windows/ |
H A D | WindowsSupport.h | 201 inline std::chrono::nanoseconds toDuration(FILETIME Time) { in toDuration() function
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gc/impl/conservative/ |
H A D | gc.d | 1339 static Duration toDuration(long dur) 1345 …printf("\tmalloc: %llu calls, %lld ms\n", cast(ulong)numMallocs, toDuration(mallocTime).total!"ms… 1346 …printf("\trealloc: %llu calls, %lld ms\n", cast(ulong)numReallocs, toDuration(reallocTime).total!"… 1347 …printf("\tfree: %llu calls, %lld ms\n", cast(ulong)numFrees, toDuration(freeTime).total!"msecs"… 1348 …printf("\textend: %llu calls, %lld ms\n", cast(ulong)numExtends, toDuration(extendTime).total!"ms… 1349 …printf("\tother: %llu calls, %lld ms\n", cast(ulong)numOthers, toDuration(otherTime).total!"msec… 1350 printf("\tlock time: %lld ms\n", toDuration(lockTime).total!"msecs"); 1353 printf("\tGC API: %lld ms\n", toDuration(apiTime).total!"msecs"); 1354 sprintf(apitxt.ptr, " API%5ld ms", toDuration(apiTime).total!"msecs");
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/gc/impl/conservative/ |
H A D | gc.d | 1566 static Duration toDuration(long dur) 1572 …printf("\tmalloc: %llu calls, %lld ms\n", cast(ulong)numMallocs, toDuration(mallocTime).total!"ms… 1573 …printf("\trealloc: %llu calls, %lld ms\n", cast(ulong)numReallocs, toDuration(reallocTime).total!"… 1574 …printf("\tfree: %llu calls, %lld ms\n", cast(ulong)numFrees, toDuration(freeTime).total!"msecs"… 1575 …printf("\textend: %llu calls, %lld ms\n", cast(ulong)numExtends, toDuration(extendTime).total!"ms… 1576 …printf("\tother: %llu calls, %lld ms\n", cast(ulong)numOthers, toDuration(otherTime).total!"msec… 1577 printf("\tlock time: %lld ms\n", toDuration(lockTime).total!"msecs"); 1580 printf("\tGC API: %lld ms\n", toDuration(apiTime).total!"msecs"); 1581 sprintf(apitxt.ptr, " API%5ld ms", toDuration(apiTime).total!"msecs");
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/ |
H A D | Process.inc | 93 user_time = toDuration(UserTime); 94 sys_time = toDuration(KernelTime);
|
H A D | Program.inc | 452 toDuration(UserTime)); 454 toDuration(KernelTime));
|