Searched refs:runTime (Results 1 - 6 of 6) sorted by relevance

/haiku/src/tests/system/kernel/
H A Dsyscall_time.cpp29 bigtime_t runTime = system_time() - startTime; local
38 runTime -= system_time() - startTime;
40 printf("%f usecs/syscall\n", 1.0 * runTime / loops);
/haiku/src/apps/debuganalyzer/model/
H A DModel.cpp390 Model::Thread::AddRun(nanotime_t runTime) argument
393 fTotalRunTime += runTime;
395 if (fMinRunTime < 0 || runTime < fMinRunTime)
396 fMinRunTime = runTime;
397 if (runTime > fMaxRunTime)
398 fMaxRunTime = runTime;
403 Model::Thread::AddRerun(nanotime_t runTime) argument
406 fTotalRerunTime += runTime;
408 if (fMinRerunTime < 0 || runTime < fMinRerunTime)
409 fMinRerunTime = runTime;
429 AddPreemption(nanotime_t runTime) argument
[all...]
H A DModel.h484 void AddRun(nanotime_t runTime);
485 void AddRerun(nanotime_t runTime);
487 void AddPreemption(nanotime_t runTime);
/haiku/src/bin/debug/time_stats/
H A Dtiming_analysis.cpp95 bigtime_t runTime = endTime - startTime; local
170 printf("\nTotal run time: %lld us\n", runTime);
190 (double)total / runTime * 100);
/haiku/src/tests/system/kernel/scheduler/
H A Dmain.cpp356 bigtime_t runTime = 1000000; local
363 runTime *= strtol(optarg, 0, NULL);
364 if (runTime <= 0) {
385 snooze(runTime);
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5211/
H A Dar5211_reset.c113 uint8_t runTime, int16_t startingNF);
837 * in runTime (valid values 1 to 7)
842 ar5211RunNoiseFloor(struct ath_hal *ah, uint8_t runTime, int16_t startingNF) argument
846 HALASSERT(runTime <= 7);
851 ((runTime << 9) & 0xE00) | (startingNF & 0x1FF));
857 if (runTime == 0) {
862 searchTime = (runTime * 512) * 7;
879 "NF with runTime %d failed to end on channel %d\n",
880 runTime, AH_PRIVATE(ah)->ah_curchan->ic_freq);

Completed in 99 milliseconds