| /OK3568_Linux_fs/kernel/drivers/rtc/ |
| H A D | lib.c | 30 int rtc_month_days(unsigned int month, unsigned int year) in rtc_month_days() argument 32 return rtc_days_in_month[month] + (is_leap_year(year) && month == 1); in rtc_month_days() 39 int rtc_year_days(unsigned int day, unsigned int month, unsigned int year) in rtc_year_days() argument 41 return rtc_ydays[is_leap_year(year)][month] + day - 1; in rtc_year_days() 51 unsigned int month, year, secs; in rtc_time64_to_tm() local 71 for (month = 0; month < 11; month++) { in rtc_time64_to_tm() 74 newdays = days - rtc_month_days(month, year); in rtc_time64_to_tm() 79 tm->tm_mon = month; in rtc_time64_to_tm()
|
| H A D | rtc-efi.c | 30 return rtc_year_days(eft->day, eft->month - 1, eft->year); in compute_yday() 56 eft->month = wtime->tm_mon + 1; in convert_to_efi_time() 87 if (!eft->month || eft->month > 12) in convert_from_efi_time() 89 wtime->tm_mon = eft->month - 1; in convert_from_efi_time() 207 eft.year, eft.month, eft.day, in efi_procfs() 223 alm.year, alm.month, alm.day, in efi_procfs()
|
| H A D | rtc-wilco-ec.c | 54 u8 month; member 81 u8 month; member 111 tm->tm_mon = rtc.month - 1; in wilco_ec_rtc_read() 141 rtc.month = bin2bcd(tm->tm_mon + 1); in wilco_ec_rtc_write()
|
| H A D | rtc-mv.c | 71 unsigned int year, month, day, hour, minute, second, wday; in mv_rtc_read_time() local 82 month = (rtc_date >> RTC_MONTH_OFFS) & 0x3f; in mv_rtc_read_time() 90 tm->tm_mon = bcd2bin(month) - 1; in mv_rtc_read_time() 102 unsigned int year, month, day, hour, minute, second, wday; in mv_rtc_read_alarm() local 113 month = (rtc_date >> RTC_MONTH_OFFS) & 0x3f; in mv_rtc_read_alarm() 121 alm->time.tm_mon = bcd2bin(month) - 1; in mv_rtc_read_alarm()
|
| H A D | rtc-m48t35.c | 29 u8 month; member 39 u8 month; member 73 tm->tm_mon = readb(&priv->reg->month); in m48t35_read_time() 135 writeb(mon, &priv->reg->month); in m48t35_set_time()
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/imxx11/gps/ |
| H A D | gps.cpp | 124 … QString date = QString("%1-%2-%3").arg(gpsinfo.D.year).arg(gpsinfo.D.month).arg(gpsinfo.D.day); in read_sermios() 168 m_gps->D.month =(buf[temp+2]-'0')*10+(buf[temp+3]-'0'); in parse_gps() 205 m_gps->D.month =0.0; in GetClear() 250 if(gps_d->month==2 || in BTC() 251 gps_d->month==4 || in BTC() 252 gps_d->month==6 || in BTC() 253 gps_d->month==9 || in BTC() 254 gps_d->month==11 ) in BTC() 259 gps_d->month++; in BTC() 267 gps_d->month++; in BTC() [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | chrono | 346 // 25.8.4, class month // C++20 347 class month; 348 constexpr bool operator==(const month& x, const month& y) noexcept; 349 constexpr bool operator!=(const month& x, const month& y) noexcept; 350 constexpr bool operator< (const month& x, const month& y) noexcept; 351 constexpr bool operator> (const month& x, const month& y) noexcept; 352 constexpr bool operator<=(const month& x, const month& y) noexcept; 353 constexpr bool operator>=(const month& x, const month& y) noexcept; 354 constexpr month operator+(const month& x, const months& y) noexcept; 355 constexpr month operator+(const months& x, const month& y) noexcept; [all …]
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | chrono | 346 // 25.8.4, class month // C++20 347 class month; 348 constexpr bool operator==(const month& x, const month& y) noexcept; 349 constexpr bool operator!=(const month& x, const month& y) noexcept; 350 constexpr bool operator< (const month& x, const month& y) noexcept; 351 constexpr bool operator> (const month& x, const month& y) noexcept; 352 constexpr bool operator<=(const month& x, const month& y) noexcept; 353 constexpr bool operator>=(const month& x, const month& y) noexcept; 354 constexpr month operator+(const month& x, const months& y) noexcept; 355 constexpr month operator+(const months& x, const month& y) noexcept; [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/RCU/ |
| H A D | RTFP.txt | 246 ,month="January" 361 ,month="February" 372 ,month="June" 418 ,month="September" 459 ,month="December" 475 ,month="May" 494 ,month="August" 512 ,month="March" 529 ,month="March" 577 ,month="June" [all …]
|
| /OK3568_Linux_fs/u-boot/board/compulab/common/ |
| H A D | eeprom.c | 286 static int validate_date(unsigned char day, unsigned char month, in validate_date() argument 291 switch (month) { in validate_date() 363 unsigned char month; in eeprom_field_update_date() local 364 for (month = 1; month <= 12; month++) in eeprom_field_update_date() 365 if (!strcmp(tok2, months[month - 1])) in eeprom_field_update_date() 374 if (validate_date(day, month - 1, year)) { in eeprom_field_update_date() 385 field->buf[1] = month; in eeprom_field_update_date()
|
| /OK3568_Linux_fs/kernel/fs/isofs/ |
| H A D | util.c | 21 int year, month, day, hour, minute, second, tz; in iso_date() local 25 month = p[1]; in iso_date() 36 crtime = mktime64(year+1900, month, day, hour, minute, second); in iso_date()
|
| /OK3568_Linux_fs/u-boot/drivers/rtc/ |
| H A D | m41t60.c | 91 uchar min, date, month, years; in rtc_validate() local 116 month = data[RTC_MONTH] & 0x3F; in rtc_validate() 122 0x12 < month || in rtc_validate() 124 daysInMonth[month] < date || 0x09 < (date & 0x0F) || 0x00 == date || in rtc_validate() 125 (0x29 == date && 0x02 == month && in rtc_validate()
|
| H A D | m48t35ax.c | 29 uchar sec, min, hour, cent_day, date, month, year; in rtc_get() local 42 month = rtc_read (0x6); in rtc_get() 52 year, month, date, cent_day, in rtc_get() 59 tmp->tm_mon = bcd2bin (month & 0x1F); in rtc_get()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/i18n/locales/ |
| H A D | tn_ZA | 16 % - Allign spellings of month and weekday names with Dept. of 20 % - Corrected short month names to correspond to long 21 % month names (missed in 2004-02-27 corrections) 32 % - Validated and corrected bad month names 127 % "%-e" (day of month as a decimal number), 128 % "%b" (short month name), 135 % "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000). 154 % %b - abreviated month name, 155 % %-e - day of month as a decimal number with leading space (1 to 31),
|
| H A D | sa_IN | 97 % Abbreviated month names (%b) 99 % Sanskrit uses a lunar calendar. When gregorian month names 102 % names for gregorian month names: 116 % Full month names (%B) 117 % Sanskrit uses a lunar calendar. When gregorian month names 120 % Lunar calendar month names: 133 % names for gregorian month names:
|
| H A D | ss_ZA | 16 % - Allign spellings of month and weekday names with Dept. of 20 % - Short month names comment corrected to match values in abmon 132 % "%-e" (day of month as a decimal number), 133 % "%b" (short month name), 140 % "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000). 159 % %b - abreviated month name, 160 % %-e - day of month as a decimal number without leading space (1 to 31),
|
| H A D | agr_PE | 102 % "%d" (day of month as a decimal number), 103 % "%b" (short month name), 110 % "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000). 127 % %b - abbreviated month name, 128 % %e - day of month as a decimal number with leading space (1 to 31),
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/i18n/locales/ |
| H A D | tn_ZA | 16 % - Allign spellings of month and weekday names with Dept. of 20 % - Corrected short month names to correspond to long 21 % month names (missed in 2004-02-27 corrections) 32 % - Validated and corrected bad month names 127 % "%-e" (day of month as a decimal number), 128 % "%b" (short month name), 135 % "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000). 154 % %b - abreviated month name, 155 % %-e - day of month as a decimal number with leading space (1 to 31),
|
| H A D | sa_IN | 97 % Abbreviated month names (%b) 99 % Sanskrit uses a lunar calendar. When gregorian month names 102 % names for gregorian month names: 116 % Full month names (%B) 117 % Sanskrit uses a lunar calendar. When gregorian month names 120 % Lunar calendar month names: 133 % names for gregorian month names:
|
| H A D | ss_ZA | 16 % - Allign spellings of month and weekday names with Dept. of 20 % - Short month names comment corrected to match values in abmon 132 % "%-e" (day of month as a decimal number), 133 % "%b" (short month name), 140 % "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000). 159 % %b - abreviated month name, 160 % %-e - day of month as a decimal number without leading space (1 to 31),
|
| H A D | agr_PE | 102 % "%d" (day of month as a decimal number), 103 % "%b" (short month name), 110 % "%d/%m/%Y", day/month/year as decimal numbers (01/01/2000). 127 % %b - abbreviated month name, 128 % %e - day of month as a decimal number with leading space (1 to 31),
|
| /OK3568_Linux_fs/external/xserver/hw/dmx/ |
| H A D | dmx-config.h | 63 #define DMX_VENDOR_RELEASE(major,minor,year,month,day) \ argument 67 ((month) * 100) + \
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/ |
| H A D | cec-funcs.h | 436 __u8 month, in cec_msg_clear_analogue_timer() argument 449 msg->msg[3] = month; in cec_msg_clear_analogue_timer() 465 __u8 *month, in cec_ops_clear_analogue_timer() argument 476 *month = msg->msg[3]; in cec_ops_clear_analogue_timer() 491 __u8 month, in cec_msg_clear_digital_timer() argument 503 msg->msg[3] = month; in cec_msg_clear_digital_timer() 515 __u8 *month, in cec_ops_clear_digital_timer() argument 524 *month = msg->msg[3]; in cec_ops_clear_digital_timer() 537 __u8 month, in cec_msg_clear_ext_timer() argument 550 msg->msg[3] = month; in cec_msg_clear_ext_timer() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/ |
| H A D | cec-funcs.h | 436 __u8 month, in cec_msg_clear_analogue_timer() argument 449 msg->msg[3] = month; in cec_msg_clear_analogue_timer() 465 __u8 *month, in cec_ops_clear_analogue_timer() argument 476 *month = msg->msg[3]; in cec_ops_clear_analogue_timer() 491 __u8 month, in cec_msg_clear_digital_timer() argument 503 msg->msg[3] = month; in cec_msg_clear_digital_timer() 515 __u8 *month, in cec_ops_clear_digital_timer() argument 524 *month = msg->msg[3]; in cec_ops_clear_digital_timer() 537 __u8 month, in cec_msg_clear_ext_timer() argument 550 msg->msg[3] = month; in cec_msg_clear_ext_timer() [all …]
|
| /OK3568_Linux_fs/kernel/include/uapi/linux/ |
| H A D | cec-funcs.h | 436 __u8 month, in cec_msg_clear_analogue_timer() argument 449 msg->msg[3] = month; in cec_msg_clear_analogue_timer() 465 __u8 *month, in cec_ops_clear_analogue_timer() argument 476 *month = msg->msg[3]; in cec_ops_clear_analogue_timer() 491 __u8 month, in cec_msg_clear_digital_timer() argument 503 msg->msg[3] = month; in cec_msg_clear_digital_timer() 515 __u8 *month, in cec_ops_clear_digital_timer() argument 524 *month = msg->msg[3]; in cec_ops_clear_digital_timer() 537 __u8 month, in cec_msg_clear_ext_timer() argument 550 msg->msg[3] = month; in cec_msg_clear_ext_timer() [all …]
|