Home
last modified time | relevance | path

Searched refs:byte (Results 1 – 22 of 22) sorted by relevance

/hal_infineon-latest/mtb-pdl-cat1/drivers/third_party/ethernet/src/
Dedd_rx.c1015 addr->byte[0] + (addr->byte[1]<<8) + \ in emacSetSpecificAddr()
1016 (addr->byte[2]<<16) + (addr->byte[3]<<24));\ in emacSetSpecificAddr()
1022 addr->byte[4] + (addr->byte[5]<<8));\ in emacSetSpecificAddr()
1027 addr->byte[4] + (addr->byte[5]<<8));\ in emacSetSpecificAddr()
1175 addr->byte[0] = (regAddrBottom & 0xFF); in emacGetSpecificAddr()
1176 addr->byte[1] = ((regAddrBottom>>8) & 0xFF); in emacGetSpecificAddr()
1177 addr->byte[2] = ((regAddrBottom>>16) & 0xFF); in emacGetSpecificAddr()
1178 addr->byte[3] = ((regAddrBottom>>24) & 0xFF); in emacGetSpecificAddr()
1179 addr->byte[4] = (regAddrTop & 0xFF); in emacGetSpecificAddr()
1180 addr->byte[5] = ((regAddrTop>>8) & 0xFF); in emacGetSpecificAddr()
[all …]
/hal_infineon-latest/mtb-pdl-cat1/drivers/source/
Dcy_cryptolite_utils.c41 uint8_t byte = 0; in Cy_Cryptolite_String2ByteArray() local
69 byte |= nibble; in Cy_Cryptolite_String2ByteArray()
73 byte |= nibble << 4U; in Cy_Cryptolite_String2ByteArray()
78 p_dst[byte_idx] = byte; in Cy_Cryptolite_String2ByteArray()
81 byte = 0; in Cy_Cryptolite_String2ByteArray()
Dcy_efuse_v3.c305 uint8_t byte; in Cy_EFUSE_ReadBit() local
308 (void) Cy_EFUSE_ReadByte(base, &byte, offset); in Cy_EFUSE_ReadBit()
311 *dst = (byte >> bitPos) & 0x01U; in Cy_EFUSE_ReadBit()
Dcy_scb_i2c.c2024 cy_en_scb_i2c_command_t ackNack, uint8_t *byte, in Cy_SCB_I2C_MasterReadByte() argument
2028 CY_ASSERT_L1(CY_SCB_IS_BUFFER_VALID (byte, 1UL)); in Cy_SCB_I2C_MasterReadByte()
2053 *byte = (uint8_t) Cy_SCB_ReadRxFifo(base); in Cy_SCB_I2C_MasterReadByte()
2115 cy_en_scb_i2c_status_t Cy_SCB_I2C_MasterWriteByte(CySCB_Type *base, uint8_t byte, uint32_t timeoutM… in Cy_SCB_I2C_MasterWriteByte() argument
2128 Cy_SCB_WriteTxFifo(base, (uint32_t) byte); in Cy_SCB_I2C_MasterWriteByte()
Dcy_scb_ezi2c.c1142 uint32_t byte = Cy_SCB_ReadRxFifo(base); in HandleDataReceive() local
1151 context->curBuf[0UL] = (uint8_t) byte; in HandleDataReceive()
/hal_infineon-latest/mtb-hal-cat1/source/
Dcyhal_hwmgr.c135 uint8_t byte = (uint8_t)(bitPosition >> CY_BYTE_NUM_SHIFT); in _cyhal_is_set() local
137 *isSet = (used[byte] & (1 << bit)); in _cyhal_is_set()
148 uint8_t byte = (uint8_t)(bitPosition >> CY_BYTE_NUM_SHIFT); in _cyhal_set_bit() local
150 used[byte] |= (1 << bit); in _cyhal_set_bit()
161 uint8_t byte = (uint8_t)(bitPosition >> CY_BYTE_NUM_SHIFT); in _cyhal_clear_bit() local
163 used[byte] &= ~(1 << bit); in _cyhal_clear_bit()
Dcyhal_irq_impl.c72 uint16_t byte = bit / 8u; in _cyhal_system_irq_lookup_priority() local
75 uint8_t bit_value = ((_cyhal_system_irq_priority[byte] >> bit_in_byte) & 1u); in _cyhal_system_irq_lookup_priority()
87 uint16_t byte = bit / 8u; in _cyhal_system_irq_store_priority() local
93 _cyhal_system_irq_priority[byte] |= (1u << bit_in_byte); in _cyhal_system_irq_store_priority()
97 _cyhal_system_irq_priority[byte] &= ~(1u << bit_in_byte); in _cyhal_system_irq_store_priority()
/hal_infineon-latest/wifi-host-driver/WiFi_Host_Driver/src/
Dwhd_utils.c1090 uint16_t byte = 0; in whd_str_to_ip() local
1093 byte *= 10; in whd_str_to_ip()
1094 byte += ip4addr[stringLength++] - '0'; in whd_str_to_ip()
1097 if (byte > 0xff) in whd_str_to_ip()
1104 addr[byteCount++] = (uint8_t)byte; in whd_str_to_ip()
1122 static void whd_ipv4_itoa(char *string, uint8_t byte) in whd_ipv4_itoa() argument
1130 *string++ = '0' + byte % 10; in whd_ipv4_itoa()
1131 byte /= 10; in whd_ipv4_itoa()
1132 } while (byte); in whd_ipv4_itoa()
/hal_infineon-latest/core-lib/
DREADME.md18 * `CY_SWAP_ENDIAN16`: Swaps the byte ordering of a 16-bit value
19 * `CY_SWAP_ENDIAN32`: Swaps the byte ordering of a 32-bit value
20 * `CY_SWAP_ENDIAN64`: Swaps the byte ordering of a 64-bit value
DRELEASE.md14 * CY_SWAP_ENDIAN16: Swaps the byte ordering of a 16-bit value
15 * CY_SWAP_ENDIAN32: Swaps the byte ordering of a 32-bit value
16 * CY_SWAP_ENDIAN64: Swaps the byte ordering of a 64-bit value
/hal_infineon-latest/bless/
Dcy_ble_common.c895 void Cy_BLE_HAL_MappingUartRxDataHandler(uint8_t byte) in Cy_BLE_HAL_MappingUartRxDataHandler() argument
898 (void) byte; in Cy_BLE_HAL_MappingUartRxDataHandler()
901 Cy_BLE_HAL_UartRxDataHandler(byte); in Cy_BLE_HAL_MappingUartRxDataHandler()
/hal_infineon-latest/mtb-pdl-cat1/drivers/include/
Dcy_crypto_core_hw_v2.h332 __STATIC_INLINE void Cy_Crypto_Core_V2_RBSetByte(CRYPTO_Type *base, uint32_t offset, uint8_t byte) in Cy_Crypto_Core_V2_RBSetByte() argument
341 ((uint32_t)(byte) << CY_CRYPTO_RSRC0_SHIFT)); in Cy_Crypto_Core_V2_RBSetByte()
Dcy_usbfs_dev_drv_reg.h184 …C_INLINE void Cy_USBFS_Dev_Drv_WriteData (USBFS_Type *base, uint32_t endpoint, uint8_t byte);
1326 __STATIC_INLINE void Cy_USBFS_Dev_Drv_WriteData(USBFS_Type *base, uint32_t endpoint, uint8_t byte) in Cy_USBFS_Dev_Drv_WriteData() argument
1328 USBFS_DEV_ARB_RW_DR(base, endpoint) = (uint32_t) byte; in Cy_USBFS_Dev_Drv_WriteData()
Dcy_scb_i2c.h746 …us_t Cy_SCB_I2C_MasterReadByte (CySCB_Type *base, cy_en_scb_i2c_command_t ackNack, uint8_t *byte,
748 cy_en_scb_i2c_status_t Cy_SCB_I2C_MasterWriteByte (CySCB_Type *base, uint8_t byte, uint32_t timeou…
Dcy_ethif.h703 uint8_t byte[6]; /**< 6 bytes MAC Address */ member
/hal_infineon-latest/bless/include/
Dcy_ble_stack_pvt.h74 extern void Cy_BLE_HAL_UartRxDataHandler(uint8_t byte);
Dcy_ble_hal_pvt.h236 void Cy_BLE_HAL_MappingUartRxDataHandler(uint8_t byte);
/hal_infineon-latest/mtb-template-cat1/files/templates/cat1c/COMPONENT_MTB/COMPONENT_CM0P/TOOLCHAIN_IAR/
Dstartup_cm0plus.s96 …; align to 256 byte, because CM0_VECTOR_TABLE_BASE register only supports address bits [31:8] (Not…
/hal_infineon-latest/XMCLib/devices/XMC4500/Source/ARM/
Dstartup_XMC4500.s41 ; V1.30, August 2013, Fix the bug of stack pointer alignment to a 8 byte boundary
Dstartup_XMC4502.s41 ; V1.30, August 2013, Fix the bug of stack pointer alignment to a 8 byte boundary
Dstartup_XMC4504.s41 ; V1.30, August 2013, Fix the bug of stack pointer alignment to a 8 byte boundary
/hal_infineon-latest/mtb-pdl-cat1/drivers/third_party/ethernet/include/
Dcedi.h953 uint8_t byte[6]; member