Lines Matching refs:dst_
34 ClearSegment(&dst_[i]); in ResetDateCache()
37 before_ = &dst_[0]; in ResetDateCache()
38 after_ = &dst_[1]; in ResetDateCache()
223 ClearSegment(&dst_[i]); in DaylightSavingsOffsetInMs()
328 if (dst_[i].start_sec <= time_sec) { in ProbeDST()
329 if (before == NULL || before->start_sec < dst_[i].start_sec) { in ProbeDST()
330 before = &dst_[i]; in ProbeDST()
332 } else if (time_sec < dst_[i].end_sec) { in ProbeDST()
333 if (after == NULL || after->end_sec > dst_[i].end_sec) { in ProbeDST()
334 after = &dst_[i]; in ProbeDST()
365 if (&dst_[i] == skip) continue; in LeastRecentlyUsedDST()
366 if (result == NULL || result->last_used > dst_[i].last_used) { in LeastRecentlyUsedDST()
367 result = &dst_[i]; in LeastRecentlyUsedDST()