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

  /external/v8/src/
date.cc 46 segment->start_sec = kMaxEpochTimeInSec;
194 after_->start_sec <= time_sec + kDefaultDSTDeltaInSec &&
197 after_->start_sec = time_sec;
200 if (after_->start_sec <= after_->end_sec) {
204 after_->start_sec = time_sec;
228 if (before_->start_sec <= time_sec &&
237 DCHECK(InvalidSegment(before_) || before_->start_sec <= time_sec);
238 DCHECK(InvalidSegment(after_) || time_sec < after_->start_sec); local
242 before_->start_sec = time_sec;
273 // Note that start_sec of invalid segments is kMaxEpochTimeInSec
353 DCHECK(InvalidSegment(after) || time_sec < after->start_sec); local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/test/
RTPFile.cc 153 uint32_t start_sec, start_usec, source; local
157 EXPECT_EQ(1u, fread(&start_sec, 4, 1, _rtpFile));
158 start_sec = ntohl(start_sec);
  /external/e2fsprogs/lib/ext2fs/
dosio.h 64 unsigned char start_sec; member in struct:__anon19038
  /external/webrtc/talk/media/base/
rtpdump.cc 49 : start_sec(start_ms / 1000),
57 buf->WriteUInt32(start_sec);
178 uint32_t start_sec; local
180 buf.ReadUInt32(&start_sec);
182 start_time_ms_ = start_sec * 1000 + start_usec / 1000;
rtpdump.h 64 uint32_t start_sec; // start of recording, the seconds part. member in struct:cricket::RtpDumpFileHeader
  /external/webrtc/webrtc/test/
rtp_file_reader.cc 160 uint32_t start_sec; local
165 TRY(ReadUint32(&start_sec, file_));
  /external/toybox/toys/pending/
fdisk.c 454 uint32_t start_cyl, end_cyl, start_sec, end_sec, blocks, secs; local
472 start_sec = swap_le32toh(p->start4) + partitions[i].start_offset;
475 if ((start_sec + secs) == 0) end_sec = 0;
476 else end_sec = start_sec + secs -1;
477 start_cyl = start_sec/(g_heads * g_sectors) + 1;
490 disp_unit_cyl == 0? start_sec: start_cyl,
867 static sector_t ask_end_sector(int idx, sector_t* begin, sector_t* end, int ext_idx, sector_t start_sec)
869 sector_t limit, temp = 0, start_cyl, limit_cyl, start = start_sec;
    [all...]

Completed in 185 milliseconds