Home
last modified time | relevance | path

Searched refs:aSource (Results 1 – 10 of 10) sorted by relevance

/trusted-firmware-m-3.4.0/lib/ext/cryptocell-312-runtime/host/src/pal/freertos/
Dcc_pal_mem.c43 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/
Dcc_pal_mem.c45 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/
Dcc_pal_mem.c44 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/
Dcc_pal_mem.h53 #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/
Dcc_pal_mem_plat.h39 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/
Dcc_pal_mem_plat.h38 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/
Dcc_pal_mem_plat.h38 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/
Dcc_pal_mem_plat.h39 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/
Dsrp_driver.h64 const uint8_t* aSource, /*!< [in] The Source buffer to compare to. */
Dsrp_driver.c715 const uint8_t* aSource, /*!< [in] The Source buffer to compare to. */ in SRP_SecureMemCmp() argument
722 stat |= (aTarget[i] ^ aSource[i]); in SRP_SecureMemCmp()