Home
last modified time | relevance | path

Searched refs:tm_mon (Results 1 – 25 of 30) sorted by relevance

12

/AliOS-Things-master/hardware/chip/rtl872xd/hal/
A Drtc.c138 …rtc_calculate_mday(rtc_timeinfo.tm_year, rtc_timeinfo.tm_yday, &rtc_timeinfo.tm_mon, &rtc_timeinfo… in rtc_restore_timeinfo()
139 …rtc_calculate_wday(rtc_timeinfo.tm_year, rtc_timeinfo.tm_mon, rtc_timeinfo.tm_mday, &rtc_timeinfo.… in rtc_restore_timeinfo()
221 while(tm_temp.tm_mday > days_in_month(tm_temp.tm_mon, tm_temp.tm_year)){ in hal_rtc_get_time()
222 tm_temp.tm_mday -= days_in_month(tm_temp.tm_mon, tm_temp.tm_year); in hal_rtc_get_time()
223 tm_temp.tm_mon++; in hal_rtc_get_time()
225 if(tm_temp.tm_mon >= 12){ in hal_rtc_get_time()
226 tm_temp.tm_mon -= 12; in hal_rtc_get_time()
244 time->month = tm_temp.tm_mon; in hal_rtc_get_time()
268 timeinfo.tm_mon =time->month; in hal_rtc_set_time()
/AliOS-Things-master/hardware/chip/rtl872xd/sdk/component/common/mbed/targets/hal/rtl8721d/
A Drtc_api.c151 …rtc_calculate_mday(rtc_timeinfo.tm_year, rtc_timeinfo.tm_yday, &rtc_timeinfo.tm_mon, &rtc_timeinfo… in rtc_restore_timeinfo()
152 …rtc_calculate_wday(rtc_timeinfo.tm_year, rtc_timeinfo.tm_mon, rtc_timeinfo.tm_mday, &rtc_timeinfo.… in rtc_restore_timeinfo()
278 while(tm_temp.tm_mday > days_in_month(tm_temp.tm_mon, tm_temp.tm_year)){ in rtc_read()
279 tm_temp.tm_mday -= days_in_month(tm_temp.tm_mon, tm_temp.tm_year); in rtc_read()
280 tm_temp.tm_mon++; in rtc_read()
282 if(tm_temp.tm_mon >= 12){ in rtc_read()
283 tm_temp.tm_mon -= 12; in rtc_read()
/AliOS-Things-master/components/py_engine/engine/shared/timeutils/
A Dtimeutils.c135 tm->tm_mon = month + 2; in timeutils_seconds_since_2000_to_struct_time()
136 if (tm->tm_mon >= 12) { in timeutils_seconds_since_2000_to_struct_time()
137 tm->tm_mon -= 12; in timeutils_seconds_since_2000_to_struct_time()
141 tm->tm_mon++; // Make one based in timeutils_seconds_since_2000_to_struct_time()
143 tm->tm_yday = timeutils_year_day(tm->tm_year, tm->tm_mon, tm->tm_mday); in timeutils_seconds_since_2000_to_struct_time()
A Dtimeutils.h43 uint8_t tm_mon; // 1..12 member
/AliOS-Things-master/components/ulog/src/
A Dulog_utility.c51 snprintf(buffer, len, "%s ", months[tm->tm_mon < 12 ? tm->tm_mon : 0]); in ulog_format_time()
/AliOS-Things-master/hardware/chip/haas1000/drivers/platform/hal/
A Dhal_rtc.h18 int tm_mon; member
/AliOS-Things-master/components/py_engine/external/unzip/src/
A Dminiunz.c55 newdate.tm_mon = tmu_date.tm_mon; in change_file_date()
187 (uLong)file_info.tmu_date.tm_mon + 1, in do_list()
A Dunzip.c532 ptm->tm_mon = (uInt)((((uDate)&0x1E0) / 0x20) - 1);
/AliOS-Things-master/components/csi/csi2/include/drv/
A Drtc.h28 int tm_mon; ///< Month. [0-11] member
/AliOS-Things-master/components/minilibc/include/
A Dtime.h103 int tm_mon; /* Month (0-11) */ member
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/minizip/
A Dminizip.c134 tmzip->tm_mon = filedate->tm_mon ;
407 zi.tmz_date.tm_mday = zi.tmz_date.tm_mon = zi.tmz_date.tm_year = 0;
A Dminiunz.c107 newdate.tm_mon=tmu_date.tm_mon;
292 (uLong)file_info.tmu_date.tm_mon + 1,
A Dzip.h95 uInt tm_mon; /* months since January - [0,11] */ member
A Dunzip.h90 uInt tm_mon; /* months since January - [0,11] */ member
/AliOS-Things-master/components/py_engine/adapter/haas/
A Dmodutime.c56 tuple[1] = mp_obj_new_int(tm.tm_mon), in time_localtime()
/AliOS-Things-master/components/py_engine/adapter/haas510/
A Dmodutime.c55 tuple[1] = mp_obj_new_int(tm.tm_mon), in time_localtime()
/AliOS-Things-master/components/py_engine/adapter/haas600/
A Dmodutime.c55 tuple[1] = mp_obj_new_int(tm.tm_mon), in time_localtime()
/AliOS-Things-master/components/py_engine/external/unzip/internal/
A Dunzip.h86 uInt tm_mon; /* months since January - [0,11] */ member
/AliOS-Things-master/hardware/chip/haas1000/drivers/net/
A Dnet_defs.h242 unsigned int tm_mon; member
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/contrib/untgz/
A Duntgz.c198 local->tm_year+1900, local->tm_mon+1, local->tm_mday, in strtime()
221 st.wMonth = (WORD)loctm->tm_mon + 1; in setfiletime()
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/ras/
A Dras2tif.c109 year, ct->tm_mon + 1, ct->tm_mday,
/AliOS-Things-master/components/oss/src/utils/
A DUtils.cc650 wday_name[tm.tm_wday], tm.tm_mday, mon_name[tm.tm_mon], in ToGmtTime()
688 &tm.tm_year, &tm.tm_mon, &tm.tm_mday, &tm.tm_hour, &tm.tm_min, &tm.tm_sec, &ms); in UtcToUnixTime()
692 tm.tm_mon = tm.tm_mon - 1; in UtcToUnixTime()
/AliOS-Things-master/components/sntp/src/
A Dsntp.c380 g_time.mon = gt->tm_mon + 1; in sntp_request()
/AliOS-Things-master/components/mbedtls/library/
A Dx509.c908 now->mon = lt->tm_mon + 1; in x509_get_current_time()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/
A Dpngwrite.c477 ptime->month = (png_byte)(ttime->tm_mon + 1); in png_convert_from_struct_tm()

Completed in 66 milliseconds

12