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

  /external/v8/src/
date.cc 47 segment->end_sec = -kMaxEpochTimeInSec;
195 time_sec <= after_->end_sec) {
200 if (after_->start_sec <= after_->end_sec) {
205 after_->end_sec = time_sec;
229 time_sec <= before_->end_sec) {
243 before_->end_sec = time_sec;
249 if (time_sec <= before_->end_sec) {
255 if (time_sec > before_->end_sec + kDefaultDSTDeltaInSec) {
268 // before_->end_sec and before_->end_sec + default DST delta
    [all...]
date.h 232 int end_sec;
260 return segment->start_sec > segment->end_sec;
  /art/runtime/base/
time_utils.cc 207 int64_t end_sec = ts->tv_sec + ms / 1000; local
209 if (UNLIKELY(end_sec >= int32_max)) {
215 LOG(INFO) << "Note: end time exceeds INT32_MAX: " << end_sec;
217 end_sec = int32_max - 1; // Allow for increment below.
219 ts->tv_sec = end_sec;
  /external/e2fsprogs/lib/ext2fs/
dosio.h 68 unsigned char end_sec; member in struct:__anon17820
  /external/toybox/toys/pending/
fdisk.c 454 uint32_t start_cyl, end_cyl, start_sec, end_sec, blocks, secs; local
475 if ((start_sec + secs) == 0) end_sec = 0;
476 else end_sec = start_sec + secs -1;
478 end_cyl = end_sec/(g_heads * g_sectors) + 1;
491 disp_unit_cyl == 0? end_sec: end_cyl,
917 sector_t start, end, begin_sec[num_parts], end_sec[num_parts]; local
930 end_sec[i] = 0;
933 end_sec[i] = begin_sec[i] + swap_le32toh(p->size4) - 1;
937 start = ask_start_sector(idx, begin_sec, end_sec, ext_idx);
938 end = ask_end_sector(idx, begin_sec, end_sec, ext_idx, start)
1085 sector_t begin_sec[num_parts], end_sec[num_parts], total = 1; local
    [all...]

Completed in 1181 milliseconds