Home
last modified time | relevance | path

Searched refs:toDuration (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DUnix.h82 inline std::chrono::microseconds toDuration(const struct timeval &TV) { in toDuration() function
H A DProcess.inc62 return { toDuration(RU.ru_utime), toDuration(RU.ru_stime) };
H A DProgram.inc453 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 DWindowsSupport.h201 inline std::chrono::nanoseconds toDuration(FILETIME Time) { in toDuration() function
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gc/impl/conservative/
H A Dgc.d1339 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 Dgc.d1566 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 DProcess.inc93 user_time = toDuration(UserTime);
94 sys_time = toDuration(KernelTime);
H A DProgram.inc452 toDuration(UserTime));
454 toDuration(KernelTime));