Home
last modified time | relevance | path

Searched refs:FX_BASE_YEAR (Results 1 – 9 of 9) sorted by relevance

/FileX-v6.2.1/common/src/
Dfx_system_timer_entry.c93 year = ((_fx_system_date >> FX_YEAR_SHIFT) & FX_YEAR_MASK) + FX_BASE_YEAR; in _fx_system_timer_entry()
334 _fx_system_date = ((year - FX_BASE_YEAR) << FX_YEAR_SHIFT) | in _fx_system_timer_entry()
Dfx_system_date_set.c81 _fx_system_date = ((year - FX_BASE_YEAR) << FX_YEAR_SHIFT) | in _fx_system_date_set()
Dfx_system_date_get.c90 *year = ((date >> FX_YEAR_SHIFT) & FX_YEAR_MASK) + FX_BASE_YEAR; in _fx_system_date_get()
Dfxe_system_date_set.c82 if ((year < FX_BASE_YEAR) || (year > FX_MAXIMUM_YEAR)) in _fxe_system_date_set()
Dfx_file_date_time_set.c125 …dir_entry.fx_dir_entry_date = ((year - FX_BASE_YEAR) << FX_YEAR_SHIFT) | (month << FX_MONTH_SHIFT… in _fx_file_date_time_set()
Dfxe_file_date_time_set.c95 if ((year < FX_BASE_YEAR) || (year > FX_MAXIMUM_YEAR)) in _fxe_file_date_time_set()
Dfx_directory_information_get.c185 FX_BASE_YEAR; in _fx_directory_information_get()
Dfx_directory_next_full_entry_find.c344 *year = ((entry.fx_dir_entry_date >> FX_YEAR_SHIFT) & FX_YEAR_MASK) + FX_BASE_YEAR; in _fx_directory_next_full_entry_find()
/FileX-v6.2.1/common/inc/
Dfx_api.h520 #define FX_BASE_YEAR 1980 macro