Home
last modified time | relevance | path

Searched refs:timestamp (Results 1 – 25 of 66) sorted by relevance

123

/bsp/simulator/SDL2/include/
A DSDL_events.h187 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */ member
196 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */ member
211 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */ member
227 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */ member
302 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */ member
318 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */ member
335 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */ member
353 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */ member
369 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */ member
385 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */ member
[all …]
A DSDL_sensor.h294 extern DECLSPEC int SDLCALL SDL_SensorGetDataWithTimestamp(SDL_Sensor *sensor, Uint64 *timestamp, f…
/bsp/samd21/sam_d2x_asflib/common/services/calendar/
A Dcalendar.c258 void calendar_timestamp_to_date(uint32_t timestamp, in calendar_timestamp_to_date() argument
267 day_clock = timestamp % SECS_PER_DAY; in calendar_timestamp_to_date()
268 day_number = timestamp / SECS_PER_DAY; in calendar_timestamp_to_date()
331 uint32_t timestamp = 0; in calendar_date_to_timestamp() local
345 timestamp += month[calendar_leapyear(date_year)][date_month] in calendar_date_to_timestamp()
351 timestamp += calendar_yearsize(date_year) * SECS_PER_DAY; in calendar_date_to_timestamp()
354 return timestamp; in calendar_date_to_timestamp()
373 uint32_t timestamp = calendar_date_to_timestamp(date); in calendar_date_to_timestamp_tz() local
374 if (timestamp == 0) { in calendar_date_to_timestamp_tz()
379 return (timestamp - (SECS_PER_HOUR * hour + SECS_PER_MINUTE * in calendar_date_to_timestamp_tz()
[all …]
A Dcalendar.h85 void calendar_timestamp_to_date(uint32_t timestamp, struct calendar_date
88 void calendar_timestamp_to_date_tz(uint32_t timestamp, int8_t hour,
/bsp/nxp/lpc/lpc55sxx/Libraries/drivers/
A Ddrv_rtc.c21 static rt_err_t lpc_get_timestamp(time_t *timestamp) in lpc_get_timestamp() argument
38 *timestamp = timegm(&tm_new); in lpc_get_timestamp()
42 static int lpc_set_timestamp(time_t timestamp) in lpc_set_timestamp() argument
47 gmtime_r(&timestamp, &now); in lpc_set_timestamp()
/bsp/w60x/drivers/
A Ddrv_rtc.c48 static int wm_set_timestamp(time_t timestamp) in wm_set_timestamp() argument
55 gmtime_r(&timestamp, &tblock); in wm_set_timestamp()
84 time_t timestamp = 0; in wm_alarm_set_timestamp() local
86 timestamp = wm_get_timestamp(); in wm_alarm_set_timestamp()
87 gmtime_r(&timestamp, &tblock); in wm_alarm_set_timestamp()
/bsp/hpmicro/libraries/drivers/
A Ddrv_rtc.c35 static int hpm_rtc_set_timestamp(time_t timestamp);
121 static int hpm_rtc_set_timestamp(time_t timestamp) in hpm_rtc_set_timestamp() argument
123 (void)rtc_config_time(HPM_RTC, timestamp); in hpm_rtc_set_timestamp()
/bsp/hpmicro/libraries/hpm_sdk/drivers/src/
A Dhpm_enet_drv.c426 enet_ptp_ts_system_t *timestamp) in enet_prepare_tx_desc_with_ts_record() argument
477 timestamp->sec = dma_tx_desc->tdes7_bm.ttsh; in enet_prepare_tx_desc_with_ts_record()
478 timestamp->nsec = dma_tx_desc->tdes6_bm.ttsl; in enet_prepare_tx_desc_with_ts_record()
511 timestamp->sec = dma_tx_desc->tdes7_bm.ttsh; in enet_prepare_tx_desc_with_ts_record()
512 timestamp->nsec = dma_tx_desc->tdes6_bm.ttsl; in enet_prepare_tx_desc_with_ts_record()
775 void enet_set_ptp_timestamp(ENET_Type *ptr, enet_ptp_ts_update_t *timestamp) in enet_set_ptp_timestamp() argument
777 ptr->SYST_SEC_UPD = timestamp->sec; in enet_set_ptp_timestamp()
778 ptr->SYST_NSEC_UPD = timestamp->nsec; in enet_set_ptp_timestamp()
786 void enet_get_ptp_timestamp(ENET_Type *ptr, enet_ptp_ts_system_t *timestamp) in enet_get_ptp_timestamp() argument
788 timestamp->sec = ptr->SYST_SEC; in enet_get_ptp_timestamp()
[all …]
A Dhpm_mcan_drv.c1890 mcan_timestamp_value_t *timestamp) in mcan_get_timestamp_from_tx_event() argument
1897 (void) memset(timestamp, 0, sizeof(mcan_timestamp_value_t)); in mcan_get_timestamp_from_tx_event()
1901 timestamp->is_16bit = true; in mcan_get_timestamp_from_tx_event()
1902 timestamp->ts_16bit = tx_evt->tx_timestamp; in mcan_get_timestamp_from_tx_event()
1907 timestamp->is_32bit = true; in mcan_get_timestamp_from_tx_event()
1910 timestamp->is_64bit = true; in mcan_get_timestamp_from_tx_event()
1932 (void) memset(timestamp, 0, sizeof(mcan_timestamp_value_t)); in mcan_get_timestamp_from_received_message()
1936 timestamp->is_16bit = true; in mcan_get_timestamp_from_received_message()
1937 timestamp->ts_16bit = rx_msg->rx_timestamp; in mcan_get_timestamp_from_received_message()
1942 timestamp->is_32bit = true; in mcan_get_timestamp_from_received_message()
[all …]
/bsp/nuclei/libraries/gd32vf103/HAL_Drivers/
A Ddrv_rtc.c20 static int set_timestamp(time_t timestamp) in set_timestamp() argument
25 rtc_counter_set((uint32_t)timestamp); in set_timestamp()
/bsp/raspberry-pi/raspi3-64/driver/
A Ddrv_rtc.c41 static int raspi_set_timestamp(time_t timestamp) in raspi_set_timestamp() argument
44 gmtime_r(&timestamp, &tblock); in raspi_set_timestamp()
/bsp/loongson/ls1cdev/drivers/
A Ddrv_rtc.c51 static int set_timestamp(time_t timestamp) in set_timestamp() argument
56 gmtime_r(&timestamp, &now); in set_timestamp()
/bsp/nxp/imx/imxrt/libraries/drivers/
A Ddrv_rtc.c50 static int imxrt_hp_set_timestamp(time_t timestamp) in imxrt_hp_set_timestamp() argument
55 gmtime_r(&timestamp, &now); in imxrt_hp_set_timestamp()
/bsp/raspberry-pi/raspi3-32/driver/
A Ddrv_rtc.c194 static int raspi_set_timestamp(time_t timestamp) in raspi_set_timestamp() argument
197 gmtime_r(&timestamp, &tblock); in raspi_set_timestamp()
/bsp/hpmicro/libraries/hpm_sdk/drivers/inc/
A Dhpm_enet_drv.h727 enet_ptp_ts_system_t *timestamp);
766 void enet_set_ptp_timestamp(ENET_Type *ptr, enet_ptp_ts_update_t *timestamp);
774 void enet_get_ptp_timestamp(ENET_Type *ptr, enet_ptp_ts_system_t *timestamp);
/bsp/Infineon/psoc6-evaluationkit-062S2/libs/TARGET_RTT-062S2/config/GeneratedSource/
A Dcycfg.timestamp2 * File Name: cycfg.timestamp
A Dcycfg_capsense.timestamp2 * File Name: cycfg_capsense.timestamp
A Dcycfg_qspi_memslot.timestamp2 * File Name: cycfg_qspi_memslot.timestamp
/bsp/Infineon/libraries/templates/XMC7200D/libs/TARGET_APP_KIT_XMC72_EVK/config/GeneratedSource/
A Dcycfg_qspi_memslot.timestamp2 * File Name: cycfg_qspi_memslot.timestamp
/bsp/Infineon/psoc6-cy8ckit-062-BLE/libs/TARGET_CY8CKIT-062-BLE/config/GeneratedSource/
A Dcycfg.timestamp2 * File Name: cycfg.timestamp
/bsp/Infineon/psoc6-cy8ckit-062-WIFI-BT/libs/TARGET_CY8CKIT-062-WIFI-BT/config/GeneratedSource/
A Dcycfg.timestamp2 * File Name: cycfg.timestamp
/bsp/Infineon/psoc6-cy8ckit-062S2-43012/libs/TARGET_CY8CKIT-062S2-43012/config/GeneratedSource/
A Dcycfg.timestamp2 * File Name: cycfg.timestamp
/bsp/Infineon/psoc6-cy8ckit-062s4/libs/TARGET_CY8CKIT-062S4/config/GeneratedSource/
A Dcycfg.timestamp2 * File Name: cycfg.timestamp
/bsp/Infineon/psoc6-cy8cproto-062S3-4343W/libs/TARGET_CY8CPROTO-062S3-4343W/config/GeneratedSource/
A Dcycfg.timestamp2 * File Name: cycfg.timestamp
/bsp/Infineon/libraries/templates/PSOC62/libs/TARGET_CY8CKIT-062S2-43012/config/GeneratedSource/
A Dcycfg.timestamp2 * File Name: cycfg.timestamp

Completed in 46 milliseconds

123