Searched refs:wordIndex (Results 1 – 3 of 3) sorted by relevance
/hal_infineon-3.6.0/mtb-pdl-cat1/drivers/source/ |
D | cy_syspm_v2.c | 1773 void Cy_SysPm_BackupWordStore(uint32_t wordIndex, uint32_t *wordSrcPointer, uint32_t wordSize) in Cy_SysPm_BackupWordStore() argument 1775 CY_ASSERT_L3(CY_SYSPM_IS_WORD_INDEX_VALID(wordIndex)); in Cy_SysPm_BackupWordStore() 1776 CY_ASSERT_L3(CY_SYSPM_IS_WORD_SIZE_VALID(wordSize + wordIndex)); in Cy_SysPm_BackupWordStore() 1780 if(wordIndex < CY_SRSS_BACKUP_BREG1_START_POS) in Cy_SysPm_BackupWordStore() 1782 BACKUP_BREG_SET0[wordIndex] = *wordSrcPointer; in Cy_SysPm_BackupWordStore() 1784 else if(wordIndex < CY_SRSS_BACKUP_BREG2_START_POS) in Cy_SysPm_BackupWordStore() 1786 BACKUP_BREG_SET1[wordIndex - CY_SRSS_BACKUP_BREG1_START_POS] = *wordSrcPointer; in Cy_SysPm_BackupWordStore() 1788 else if(wordIndex < CY_SRSS_BACKUP_BREG3_START_POS) in Cy_SysPm_BackupWordStore() 1790 BACKUP_BREG_SET2[wordIndex - CY_SRSS_BACKUP_BREG2_START_POS] = *wordSrcPointer; in Cy_SysPm_BackupWordStore() 1794 BACKUP_BREG_SET3[wordIndex - CY_SRSS_BACKUP_BREG3_START_POS] = *wordSrcPointer; in Cy_SysPm_BackupWordStore() [all …]
|
D | cy_syspm_v3.c | 1031 void Cy_SysPm_BackupWordStore(uint32_t wordIndex, uint32_t *wordSrcPointer, uint32_t wordSize) in Cy_SysPm_BackupWordStore() argument 1033 CY_ASSERT_L3(CY_SYSPM_IS_WORD_INDEX_VALID(wordIndex)); in Cy_SysPm_BackupWordStore() 1034 CY_ASSERT_L3(CY_SYSPM_IS_WORD_SIZE_VALID(wordSize + wordIndex)); in Cy_SysPm_BackupWordStore() 1038 BACKUP_BREG[wordIndex] = *wordSrcPointer; in Cy_SysPm_BackupWordStore() 1040 wordIndex++; in Cy_SysPm_BackupWordStore() 1046 void Cy_SysPm_BackupWordReStore(uint32_t wordIndex, uint32_t *wordDstPointer, uint32_t wordSize) in Cy_SysPm_BackupWordReStore() argument 1048 CY_ASSERT_L3(CY_SYSPM_IS_WORD_INDEX_VALID(wordIndex)); in Cy_SysPm_BackupWordReStore() 1049 CY_ASSERT_L3(CY_SYSPM_IS_WORD_SIZE_VALID(wordSize + wordIndex)); in Cy_SysPm_BackupWordReStore() 1053 *wordDstPointer = BACKUP_BREG[wordIndex]; in Cy_SysPm_BackupWordReStore() 1055 wordIndex++; in Cy_SysPm_BackupWordReStore()
|
/hal_infineon-3.6.0/mtb-pdl-cat1/drivers/include/ |
D | cy_syspm.h | 8398 void Cy_SysPm_BackupWordStore(uint32_t wordIndex, uint32_t *wordSrcPointer, uint32_t wordSize); 8421 void Cy_SysPm_BackupWordReStore(uint32_t wordIndex, uint32_t *wordDstPointer, uint32_t wordSize);
|