Home
last modified time | relevance | path

Searched refs:day (Results 251 - 275 of 518) sorted by relevance

1...<<1112131415161718192021

/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/bnxt/
H A Dbnxt_coredump.h40 __le16 day; member
/kernel/linux/linux-6.6/include/linux/
H A Dtime.h21 const unsigned int day, const unsigned int hour,
46 /* the day of the month, in the range 1 to 31 */
/third_party/icu/icu4c/source/i18n/
H A Dethpccal.h257 * Convert an Ethiopic year, month, and day to a Julian day.
261 * @param day the day
262 * @return Julian day
265 int32_t ethiopicToJD(int32_t year, int32_t month, int32_t day);
H A Dcoptccal.h228 * Convert an Coptic year, month, and day to a Julian day.
232 * @param day the day
233 * @return Julian day
236 static int32_t copticToJD(int32_t year, int32_t month, int32_t day);
H A Derarules.h51 * day of month in this order. When an era has no start date, the result
67 * Returns era index for the specified year/month/day.
70 * @param day Day of month
74 int32_t getEraIndex(int32_t year, int32_t month, int32_t day, UErrorCode& status) const;
H A Dchnsecal.cpp243 kEpochStartAsJulianDay + 1; // Julian day -> local days in handleGetMonthLength()
261 * calendar equivalents for the given Julian day.
311 * Return the Julian day number of day before the first day of the
319 * @return the Julian day number of the day before the first
320 * day of the given month and year
380 int32_t day = get(UCAL_JULIAN_DAY, status) - kEpochStartAsJulianDay; // Get local day in add() local
410 int32_t day = get(UCAL_JULIAN_DAY, status) - kEpochStartAsJulianDay; // Get local day roll() local
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dcecal.h125 * Convert an Coptic/Ethiopic year, month, and day to a Julian day.
129 * @param day the day
131 * @return Julian day
138 * Convert a Julian day to an Coptic/Ethiopic year, month and day
140 * @param julianDay the Julian day
144 * @param date receives the day
148 int32_t& year, int32_t& month, int32_t& day);
[all...]
H A Dcoptccal.h242 * Convert an Coptic year, month, and day to a Julian day.
246 * @param day the day
247 * @return Julian day
250 static int32_t copticToJD(int32_t year, int32_t month, int32_t day);
H A Derarules.h51 * day of month in this order. When an era has no start date, the result
67 * Returns era index for the specified year/month/day.
70 * @param day Day of month
74 int32_t getEraIndex(int32_t year, int32_t month, int32_t day, UErrorCode& status) const;
H A Dchnsecal.cpp247 kEpochStartAsJulianDay + 1; // Julian day -> local days in handleGetMonthLength()
265 * calendar equivalents for the given Julian day.
315 * Return the Julian day number of day before the first day of the
323 * @return the Julian day number of the day before the first
324 * day of the given month and year
385 int32_t day = get(UCAL_JULIAN_DAY, status) - kEpochStartAsJulianDay; // Get local day in add() local
416 int32_t day = get(UCAL_JULIAN_DAY, status) - kEpochStartAsJulianDay; // Get local day roll() local
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Derarules.h51 * day of month in this order. When an era has no start date, the result
67 * Returns era index for the specified year/month/day.
70 * @param day Day of month
74 int32_t getEraIndex(int32_t year, int32_t month, int32_t day, UErrorCode& status) const;
H A Dethpccal.h257 * Convert an Ethiopic year, month, and day to a Julian day.
261 * @param day the day
262 * @return Julian day
265 int32_t ethiopicToJD(int32_t year, int32_t month, int32_t day);
H A Dchnsecal.cpp243 kEpochStartAsJulianDay + 1; // Julian day -> local days in handleGetMonthLength()
261 * calendar equivalents for the given Julian day.
311 * Return the Julian day number of day before the first day of the
319 * @return the Julian day number of the day before the first
320 * day of the given month and year
380 int32_t day = get(UCAL_JULIAN_DAY, status) - kEpochStartAsJulianDay; // Get local day in add() local
410 int32_t day = get(UCAL_JULIAN_DAY, status) - kEpochStartAsJulianDay; // Get local day roll() local
[all...]
/third_party/skia/infra/bots/recipes/
H A Dupload_nano_results.py40 str(now.month).zfill(2), str(now.day).zfill(2), str(now.hour).zfill(2),
/kernel/linux/linux-5.10/drivers/firmware/
H A Ddmi_scan.c1005 * @dayp: optional out parameter for the day
1015 * On return, year, month and day are guaranteed to be in the
1020 int year = 0, month = 0, day = 0; in dmi_get_date() local
1058 day = simple_strtoul(s, &e, 10); in dmi_get_date()
1059 if (s == y || s == e || *e != '/' || day > 31) in dmi_get_date()
1060 day = 0; in dmi_get_date()
1067 *dayp = day; in dmi_get_date()
/kernel/linux/linux-6.6/drivers/firmware/
H A Ddmi_scan.c1012 * @dayp: optional out parameter for the day
1022 * On return, year, month and day are guaranteed to be in the
1027 int year = 0, month = 0, day = 0; in dmi_get_date() local
1065 day = simple_strtoul(s, &e, 10); in dmi_get_date()
1066 if (s == y || s == e || *e != '/' || day > 31) in dmi_get_date()
1067 day = 0; in dmi_get_date()
1074 *dayp = day; in dmi_get_date()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
H A Dtime_zone_format.cc117 tm.tm_mday = al.cs.day(); in ToTM()
135 // Returns the week of the year [0:53] given a civil day and the day on
138 const civil_day d(cd.year() % 400, cd.month(), cd.day()); in ToWeek()
402 bp = Format02d(ep, al.cs.day()); in format()
657 // and the day on which weeks are defined to start. Returns false if year
672 tm->tm_mday = cd.day(); in FromWeek()
990 if (cs.month() != month || cs.day() != tm.tm_mday) { in parse()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
H A DIBMCalendarTest.java573 // In pass one, change the first day of week so that the weeks in TestWeekShift()
633 * Make sure that when adding a day, we actually wind up in a
634 * different day. The DST adjustments we use to keep the hour
635 * constant across DST changes can backfire and change the day.
692 this.data = data; // year, month, week of month, day in TestJB1684()
933 // can't call this unless we get a transition day (unusual), in TestCoverage()
1001 assertEquals("Julian max day -1", julianDay, Calendar.MAX_JULIAN - 1); in TestCoverage()
1028 assertEquals("handleComputeFields: day set", 2, get(DAY_OF_MONTH)); in TestCoverage()
1183 private int day; field in IBMCalendarTest.CalFields
1189 CalFields(int year, int month, int day, in argument
1193 CalFields(int year, int month, int day, int hour, int min, int sec, int ms) CalFields() argument
[all...]
/kernel/linux/linux-5.10/drivers/rtc/
H A Drtc-mrst.c110 unsigned char mon, day, hrs, min, sec; in mrst_set_time() local
115 day = time->tm_mday; in mrst_set_time()
128 vrtc_cmos_write(day, RTC_DAY_OF_MONTH); in mrst_set_time()
H A Drtc-ds1553.c99 unsigned int year, month, day, hour, minute, second, week; in ds1553_rtc_read_time() local
110 day = readb(ioaddr + RTC_DATE); in ds1553_rtc_read_time()
119 tm->tm_mday = bcd2bin(day); in ds1553_rtc_read_time()
H A Drtc-stk17ta8.c98 unsigned int year, month, day, hour, minute, second, week; in stk17ta8_rtc_read_time() local
112 day = readb(ioaddr + RTC_DATE); in stk17ta8_rtc_read_time()
121 tm->tm_mday = bcd2bin(day); in stk17ta8_rtc_read_time()
/kernel/linux/linux-6.6/drivers/rtc/
H A Drtc-ds1553.c99 unsigned int year, month, day, hour, minute, second, week; in ds1553_rtc_read_time() local
110 day = readb(ioaddr + RTC_DATE); in ds1553_rtc_read_time()
119 tm->tm_mday = bcd2bin(day); in ds1553_rtc_read_time()
H A Drtc-stk17ta8.c98 unsigned int year, month, day, hour, minute, second, week; in stk17ta8_rtc_read_time() local
112 day = readb(ioaddr + RTC_DATE); in stk17ta8_rtc_read_time()
121 tm->tm_mday = bcd2bin(day); in stk17ta8_rtc_read_time()
/third_party/ffmpeg/libavformat/
H A Ddhav.c214 int year, month, day, hour, min, sec; in get_timeinfo() local
219 day = (date >> 17) & 0x1F; in get_timeinfo()
225 timeinfo->tm_mday = day; in get_timeinfo()
/third_party/icu/icu4c/source/i18n/unicode/
H A Dsimpletz.h147 * day-of-week-in-month. See setStartRule() for a
149 * @param savingsStartDayOfWeek The daylight savings starting day-of-week.
155 * @param savingsEndDayOfWeekInMonth The daylight savings ending day-of-week-in-month.
157 * @param savingsEndDayOfWeek The daylight savings ending day-of-week.
188 * day-of-week-in-month. See setStartRule() for a
190 * @param savingsStartDayOfWeek The daylight savings starting day-of-week.
196 * @param savingsEndDayOfWeekInMonth The daylight savings ending day-of-week-in-month.
198 * @param savingsEndDayOfWeek The daylight savings ending day-of-week.
232 * day-of-week-in-month. See setStartRule() for a
234 * @param savingsStartDayOfWeek The daylight savings starting day
[all...]

Completed in 18 milliseconds

1...<<1112131415161718192021