/trusted-firmware-m-3.7.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
|
/trusted-firmware-m-3.7.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.7.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.7.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.7.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.7.0/platform/ext/cmsis/CMSIS/Core/Test/src/ |
D | clz.c | 6 static volatile uint32_t a = 10u; variable
|
D | rbit.c | 6 static volatile uint32_t a = 10u; variable
|
D | rev.c | 5 static volatile uint32_t a = 10u; variable
|
D | rev16.c | 5 static volatile uint32_t a = 10u; variable
|
D | revsh.c | 5 static volatile uint32_t a = 10u; variable
|
D | rrx.c | 6 static volatile uint32_t a = 10u; variable
|
D | ror.c | 5 static volatile uint32_t a = 10u; variable
|
/trusted-firmware-m-3.7.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.7.0/platform/ext/accelerator/cc312/cc312-rom/psa_driver_api/include/ |
D | cc3xx_misc.h | 33 #define CEIL_ALLOC_SZ(a,b) (((a) + (b) - 1) / (b)) argument
|
/trusted-firmware-m-3.7.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.7.0/platform/ext/target/stm/common/hal/accelerator/ |
D | ecp_curves_alt.c | 55 #define BYTES_TO_T_UINT_4( a, b, c, d ) \ argument 61 #define BYTES_TO_T_UINT_2( a, b ) \ argument 64 #define BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument 70 #define BYTES_TO_T_UINT_8( a, b, c, d, e, f, g, h ) \ argument 80 #define BYTES_TO_T_UINT_4( a, b, c, d ) \ argument 83 #define BYTES_TO_T_UINT_2( a, b ) \ argument 606 const mbedtls_mpi_uint *a, size_t alen, in ecp_group_load()
|
/trusted-firmware-m-3.7.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.7.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.7.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.7.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.7.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.7.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.7.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
|