Lines Matching refs:ui32Work
1512 uint32_t ui32Work; in am_hal_flash_copy_protect_set() local
1535 ui32Work = (uint32_t)ui64Mask; in am_hal_flash_copy_protect_set()
1536 if ( ( ~ui32Work ) && ( ui32Work != ui32Protection[0] ) ) in am_hal_flash_copy_protect_set()
1541 ui32Protection[0] = ui32Work | ~ui32Protection[0]; in am_hal_flash_copy_protect_set()
1558 ui32Work = (uint32_t)(ui64Mask >> 32); in am_hal_flash_copy_protect_set()
1559 if ( ( ~ui32Work ) && ( ui32Work != ui32Protection[1] ) ) in am_hal_flash_copy_protect_set()
1564 ui32Protection[1] = ui32Work | ~ui32Protection[1]; in am_hal_flash_copy_protect_set()
1612 uint32_t ui32Work; in am_hal_flash_copy_protect_check() local
1628 ui32Work = (uint32_t)ui64Mask; in am_hal_flash_copy_protect_check()
1629 if ( ~ui32Work & pui32Protection[0] ) in am_hal_flash_copy_protect_check()
1637 ui32Work = (uint32_t)(ui64Mask >> 32); in am_hal_flash_copy_protect_check()
1638 if ( ~ui32Work & pui32Protection[1] ) in am_hal_flash_copy_protect_check()
1684 uint32_t ui32Work; in am_hal_flash_write_protect_set() local
1707 ui32Work = (uint32_t)ui64Mask; in am_hal_flash_write_protect_set()
1708 if ( ( ~ui32Work ) && ( ui32Work != ui32Protection[0] ) ) in am_hal_flash_write_protect_set()
1713 ui32Protection[0] = ui32Work | ~ui32Protection[0]; in am_hal_flash_write_protect_set()
1730 ui32Work = (uint32_t)(ui64Mask >> 32); in am_hal_flash_write_protect_set()
1731 if ( ( ~ui32Work ) && ( ui32Work != ui32Protection[1] ) ) in am_hal_flash_write_protect_set()
1736 ui32Protection[1] = ui32Work | ~ui32Protection[1]; in am_hal_flash_write_protect_set()
1784 uint32_t ui32Work; in am_hal_flash_write_protect_check() local
1800 ui32Work = (uint32_t)ui64Mask; in am_hal_flash_write_protect_check()
1801 if ( ~ui32Work & pui32Protection[0] ) in am_hal_flash_write_protect_check()
1809 ui32Work = (uint32_t)(ui64Mask >> 32); in am_hal_flash_write_protect_check()
1810 if ( ~ui32Work & pui32Protection[1] ) in am_hal_flash_write_protect_check()