/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/host/src/pal/freertos/ |
D | cc_pal_mem.c | 43 const uint8_t* aSource, in CC_PalSecMemCmp() argument 59 if (aTarget[i] != aSource[i]) in CC_PalSecMemCmp() 65 if (aTarget[i] < aSource[i]) in CC_PalSecMemCmp() 78 const void* aSource, /*!< [in] The Source buffer to compare to. */ in CC_PalMemCmpPlat() argument 81 return memcmp(aTarget, aSource, aSize); in CC_PalMemCmpPlat() 86 … const void* aSource, /*!< [in] The Source buffer to copy from. */ in CC_PalMemCopyPlat() argument 88 return memmove( aDestination, aSource, aSize); in CC_PalMemCopyPlat() 99 const void* aSource, /*!< [in] The Source buffer to copy from. */ in CC_PalMemMovePlat() argument 102 memmove(aDestination, aSource, aSize); in CC_PalMemMovePlat()
|
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/host/src/pal/linux/ |
D | cc_pal_mem.c | 45 const uint8_t* aSource, in CC_PalSecMemCmp() argument 60 if (aTarget[i] != aSource[i]){ in CC_PalSecMemCmp() 64 if (aTarget[i] < aSource[i]) in CC_PalSecMemCmp() 77 const void* aSource, /*!< [in] The Source buffer to compare to. */ in CC_PalMemCmpPlat() argument 80 return memcmp(aTarget, aSource, aSize); in CC_PalMemCmpPlat() 85 … const void* aSource, /*!< [in] The Source buffer to copy from. */ in CC_PalMemCopyPlat() argument 87 return memmove( aDestination, aSource, aSize); in CC_PalMemCopyPlat() 98 const void* aSource, /*!< [in] The Source buffer to copy from. */ in CC_PalMemMovePlat() argument 101 memmove(aDestination, aSource, aSize); in CC_PalMemMovePlat()
|
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/host/src/pal/no_os/ |
D | cc_pal_mem.c | 44 const uint8_t* aSource, in CC_PalSecMemCmp() argument 60 if (aTarget[i] != aSource[i]) in CC_PalSecMemCmp() 66 if (aTarget[i] < aSource[i]) in CC_PalSecMemCmp() 79 const void* aSource, /*!< [in] The Source buffer to compare to. */ in CC_PalMemCmpPlat() argument 82 return memcmp(aTarget, aSource, aSize); in CC_PalMemCmpPlat() 87 … const void* aSource, /*!< [in] The Source buffer to copy from. */ in CC_PalMemCopyPlat() argument 89 return memmove( aDestination, aSource, aSize); in CC_PalMemCopyPlat() 100 … const void* aSource, /*!< [in] The Source buffer to copy from. */ in CC_PalMemMovePlat() argument 103 memmove(aDestination, aSource, aSize); in CC_PalMemMovePlat()
|
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/shared/include/pal/ |
D | cc_pal_mem.h | 53 #define CC_PalMemCmp(aTarget, aSource, aSize) CC_PalMemCmpPlat(aTarget, aSource, aSize) argument 61 #define CC_PalMemCopy(aDestination, aSource, aSize) CC_PalMemCopyPlat(aDestination, aSource, aSize) argument 71 #define CC_PalMemMove(aDestination, aSource, aSize) CC_PalMemMovePlat(aDestination, aSource, aSize) argument
|
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/shared/include/pal/freertos/ |
D | cc_pal_mem_plat.h | 39 const void* aSource, /*!< [in] The Source buffer to compare to. */ 47 … const void* aSource, /*!< [in] The Source buffer to copy from. */ 58 const void* aSource, /*!< [in] The Source buffer to copy from. */
|
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/shared/include/pal/linux/ |
D | cc_pal_mem_plat.h | 38 const void* aSource, /*!< [in] The Source buffer to compare to. */ 47 … const void* aSource, /*!< [in] The Source buffer to copy from. */ 58 const void* aSource, /*!< [in] The Source buffer to copy from. */
|
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/shared/include/pal/no_os/ |
D | cc_pal_mem_plat.h | 38 const void* aSource, /*!< [in] The Source buffer to compare to. */ 47 … const void* aSource, /*!< [in] The Source buffer to copy from. */ 58 const void* aSource, /*!< [in] The Source buffer to copy from. */
|
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/shared/include/pal/mbedos/ |
D | cc_pal_mem_plat.h | 39 const void* aSource, /*!< [in] The Source buffer to compare to. */ 47 … const void* aSource, /*!< [in] The Source buffer to copy from. */ 58 const void* aSource, /*!< [in] The Source buffer to copy from. */
|
/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/cc3x_sym/driver/ |
D | srp_driver.h | 64 const uint8_t* aSource, /*!< [in] The Source buffer to compare to. */
|
D | srp_driver.c | 715 const uint8_t* aSource, /*!< [in] The Source buffer to compare to. */ in SRP_SecureMemCmp() argument 722 stat |= (aTarget[i] ^ aSource[i]); in SRP_SecureMemCmp()
|