/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/shared/include/pal/ |
D | cc_pal_compiler.h | 51 #define CC_ASSERT_CONCAT_(a, b) a##b argument 53 #define CC_ASSERT_CONCAT(a, b) CC_ASSERT_CONCAT_(a, b) argument 86 #define CC_ASSERT_CONCAT_(a, b) a##b argument 88 #define CC_ASSERT_CONCAT(a, b) CC_ASSERT_CONCAT_(a, b) argument 122 #define CC_ASSERT_CONCAT_(a, b) a##b argument 124 #define CC_ASSERT_CONCAT(a, b) CC_ASSERT_CONCAT_(a, b) argument 159 #define CC_ASSERT_CONCAT_(a, b) a##b argument 161 #define CC_ASSERT_CONCAT(a, b) CC_ASSERT_CONCAT_(a, b) argument 195 #define CC_ASSERT_CONCAT_(a, b) a##b argument 197 #define CC_ASSERT_CONCAT(a, b) CC_ASSERT_CONCAT_(a, b) argument
|
D | cc_pal_types.h | 48 #define CC_MIN(a,b) min( a , b ) argument 51 #define CC_MIN( a , b ) ( ( (a) < (b) ) ? (a) : (b) ) argument 56 #define CC_MAX(a,b) max( a , b ) argument 59 #define CC_MAX( a , b ) ( ( (a) > (b) ) ? (a) : (b) ) argument
|
D | cc_pal_perf.h | 60 …#define CCPalPerfTypeStr_str(a) case a: strncpy(pStr, #a + strlen("PERF_TEST_TYPE_"), buffLen); br… in CC_PalPerfTypeStr() argument
|
/trusted-firmware-m-3.6.0/platform/include/ |
D | region.h | 14 #define REGION(a, b, c) a##b##c argument 15 #define REGION_NAME(a, b, c) REGION(a, b, c) argument 16 #define REGION_DECLARE(a, b, c) extern uint32_t REGION_NAME(a, b, c) argument 17 #define REGION_DECLARE_T(a, b, c, t) extern t REGION_NAME(a, b, c) argument
|
/trusted-firmware-m-3.6.0/platform/ext/target/nxp/common/Native_Driver/drivers/ |
D | fsl_casper.c | 170 #define add(c1, c0, a, b) \ argument 181 #define add_cout(carry, c, a, b) add((carry), (c), (a), (b)) argument 183 #define add_cout_cin(carryout, c, a, b, carryin) \ argument 191 #define sub_borrowout(borrow, c, a, b) \ argument 199 #define sub_borrowin_borrowout(borrowout, c, a, b, borrowin) \ argument 208 #define sub_borrowout_1(borrow, c, a) \ argument 216 #define sub_borrowin_borrowout_1(borrowout, c, a, borrowin) \ argument 228 #define mul(c1, c0, a, b) \ argument 242 #define muladd(c1, c0, a, b) \ argument 256 #define muladdadd(c1, c0, a, b) \ argument [all …]
|
D | fsl_common.h | 228 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument 232 #define MAX(a, b) (((a) > (b)) ? (a) : (b)) argument
|
/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/rnd_dma/ |
D | llf_rnd.c | 30 #define max(a,b) (a) > (b) ? (a) : (b) argument 34 #define S(a,n) ((uint32_t)((a) * (1<<(n)))) /* a scaled by n: a \times 2^n */ argument 35 #define U(a,n) ((uint32_t)(a) >> (n)) /* unscale unsigned: a / 2^n */ argument 78 uint64_t Mult32x32(uint32_t a, uint32_t b) in Mult32x32() 91 uint64_t Mult48x16(uint64_t a, uint32_t b) in Mult48x16() 126 a = S(A3,14) * x, /* x*A3; 30 */ in ae() local
|
D | llf_rnd.h | 37 #define Mult16x16(a, b) (((a)&0xffff)*((b)&0xffff)) argument
|
/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/codesafe/src/secure_boot_debug/util/ |
D | util.h | 41 #define min( a , b ) ( ( (a) < (b) ) ? (a) : (b) ) argument 44 #define max( a , b ) ( ( (a) > (b) ) ? (a) : (b) ) argument
|
/trusted-firmware-m-3.6.0/secure_fw/partitions/internal_trusted_storage/ |
D | its_utils.h | 58 #define ITS_UTILS_ALIGN(x, a) (((x) + ((a) - 1)) & ~((a) - 1)) argument 68 #define ITS_UTILS_IS_ALIGNED(x, a) (((x) & ((a) - 1)) == 0) argument
|
/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/host/src/cc3x_productionlib/common/ |
D | prod_util.h | 18 #define PROD_MIN(a , b ) ( ( (a) < (b) ) ? (a) : (b) ) argument
|
/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/pki/ec_edw/ |
D | pka_ec_edw.c | 31 #define REGS_MODIF_POINT(a) EDW_REG_X##a,EDW_REG_Y##a,EDW_REG_Z##a,EDW_REG_T##a /*for Modified poi… argument 32 #define REGS_PREC_POINT(a) EDW_REG_S##a,EDW_REG_D##a,EDW_REG_P##a /*for Precalculate… argument 33 #define REGS_NEG_PREC_POINT(a) EDW_REG_D##a,EDW_REG_S##a,EDW_REG_MP##a /*for Precalculate… argument
|
/trusted-firmware-m-3.6.0/platform/ext/target/stm/common/hal/accelerator/ |
D | ecp_curves_alt.c | 57 #define BYTES_TO_T_UINT_4( a, b, c, d ) \ argument 63 #define BYTES_TO_T_UINT_2( a, b ) \ argument 66 #define BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument 72 #define BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument 82 #define BYTES_TO_T_UINT_4( a, b, c, d ) \ argument 85 #define BYTES_TO_T_UINT_2( a, b ) \ argument 608 const mbedtls_mpi_uint *a, size_t alen, in ecp_group_load()
|
/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/host/src/pal/freertos/ |
D | cc_pal_perf_plat.c | 42 #define MAX(a,b) (a) > (b) ? (a) : (b) argument 43 #define MIN(a,b) (a) < (b) ? (a) : (b) argument
|
/trusted-firmware-m-3.6.0/platform/ext/target/arm/corstone1000/partition/ |
D | efi.h | 26 #define EFI_GUID(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \ argument
|
/trusted-firmware-m-3.6.0/platform/ext/target/cypress/psoc64/libs/core-lib/include/ |
D | cy_utils.h | 375 #define CY_SYSLIB_DIV_ROUND(a, b) (((a) + ((b) / 2U)) / (b)) argument 386 #define CY_SYSLIB_DIV_ROUNDUP(a, b) ((((a) - 1U) / (b)) + 1U) argument 395 #define CY_COVERITY_PRAGMA_STR(a) #a argument
|
/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/pki/common/ |
D | pka.h | 221 #define PKA_MOD_INV_W_EXP(res,a,nm2) {\ argument 226 #define PKA_SET_VAL(a,v) {\ argument 231 #define PKA_COMPARE_STATUS(lenId, a, b, stat) {\ argument 236 #define PKA_COMPARE_IM_STATUS(lenId, a, b,stat) {\ argument
|
/trusted-firmware-m-3.6.0/platform/ext/accelerator/cc312/psa-adac/ |
D | adac_crypto_cc312_hash.c | 15 static psa_status_t hash_check(const uint8_t *a, size_t la, const uint8_t *b, in hash_check()
|
/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/host/src/tests/integration_cc3x/runtime_integration_test/ |
D | run_integration_helper.c | 40 #define assert(a) do{} while(0) in runIt_unhexify() argument
|
/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/pki/ec_wrst/ |
D | ec_wrst.h | 61 uint32_t a[CC_ECPKI_MODUL_MAX_LENGTH_IN_WORDS]; member
|
D | pka_ec_wrst.c | 209 const uint32_t a, /*!< [in] Pka register holding scalar a. */ in PkaSum2ScalarMullt()
|
/trusted-firmware-m-3.6.0/docs/configuration/profiles/ |
D | tfm_profile_large.rst | 228 .. [a] PS service is enabled by default. Platforms without off-chip storage citation
|
/trusted-firmware-m-3.6.0/platform/ext/accelerator/cc312/cc312-rom/ |
D | cc3xx_drbg_hash.c | 21 #define CEIL(a, b) ((a) + (b) - 1)/(b) argument
|
/trusted-firmware-m-3.6.0/secure_fw/partitions/crypto/ |
D | crypto_init.c | 38 #define ALIGN(x, a) (((x) + ((a) - 1)) & ~((a) - 1)) argument
|
/trusted-firmware-m-3.6.0/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/cc3x_sym/api/ |
D | mbedtls_cc_ecies.c | 149 static void ecies_free_keys(CCEcpkiUserPrivKey_t *a, CCEcpkiUserPublKey_t *b) in ecies_free_keys()
|