Lines Matching refs:ui32Work

1191     uint32_t ui32Work;  in am_hal_flash_copy_protect_set()  local
1214 ui32Work = (uint32_t)ui64Mask; in am_hal_flash_copy_protect_set()
1215 if ( ( ~ui32Work ) && ( ui32Work != ui32Protection[0] ) ) in am_hal_flash_copy_protect_set()
1218 ui32Protection[0] &= ui32Work; in am_hal_flash_copy_protect_set()
1235 ui32Work = (uint32_t)(ui64Mask >> 32); in am_hal_flash_copy_protect_set()
1236 if ( ( ~ui32Work ) && ( ui32Work != ui32Protection[1] ) ) in am_hal_flash_copy_protect_set()
1239 ui32Protection[1] &= ui32Work; in am_hal_flash_copy_protect_set()
1286 uint32_t ui32Work; in am_hal_flash_copy_protect_check() local
1302 ui32Work = (uint32_t)ui64Mask; in am_hal_flash_copy_protect_check()
1303 if ( ~ui32Work & pui32Protection[0] ) in am_hal_flash_copy_protect_check()
1311 ui32Work = (uint32_t)(ui64Mask >> 32); in am_hal_flash_copy_protect_check()
1312 if ( ~ui32Work & pui32Protection[1] ) in am_hal_flash_copy_protect_check()
1353 uint32_t ui32Work; in am_hal_flash_write_protect_set() local
1376 ui32Work = (uint32_t)ui64Mask; in am_hal_flash_write_protect_set()
1377 if ( ( ~ui32Work ) && ( ui32Work != ui32Protection[0] ) ) in am_hal_flash_write_protect_set()
1380 ui32Protection[0] &= ui32Work; in am_hal_flash_write_protect_set()
1397 ui32Work = (uint32_t)(ui64Mask >> 32); in am_hal_flash_write_protect_set()
1398 if ( ( ~ui32Work ) && ( ui32Work != ui32Protection[1] ) ) in am_hal_flash_write_protect_set()
1401 ui32Protection[1] &= ui32Work; in am_hal_flash_write_protect_set()
1448 uint32_t ui32Work; in am_hal_flash_write_protect_check() local
1464 ui32Work = (uint32_t)ui64Mask; in am_hal_flash_write_protect_check()
1465 if ( ~ui32Work & pui32Protection[0] ) in am_hal_flash_write_protect_check()
1473 ui32Work = (uint32_t)(ui64Mask >> 32); in am_hal_flash_write_protect_check()
1474 if ( ~ui32Work & pui32Protection[1] ) in am_hal_flash_write_protect_check()