Searched refs:seconds (Results 1 - 25 of 471) sorted by last modified time

1234567891011>>

/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dtask.c204 #define TASK_WAKEUPS_MONITOR_DEFAULT_INTERVAL 300 /* in seconds. */
214 int task_wakeups_monitor_interval; /* In seconds. Time period over which wakeups rate is observed */
2543 basic_info->user_time.seconds =
2544 (typeof(basic_info->user_time.seconds))secs;
2548 basic_info->system_time.seconds =
2549 (typeof(basic_info->system_time.seconds))secs;
2581 basic_info->user_time.seconds =
2582 (typeof(basic_info->user_time.seconds))secs;
2586 basic_info->system_time.seconds =
2587 (typeof(basic_info->system_time.seconds))sec
[all...]
H A Dthread.c1430 user_time->seconds = (typeof(user_time->seconds))secs;
1434 system_time->seconds = (typeof(system_time->seconds))secs;
1440 user_time->seconds = (typeof(user_time->seconds))secs;
1443 system_time->seconds = 0;
1727 "It used more than %d%% CPU (Actual recent usage: %d%%) over %d seconds. "
1728 "thread lifetime cpu usage %d.%06d seconds, (%d.%06d user, %d.%06d system) "
1733 thread_total_time.seconds, thread_total_tim
[all...]
H A Dbsd_kern.c740 ptinfo->pth_user_time = ((basic_info.user_time.seconds * (integer_t)NSEC_PER_SEC) + (basic_info.user_time.microseconds * (integer_t)NSEC_PER_USEC));
741 ptinfo->pth_system_time = ((basic_info.system_time.seconds * (integer_t)NSEC_PER_SEC) + (basic_info.system_time.microseconds * (integer_t)NSEC_PER_USEC));
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dkern_resource.c1197 ut.tv_sec = tinfo.user_time.seconds;
1199 st.tv_sec = tinfo.system_time.seconds;
1208 ut.tv_sec = ttimesinfo.user_time.seconds;
1210 st.tv_sec = ttimesinfo.system_time.seconds;
/macosx-10.10.1/top-100.1.2/
H A Dlibtop.c198 (r)->tv_sec = (a)->seconds; \
/macosx-10.10.1/llvmCore-3425.0.34/utils/Misc/
H A Dzkill32 seconds,fseconds = value.split('.',1)
34 seconds = value
35 return int(minutes) * 60 + int(seconds) + float('.'+fseconds)
195 help="Kill processes with CPU time >= N (seconds)",
198 help="Kill processes with CPU time <= N (seconds)",
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DTimer.cpp141 Result.WallTime = now.seconds() + now.microseconds() / 1000000.0;
142 Result.UserTime = user.seconds() + user.microseconds() / 1000000.0;
143 Result.SystemTime = sys.seconds() + sys.microseconds() / 1000000.0;
334 OS << format(" Total Execution Time: %5.4f seconds (%5.4f wall clock)\n",
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/Unix/
H A DProcess.inc127 user_time.seconds(0);
129 sys_time.seconds(0);
322 return hash_combine(Now.seconds(), Now.nanoseconds(), ::getpid());
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DTimeValue.h68 typedef int64_t SecondsType; ///< Type used for representing seconds.
85 /// Caller provides the exact value in seconds and nanoseconds. The
88 explicit TimeValue (SecondsType seconds, NanoSecondsType nanos = 0) argument
89 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
91 /// Caller provides the exact value as a double in seconds with the
192 /// Returns only the seconds component of the TimeValue. The nanoseconds
194 /// @brief Retrieve the seconds component
195 SecondsType seconds() const { return seconds_; } function in class:llvm::sys::TimeValue
197 /// Returns only the nanoseconds component of the TimeValue. The seconds
245 /// Converts the TimeValue into the corresponding number of seconds
263 getTimespecTime( uint64_t& seconds, uint32_t& nanos ) const argument
281 void seconds (SecondsType sec ) { function in class:llvm::sys::TimeValue
[all...]
/macosx-10.10.1/dyld-353.2.1/src/
H A DImageLoader.cpp1050 uint32_t seconds = secondsTimeTen/10; local
1053 dyld::log("%s: %u.%u seconds (%u.%u%%)\n", msg, seconds, secondsTimeTen-seconds*10, percent, percentTimesTen-percent*10);
/macosx-10.10.1/cddafs-253/FilesystemProber/
H A Dcddafs_util.cpp1298 trackDescriptorPtr->PMSF.leadOutStartPosition.seconds ) * 75 +
1341 trackDescriptorPtr->PMSF.startPosition.seconds ) * 75 +
/macosx-10.10.1/PowerManagement-494.1.2/AppleSmartBatteryManager/
H A DAppleSmartBattery.cpp63 static const uint32_t kBatteryReadAllTimeout = 10000; // 10 seconds
247 // Publish the intended period in seconds that our "time remaining"
251 // Publish the necessary time period (in seconds) that a battery
681 // Wait up to 3 seconds for the SMC to set/clear bit 0x10
1103 // up to 30 seconds for the charge disable to be reflected in
1382 void AppleSmartBattery::setAverageTimeToEmpty(int seconds) { argument
1383 OSNumber *n = OSNumber::withNumber(seconds, 32);
1389 void AppleSmartBattery::setAverageTimeToFull(int seconds) { argument
1390 OSNumber *n = OSNumber::withNumber(seconds, 32);
H A DAppleSmartBattery.h110 void setInstantaneousTimeToEmpty(int seconds);
116 void setAverageTimeToEmpty(int seconds);
120 void setAverageTimeToFull(int seconds);
/macosx-10.10.1/PowerManagement-494.1.2/pmset/
H A Dpmset.c2662 int seconds = createdSince % 60; local
2663 snprintf(ageString, sizeof(ageString), "%02d:%02d:%02d ", hours, minutes, seconds);
4974 printf("Error: You need to specify an interval in seconds\n");
4981 printf("Error: You need to specify an interval in seconds\n");
/macosx-10.10.1/Chess-310.6/Sources/
H A DMBCAnimation.h60 - (void) runWithTime:(float)seconds view:(MBCBoardView *)view;
H A DMBCAnimation.mm100 - (void) runWithTime:(float)seconds view:(MBCBoardView *)view
103 fTime = seconds;
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/SecureObjectSync/
H A DSOSAccount.c264 bool SOSAccountCleanupAfterPeer(SOSAccountRef account, size_t seconds, SOSCircleRef circle, argument
299 if(SOSPeerInfoRetireRetirementTicket(seconds, cleanupPeer)) {
312 bool SOSAccountCleanupRetirementTickets(SOSAccountRef account, size_t seconds, CFErrorRef* error) { argument
330 !SOSPeerInfoRetireRetirementTicket(seconds, retired_peer)) {
866 secnotice("circle", "Attempting to leave circle - best effort - in %llu seconds\n", limit_in_seconds);
H A DSOSAccount.h182 bool SOSAccountCleanupAfterPeer(SOSAccountRef account, size_t seconds, SOSCircleRef circle,
185 bool SOSAccountCleanupRetirementTickets(SOSAccountRef account, size_t seconds, CFErrorRef* error);
H A DSOSCircle.c808 uint32_t seconds = CFAbsoluteTimeGetCurrent(); // seconds local
809 value = GenerationSetHighBits(value, (seconds >> 1));
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/mac/
H A DViewGestureControllerMac.mm81 static const std::chrono::seconds swipeSnapshotRemovalWatchdogDuration = 5_s;
82 static const std::chrono::seconds swipeSnapshotRemovalWatchdogAfterFirstVisuallyNonEmptyLayoutDuration = 3_s;
H A DWebPageProxyMac.mm340 const auto messageTimeout = std::chrono::seconds(20);
351 const auto messageTimeout = std::chrono::seconds(20);
366 const auto messageTimeout = std::chrono::seconds(20);
501 const auto messageTimeout = std::chrono::seconds(3);
512 const auto messageTimeout = std::chrono::seconds(3);
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebView.cpp508 auto deadDecodedDataDeletionInterval = std::chrono::seconds { 0 };
621 deadDecodedDataDeletionInterval = std::chrono::seconds { 60 };
/macosx-10.10.1/Security-57031.1.35/Security/include/security_ocspd/
H A DocspdUtils.cpp56 * fractional seconds or time zone info, to a CFAbsoluteTime. Returns
267 int seconds = (int)greg.second; local
270 greg.minute, seconds);
/macosx-10.10.1/Security-57031.1.35/Security/include/security_smime/
H A DtsaTemplates.c58 seconds INTEGER OPTIONAL,
75 offsetof(SecAsn1TSAAccuracy, seconds) },
220 seconds INTEGER OPTIONAL,
H A DtsaTemplates.h51 CSSM_DATA seconds; // INTEGER optional member in struct:__anon3898

Completed in 735 milliseconds

1234567891011>>