Lines Matching refs:ui32Work
1516 uint32_t ui32Work; in am_hal_flash_copy_protect_set() local
1539 ui32Work = (uint32_t)ui64Mask; in am_hal_flash_copy_protect_set()
1540 if ( ( ~ui32Work ) && ( ui32Work != ui32Protection[0] ) ) in am_hal_flash_copy_protect_set()
1545 ui32Protection[0] = ui32Work | ~ui32Protection[0]; in am_hal_flash_copy_protect_set()
1562 ui32Work = (uint32_t)(ui64Mask >> 32); in am_hal_flash_copy_protect_set()
1563 if ( ( ~ui32Work ) && ( ui32Work != ui32Protection[1] ) ) in am_hal_flash_copy_protect_set()
1568 ui32Protection[1] = ui32Work | ~ui32Protection[1]; in am_hal_flash_copy_protect_set()
1616 uint32_t ui32Work; in am_hal_flash_copy_protect_check() local
1632 ui32Work = (uint32_t)ui64Mask; in am_hal_flash_copy_protect_check()
1633 if ( ~ui32Work & pui32Protection[0] ) in am_hal_flash_copy_protect_check()
1641 ui32Work = (uint32_t)(ui64Mask >> 32); in am_hal_flash_copy_protect_check()
1642 if ( ~ui32Work & pui32Protection[1] ) in am_hal_flash_copy_protect_check()
1688 uint32_t ui32Work; in am_hal_flash_write_protect_set() local
1711 ui32Work = (uint32_t)ui64Mask; in am_hal_flash_write_protect_set()
1712 if ( ( ~ui32Work ) && ( ui32Work != ui32Protection[0] ) ) in am_hal_flash_write_protect_set()
1717 ui32Protection[0] = ui32Work | ~ui32Protection[0]; in am_hal_flash_write_protect_set()
1734 ui32Work = (uint32_t)(ui64Mask >> 32); in am_hal_flash_write_protect_set()
1735 if ( ( ~ui32Work ) && ( ui32Work != ui32Protection[1] ) ) in am_hal_flash_write_protect_set()
1740 ui32Protection[1] = ui32Work | ~ui32Protection[1]; in am_hal_flash_write_protect_set()
1788 uint32_t ui32Work; in am_hal_flash_write_protect_check() local
1804 ui32Work = (uint32_t)ui64Mask; in am_hal_flash_write_protect_check()
1805 if ( ~ui32Work & pui32Protection[0] ) in am_hal_flash_write_protect_check()
1813 ui32Work = (uint32_t)(ui64Mask >> 32); in am_hal_flash_write_protect_check()
1814 if ( ~ui32Work & pui32Protection[1] ) in am_hal_flash_write_protect_check()