Lines Matching refs:pbuffer
642 uint8_t *pbuffer = pData; in HAL_PSSI_Transmit() local
657 *(__IO uint8_t *)(&hpssi->Instance->DR) = *(uint8_t *)pbuffer; in HAL_PSSI_Transmit()
660 pbuffer++; in HAL_PSSI_Transmit()
667 uint8_t *pbuffer = pData; in HAL_PSSI_Transmit() local
683 data = (uint16_t)*pbuffer ; in HAL_PSSI_Transmit()
684 pbuffer++; in HAL_PSSI_Transmit()
685 data = (((uint16_t)*pbuffer) << 8U) | data; in HAL_PSSI_Transmit()
686 pbuffer++; in HAL_PSSI_Transmit()
696 uint8_t *pbuffer = pData; in HAL_PSSI_Transmit() local
712 data = (uint32_t)*pbuffer ; in HAL_PSSI_Transmit()
713 pbuffer++; in HAL_PSSI_Transmit()
714 data = (((uint32_t)*pbuffer) << 8U) | data; in HAL_PSSI_Transmit()
715 pbuffer++; in HAL_PSSI_Transmit()
716 data = (((uint32_t)*pbuffer) << 16U) | data; in HAL_PSSI_Transmit()
717 pbuffer++; in HAL_PSSI_Transmit()
718 data = (((uint32_t)*pbuffer) << 24U) | data; in HAL_PSSI_Transmit()
719 pbuffer++; in HAL_PSSI_Transmit()
805 uint8_t *pbuffer = pData; in HAL_PSSI_Receive() local
821 *pbuffer = *(__IO uint8_t *)(&hpssi->Instance->DR); in HAL_PSSI_Receive()
822 pbuffer++; in HAL_PSSI_Receive()
828 uint8_t *pbuffer = pData; in HAL_PSSI_Receive() local
846 *pbuffer = (uint8_t)(data & 0x0FFU); in HAL_PSSI_Receive()
847 pbuffer++; in HAL_PSSI_Receive()
848 *pbuffer = (uint8_t)(data >> 8U); in HAL_PSSI_Receive()
849 pbuffer++; in HAL_PSSI_Receive()
855 uint8_t *pbuffer = pData; in HAL_PSSI_Receive() local
873 *pbuffer = (uint8_t)(data & 0x0FFU); in HAL_PSSI_Receive()
874 pbuffer++; in HAL_PSSI_Receive()
875 *pbuffer = (uint8_t)((data & 0x0FF00U) >> 8U); in HAL_PSSI_Receive()
876 pbuffer++; in HAL_PSSI_Receive()
877 *pbuffer = (uint8_t)((data & 0x0FF0000U) >> 16U); in HAL_PSSI_Receive()
878 pbuffer++; in HAL_PSSI_Receive()
879 *pbuffer = (uint8_t)((data & 0xFF000000U) >> 24U); in HAL_PSSI_Receive()
880 pbuffer++; in HAL_PSSI_Receive()