Lines Matching refs:ucValue
530 uint8_t ucValue = 1; in test_vBitConfig_write_8() local
540 vBitConfig_write_8( &xConfig, ucValue ); in test_vBitConfig_write_8()
543 TEST_ASSERT_EQUAL( xConfig.ucContents[ uxIndex ], ucValue ); in test_vBitConfig_write_8()
554 uint16_t ucValue = 0; in test_vBitConfig_write_16() local
556 uint8_t pucData[ sizeof ucValue ]; in test_vBitConfig_write_16()
558 pucData[ 0 ] = ( uint8_t ) ( ( ucValue >> 8 ) & 0xFFU ); in test_vBitConfig_write_16()
559 pucData[ 1 ] = ( uint8_t ) ( ucValue & 0xFFU ); in test_vBitConfig_write_16()
568 vBitConfig_write_16( &xConfig, ucValue ); in test_vBitConfig_write_16()
571 TEST_ASSERT_EQUAL_MEMORY( xConfig.ucContents, pucData, sizeof( ucValue ) ); in test_vBitConfig_write_16()
582 uint32_t ucValue = 0; in test_vBitConfig_write_32() local
584 uint8_t pucData[ sizeof( ucValue ) ]; in test_vBitConfig_write_32()
592 pucData[ 0 ] = ( uint8_t ) ( ( ucValue >> 24 ) & 0xFFU ); in test_vBitConfig_write_32()
593 pucData[ 1 ] = ( uint8_t ) ( ( ucValue >> 16 ) & 0xFFU ); in test_vBitConfig_write_32()
594 pucData[ 2 ] = ( uint8_t ) ( ( ucValue >> 8 ) & 0xFFU ); in test_vBitConfig_write_32()
595 pucData[ 3 ] = ( uint8_t ) ( ucValue & 0xFFU ); in test_vBitConfig_write_32()
597 vBitConfig_write_32( &xConfig, ucValue ); in test_vBitConfig_write_32()
600 TEST_ASSERT_EQUAL_MEMORY( xConfig.ucContents, pucData, sizeof( ucValue ) ); in test_vBitConfig_write_32()