Home
last modified time | relevance | path

Searched refs:tempResult (Results 1 – 3 of 3) sorted by relevance

/hal_ti-latest/simplelink/source/ti/drivers/cryptoutils/utils/
DCryptoUtils.c45 uint8_t tempResult = 0; in CryptoUtils_buffersMatch() local
54 tempResult |= ((uint8_t *)buffer0)[i] ^ ((uint8_t *)buffer1)[i]; in CryptoUtils_buffersMatch()
57 return tempResult == 0 ? true : false; in CryptoUtils_buffersMatch()
66 uint32_t tempResult = 0; in CryptoUtils_buffersMatchWordAligned() local
82 tempResult |= buffer0[i] ^ buffer1[i]; in CryptoUtils_buffersMatchWordAligned()
85 return tempResult == 0 ? true : false; in CryptoUtils_buffersMatchWordAligned()
/hal_ti-latest/simplelink_lpf3/source/ti/drivers/cryptoutils/utils/
DCryptoUtils.c73 volatile uint8_t tempResult = 0; in CryptoUtils_buffersMatch() local
88 tempResult |= byte0 ^ byte1; in CryptoUtils_buffersMatch()
91 return tempResult == 0; in CryptoUtils_buffersMatch()
108 volatile uint32_t tempResult = 0; in CryptoUtils_buffersMatchWordAligned() local
131 tempResult |= word0 ^ word1; in CryptoUtils_buffersMatchWordAligned()
134 return tempResult == 0; in CryptoUtils_buffersMatchWordAligned()
/hal_ti-latest/simplelink/source/ti/devices/cc13x2_cc26x2/driverlib/
Dcrypto.c856 uint8_t tempResult = 0; in CRYPTOCcmInvAuthDecryptResultGet() local
893 tempResult |= ((uint8_t *) (pui32CipherText))[ui32TagIndex + i] ^ ((uint8_t *)ui32Tag)[i]; in CRYPTOCcmInvAuthDecryptResultGet()
896 return tempResult == 0 ? AES_SUCCESS : CCM_AUTHENTICATION_FAILED; in CRYPTOCcmInvAuthDecryptResultGet()