Home
last modified time | relevance | path

Searched defs:a (Results 1 – 25 of 48) sorted by relevance

12

/trusted-firmware-m-3.7.0/lib/ext/cryptocell-312-runtime/shared/include/pal/
Dcc_pal_compiler.h51 #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
Dcc_pal_types.h48 #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/
Dregion.h14 #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/
Dllf_rnd.c30 #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
Dllf_rnd.h37 #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/
Dutil.h41 #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/
Dits_utils.h58 #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/
Dclz.c6 static volatile uint32_t a = 10u; variable
Drbit.c6 static volatile uint32_t a = 10u; variable
Drev.c5 static volatile uint32_t a = 10u; variable
Drev16.c5 static volatile uint32_t a = 10u; variable
Drevsh.c5 static volatile uint32_t a = 10u; variable
Drrx.c6 static volatile uint32_t a = 10u; variable
Dror.c5 static volatile uint32_t a = 10u; variable
/trusted-firmware-m-3.7.0/lib/ext/cryptocell-312-runtime/host/src/cc3x_productionlib/common/
Dprod_util.h18 #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/
Dcc3xx_misc.h33 #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/
Dpka_ec_edw.c31 #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/
Decp_curves_alt.c55 #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/
Dcc_pal_perf_plat.c42 #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/
Defi.h26 #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/
Dcy_utils.h375 #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/
Dpka.h221 #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/
Dadac_crypto_cc312_hash.c15 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/
Drun_integration_helper.c40 #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/
Dec_wrst.h61 uint32_t a[CC_ECPKI_MODUL_MAX_LENGTH_IN_WORDS]; member

12