Searched refs:start_sec (Results 1 - 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/date/ |
H A D | date.cc | 76 segment->start_sec = kMaxEpochTimeInSec; in ClearSegment() 280 after_->start_sec - kDefaultDSTDeltaInSec <= time_sec && in ExtendTheAfterSegment() 283 after_->start_sec = time_sec; in ExtendTheAfterSegment() 290 after_->start_sec = time_sec; in ExtendTheAfterSegment() 313 if (before_->start_sec <= time_sec && time_sec <= before_->end_sec) { in DaylightSavingsOffsetInMs() 321 DCHECK(InvalidSegment(before_) || before_->start_sec <= time_sec); in DaylightSavingsOffsetInMs() 322 DCHECK(InvalidSegment(after_) || time_sec < after_->start_sec); in DaylightSavingsOffsetInMs() local 326 before_->start_sec = time_sec; in DaylightSavingsOffsetInMs() 357 // Note that start_sec of invalid segments is kMaxEpochTimeInSec. in DaylightSavingsOffsetInMs() 362 if (new_after_start_sec <= after_->start_sec) { in DaylightSavingsOffsetInMs() 439 DCHECK(InvalidSegment(after) || time_sec < after->start_sec); ProbeDST() local [all...] |
H A D | date.h | 184 int start_sec; member 213 return segment->start_sec > segment->end_sec; in InvalidSegment()
|
/third_party/ffmpeg/libavformat/ |
H A D | asfenc.c | 974 static int update_index(AVFormatContext *s, int start_sec, in update_index() argument 980 if (start_sec > asf->next_start_sec) { in update_index() 987 if (start_sec > asf->nb_index_memory_alloc) { in update_index() 989 asf->nb_index_memory_alloc = (start_sec + ASF_INDEX_BLOCK) & ~(ASF_INDEX_BLOCK - 1); in update_index() 997 for (int i = asf->next_start_sec; i < start_sec; i++) { in update_index() 1009 asf->next_start_sec = start_sec; in update_index() 1022 int start_sec; in asf_write_packet() local 1047 start_sec = (int)((PREROLL_TIME * 10000 + pts + ASF_INDEXED_INTERVAL - 1) in asf_write_packet() 1053 ret = update_index(s, start_sec, packet_number, packet_count, offset); in asf_write_packet() 1057 asf->end_sec = start_sec; in asf_write_packet() [all...] |
/third_party/toybox/toys/pending/ |
H A D | fdisk.c | 454 uint32_t start_cyl, end_cyl, start_sec, end_sec, blocks, secs; in list_partitions() local 472 start_sec = swap_le32toh(p->start4) + partitions[i].start_offset; in list_partitions() 475 if ((start_sec + secs) == 0) end_sec = 0; in list_partitions() 476 else end_sec = start_sec + secs -1; in list_partitions() 477 start_cyl = start_sec/(g_heads * g_sectors) + 1; in list_partitions() 490 disp_unit_cyl == 0? start_sec: start_cyl, in list_partitions() 867 static sector_t ask_end_sector(int idx, sector_t* begin, sector_t* end, int ext_idx, sector_t start_sec) in ask_end_sector() argument 869 sector_t limit, temp = 0, start_cyl, limit_cyl, start = start_sec; in ask_end_sector()
|
Completed in 6 milliseconds