HomeSort by relevance Sort by last modified time
    Searched defs:time_sec (Results 1 - 5 of 5) sorted by null

  /external/ltp/testcases/kernel/syscalls/alarm/
alarm07.c 88 int time_sec = 3; local
101 * 'time_sec' to send SIGALRM to the process.
103 TEST(alarm(time_sec));
  /external/boringssl/src/crypto/asn1/
time_support.c 145 int time_sec, time_year, time_month, time_day; local
149 if (!julian_adj(tm, off_day, offset_sec, &time_jd, &time_sec)) {
167 tm->tm_hour = time_sec / 3600;
168 tm->tm_min = (time_sec / 60) % 60;
169 tm->tm_sec = time_sec % 60;
  /system/core/libutils/include/utils/
Condition.h 139 int64_t time_sec = ts.tv_sec; local
140 if (time_sec > INT64_MAX - reltime_sec) {
141 time_sec = INT64_MAX;
143 time_sec += reltime_sec;
146 ts.tv_sec = (time_sec > LONG_MAX) ? LONG_MAX : static_cast<long>(time_sec);
  /external/v8/src/
date.cc 192 void DateCache::ExtendTheAfterSegment(int time_sec, int offset_ms) {
194 after_->start_sec <= time_sec + kDefaultDSTDeltaInSec &&
195 time_sec <= after_->end_sec) {
197 after_->start_sec = time_sec;
204 after_->start_sec = time_sec;
205 after_->end_sec = time_sec;
213 int time_sec = (time_ms >= 0 && time_ms <= kMaxEpochTimeInMs) local
228 if (before_->start_sec <= time_sec &&
229 time_sec <= before_->end_sec) {
235 ProbeDST(time_sec);
    [all...]
  /external/fio/
verify.h 45 uint32_t time_sec; member in struct:verify_header

Completed in 726 milliseconds