/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | IndianCalendar.java | 253 * @param hour The value used to set the calendar's {@link #HOUR_OF_DAY HOUR_OF_DAY} time field. 260 public IndianCalendar(int year, int month, int date, int hour, in IndianCalendar() argument 267 this.set(Calendar.HOUR_OF_DAY, hour); in IndianCalendar()
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | timezone.h | 623 * typically one hour. 880 * (i.e., one hour) if this time zone observes Daylight Saving 1007 * @param hour Receives parsed hour field 1012 static UBool parseCustomID(const UnicodeString& id, int32_t& sign, int32_t& hour, 1030 * @param hour offset hours 1037 static UnicodeString& formatCustomID(int32_t hour, int32_t min, int32_t sec,
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | timezone.h | 543 * typically one hour. 800 * (i.e., one hour) if this time zone observes Daylight Saving 927 * @param hour Receives parsed hour field 932 static UBool parseCustomID(const UnicodeString& id, int32_t& sign, int32_t& hour, 950 * @param hour offset hours 957 static UnicodeString& formatCustomID(int32_t hour, int32_t min, int32_t sec,
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/ |
H A D | civil_time.cc | 39 cs.hour(), cs.minute(), cs.second()); in FormatYearAnd() 62 *c = CivilT(y, cs.month(), cs.day(), cs.hour(), cs.minute(), cs.second()); in ParseYearAnd()
|
/kernel/linux/linux-5.10/drivers/md/bcache/ |
H A D | stats.h | 38 struct cache_stats hour; member
|
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/bnxt/ |
H A D | bnxt_coredump.h | 41 __le16 hour; member
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | time.h | 21 const unsigned int day, const unsigned int hour, 42 /* the number of minutes after the hour, in the range 0 to 59*/
|
/third_party/skia/infra/bots/recipes/ |
H A D | upload_nano_results.py | 40 str(now.month).zfill(2), str(now.day).zfill(2), str(now.hour).zfill(2),
|
/kernel/linux/linux-5.10/crypto/asymmetric_keys/ |
H A D | x509_cert_parser.c | 602 unsigned year, mon, day, hour, min, sec, mon_len; in x509_decode_time() local 629 hour = DD2bin(p); in x509_decode_time() 653 hour > 24 || /* ISO 8601 permits 24:00:00 as midnight tomorrow */ in x509_decode_time() 658 *_t = mktime64(year, mon, day, hour, min, sec); in x509_decode_time()
|
/kernel/linux/linux-5.10/drivers/acpi/ |
H A D | acpi_tad.c | 59 u8 hour; /* 0 - 23 */ member 84 rt->hour > 23 || rt->minute > 59 || rt->second > 59 || in acpi_tad_set_real_time() 189 rt.hour = val; in time_store() 236 rt.year, rt.month, rt.day, rt.hour, rt.minute, rt.second, in time_show()
|
/kernel/linux/linux-6.6/drivers/acpi/ |
H A D | acpi_tad.c | 59 u8 hour; /* 0 - 23 */ member 84 rt->hour > 23 || rt->minute > 59 || rt->second > 59 || in acpi_tad_set_real_time() 189 rt.hour = val; in time_store() 236 rt.year, rt.month, rt.day, rt.hour, rt.minute, rt.second, in time_show()
|
/kernel/linux/linux-6.6/crypto/asymmetric_keys/ |
H A D | x509_cert_parser.c | 667 unsigned year, mon, day, hour, min, sec, mon_len; in x509_decode_time() local 694 hour = DD2bin(p); in x509_decode_time() 718 hour > 24 || /* ISO 8601 permits 24:00:00 as midnight tomorrow */ in x509_decode_time() 723 *_t = mktime64(year, mon, day, hour, min, sec); in x509_decode_time()
|
/third_party/toybox/toys/pending/ |
H A D | crond.c | 46 char min[60], hour[24], dom[31], mon[12], dow[7], *cmd; member 112 // strings are not allowed for min, hour and dom fields. in getindex() 122 // set elements of minute, hour, day of month, month and day of week arrays. 226 * @hourly -> Run once an hour (0 * * * *). in parse_line() 269 if (parse_and_fillarray(j->hour, 0, sizeof(j->hour), tokens[1])) in parse_line() 606 if (job->min[lt->tm_min] && job->hour[lt->tm_hour] in schedule_jobs()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
H A D | IBMCalendarTest.java | 163 // a reference throws us off by one hour. This is most likely in quasiGregorianTest() 280 // new BuddhistCalendar(int year, int month, int date, int hour, int minute, int second) in TestBuddhistCoverage() 283 errln("could not create BuddhistCalendar with year,month,date,hour,minute,second"); in TestBuddhistCoverage() 431 // new TaiwanCalendar(int year, int month, int date, int hour, int minute, int second) in TestTaiwanCoverage() 434 errln("could not create TaiwanCalendar with year,month,date,hour,minute,second"); in TestTaiwanCoverage() 634 * different day. The DST adjustments we use to keep the hour 1184 private int hour; field in IBMCalendarTest.CalFields 1189 CalFields(int year, int month, int day, int hour, int min, int sec) { in CalFields() argument 1190 this(year, month, day, hour, min, sec, 0); in CalFields() 1193 CalFields(int year, int month, int day, int hour, in argument [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | vtzone.cpp | 194 int32_t hour = t / U_MILLIS_PER_HOUR; in getDateTimeString() local 200 appendAsciiDigits(hour, 2, str); in getDateTimeString() 224 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, sec = 0; in parseDateTimeString() local 249 hour = parseAsciiDigits(str, 9, 2, status); in parseDateTimeString() 260 hour < 0 || hour >= 24 || min < 0 || min >= 60 || sec < 0 || sec >= 60) { in parseDateTimeString() 273 time += (hour * U_MILLIS_PER_HOUR + min * U_MILLIS_PER_MINUTE + sec * U_MILLIS_PER_SECOND); in parseDateTimeString() 289 int32_t sign = 0, hour = 0, min = 0, sec = 0; in offsetStrToMillis() local 307 hour = parseAsciiDigits(str, 1, 2, status); in offsetStrToMillis() 322 int32_t millis = sign * ((hour * 6 in offsetStrToMillis() 337 int32_t hour, min, sec; millisToOffset() local [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | vtzone.cpp | 194 int32_t hour = t / U_MILLIS_PER_HOUR; in getDateTimeString() local 200 appendAsciiDigits(hour, 2, str); in getDateTimeString() 224 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, sec = 0; in parseDateTimeString() local 249 hour = parseAsciiDigits(str, 9, 2, status); in parseDateTimeString() 260 hour < 0 || hour >= 24 || min < 0 || min >= 60 || sec < 0 || sec >= 60) { in parseDateTimeString() 273 time += (hour * U_MILLIS_PER_HOUR + min * U_MILLIS_PER_MINUTE + sec * U_MILLIS_PER_SECOND); in parseDateTimeString() 289 int32_t sign = 0, hour = 0, min = 0, sec = 0; in offsetStrToMillis() local 307 hour = parseAsciiDigits(str, 1, 2, status); in offsetStrToMillis() 322 int32_t millis = sign * ((hour * 6 in offsetStrToMillis() 337 int32_t hour, min, sec; millisToOffset() local [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | vtzone.cpp | 202 int32_t hour = t / U_MILLIS_PER_HOUR; in getDateTimeString() local 208 appendAsciiDigits(hour, 2, str); in getDateTimeString() 232 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, sec = 0; in parseDateTimeString() local 257 hour = parseAsciiDigits(str, 9, 2, status); in parseDateTimeString() 268 hour < 0 || hour >= 24 || min < 0 || min >= 60 || sec < 0 || sec >= 60) { in parseDateTimeString() 281 time += (hour * U_MILLIS_PER_HOUR + min * U_MILLIS_PER_MINUTE + sec * U_MILLIS_PER_SECOND); in parseDateTimeString() 297 int32_t sign = 0, hour = 0, min = 0, sec = 0; in offsetStrToMillis() local 315 hour = parseAsciiDigits(str, 1, 2, status); in offsetStrToMillis() 330 int32_t millis = sign * ((hour * 6 in offsetStrToMillis() 345 int32_t hour, min, sec; millisToOffset() local [all...] |
/kernel/linux/linux-5.10/drivers/rtc/ |
H A D | rtc-mt7622.c | 50 * day of month, day of week, hour, minute and second. 155 u32 year, mon, mday, wday, hour, min, sec; in mtk_rtc_get_alarm_or_time() local 166 hour = mtk_r32(hw, MTK_RTC_TREG(time_alarm, MTK_HOU)); in mtk_rtc_get_alarm_or_time() 175 tm->tm_hour = hour; in mtk_rtc_get_alarm_or_time()
|
H A D | rtc-ds1553.c | 99 unsigned int year, month, day, hour, minute, second, week; in ds1553_rtc_read_time() local 109 hour = readb(ioaddr + RTC_HOURS); in ds1553_rtc_read_time() 118 tm->tm_hour = bcd2bin(hour); in ds1553_rtc_read_time()
|
H A D | rtc-stk17ta8.c | 98 unsigned int year, month, day, hour, minute, second, week; in stk17ta8_rtc_read_time() local 111 hour = readb(ioaddr + RTC_HOURS); in stk17ta8_rtc_read_time() 120 tm->tm_hour = bcd2bin(hour); in stk17ta8_rtc_read_time()
|
/kernel/linux/linux-6.6/drivers/rtc/ |
H A D | rtc-ds1553.c | 99 unsigned int year, month, day, hour, minute, second, week; in ds1553_rtc_read_time() local 109 hour = readb(ioaddr + RTC_HOURS); in ds1553_rtc_read_time() 118 tm->tm_hour = bcd2bin(hour); in ds1553_rtc_read_time()
|
H A D | rtc-mt7622.c | 50 * day of month, day of week, hour, minute and second. 155 u32 year, mon, mday, wday, hour, min, sec; in mtk_rtc_get_alarm_or_time() local 166 hour = mtk_r32(hw, MTK_RTC_TREG(time_alarm, MTK_HOU)); in mtk_rtc_get_alarm_or_time() 175 tm->tm_hour = hour; in mtk_rtc_get_alarm_or_time()
|
H A D | rtc-rzn1.c | 187 unsigned int min, hour, wday, delta_days; in rzn1_rtc_read_alarm() local 197 hour = readl(rtc->base + RZN1_RTC_ALH); in rzn1_rtc_read_alarm() 202 tm->tm_hour = bcd2bin(hour); in rzn1_rtc_read_alarm() 368 * Set 24-hour mode and possible oscillator offset compensation in SUBU mode. in rzn1_rtc_probe()
|
H A D | rtc-stk17ta8.c | 98 unsigned int year, month, day, hour, minute, second, week; in stk17ta8_rtc_read_time() local 111 hour = readb(ioaddr + RTC_HOURS); in stk17ta8_rtc_read_time() 120 tm->tm_hour = bcd2bin(hour); in stk17ta8_rtc_read_time()
|
/third_party/ffmpeg/libavformat/ |
H A D | dhav.c | 214 int year, month, day, hour, min, sec; in get_timeinfo() local 218 hour = (date >> 12) & 0x1F; in get_timeinfo() 226 timeinfo->tm_hour = hour; in get_timeinfo()
|