Lines Matching refs:Year
18 // The implementation assumes that this year's rules for daylight savings
111 // denoted by the system date+time d in the given year.
113 func pseudoUnix(year int, d *syscall.Systemtime) int64 {
120 t := Date(year, Month(d.Month), day, int(d.Hour), int(d.Minute), int(d.Second), 0, UTC)
131 if day > daysIn(Month(d.Month), year) {
186 // 2 tx per year, 100 years on each side of this year
190 year := t.Year()
192 for y := year - 100; y < year+100; y++ {