/optee_os-3.20.0/core/include/drivers/ |
A D | tpm2_ptp_fifo.h | 21 #define TPM2_ACCESS(v) (0x0000 | SHIFT_U32((v), 12)) argument 22 #define TPM2_INT_ENABLE(v) (0x0008 | SHIFT_U32((v), 12)) argument 23 #define TPM2_INT_VECTOR(v) (0x000c | SHIFT_U32((v), 12)) argument 24 #define TPM2_INT_STATUS(v) (0x0010 | SHIFT_U32((v), 12)) argument 25 #define TPM2_INT_CAPABILITY(v) (0x0014 | SHIFT_U32((v), 12)) argument 26 #define TPM2_STS(v) (0x0018 | SHIFT_U32((v), 12)) argument 27 #define TPM2_DATA_FIFO(v) (0x0024 | SHIFT_U32((v), 12)) argument 28 #define TPM2_INTERFACE_ID(v) (0x0030 | SHIFT_U32((v), 12)) argument 29 #define TPM2_XDATA_FIFO(v) (0x0080 | SHIFT_U32((v), 12)) argument 30 #define TPM2_DID_VID(v) (0x0F00 | SHIFT_U32((v), 12)) argument [all …]
|
/optee_os-3.20.0/lib/libutils/isoc/include/ |
A D | stdint.h | 171 #define U(v) v argument 172 #define UL(v) v argument 173 #define ULL(v) v argument 174 #define L(v) v argument 175 #define LL(v) v argument 177 #define U(v) v ## U argument 180 #define L(v) v ## L argument 186 #define INT8_C(v) v argument 187 #define UINT8_C(v) v argument 188 #define INT16_C(v) v argument [all …]
|
/optee_os-3.20.0/lib/libutils/isoc/arch/arm/softfloat/source/include/ |
A D | softfloat_types.h | 51 typedef struct { uint32_t v; } float32_t; member 52 typedef struct { uint64_t v; } float64_t; member 53 typedef struct { uint64_t v[2]; } float128_t; member
|
A D | primitiveTypes.h | 47 struct uint64_extra { uint64_t extra, v; }; member 48 struct uint128_extra { uint64_t extra; struct uint128 v; }; member 51 struct uint64_extra { uint64_t v, extra; }; member 52 struct uint128_extra { struct uint128 v; uint64_t extra; }; member
|
/optee_os-3.20.0/core/drivers/crypto/caam/include/ |
A D | caam_io.h | 22 #define caam_write_val32(a, v) put_be32(a, v) argument 30 #define caam_write_val32(a, v) put_le32(a, v) argument 33 #define caam_write_val64(a, v) put_le64(a, v) argument
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/asn1/der/bit/ |
A D | der_decode_raw_bit_string.c | 13 #define SETBIT(v, n) (v=((unsigned char)(v) | (1U << (unsigned char)(n)))) argument 14 #define CLRBIT(v, n) (v=((unsigned char)(v) & ~(1U << (unsigned char)(n)))) argument
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/misc/crypt/ |
A D | crypt_argchk.c | 11 void crypt_argchk(const char *v, const char *s, int d) in crypt_argchk()
|
/optee_os-3.20.0/lib/libutils/ext/include/ |
A D | util.h | 49 #define ROUNDUP(v, size) (((v) + ((__typeof__(v))(size) - 1)) & \ argument 52 #define ROUNDUP_OVERFLOW(v, size, res) (__extension__({ \ argument 76 #define ROUNDDOWN(v, size) ((v) & ~((__typeof__(v))(size) - 1)) argument 122 #define SHIFT_U32(v, shift) ((v) << (shift)) argument 123 #define SHIFT_U64(v, shift) ((v) << (shift)) argument 127 #define SHIFT_U32(v, shift) ((uint32_t)(v) << (shift)) argument 128 #define SHIFT_U64(v, shift) ((uint64_t)(v) << (shift)) argument
|
/optee_os-3.20.0/core/arch/arm/include/kernel/ |
A D | vfp.h | 23 uint64_t v; member 45 uint8_t v[16]; member
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/misc/ |
A D | compare_testvector.c | 12 static void s_print_hex(const char* what, const void* v, const unsigned long l) in s_print_hex()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/asn1/der/set/ |
A D | der_encode_set.c | 13 static int s_ltc_to_asn1(ltc_asn1_type v) in s_ltc_to_asn1()
|
/optee_os-3.20.0/lib/libutee/ |
A D | tee_uuid_from_str.c | 25 uint32_t v = 0; in parse_hex() local
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/asn1/der/printable_string/ |
A D | der_length_printable_string.c | 102 int der_printable_value_decode(int v) in der_printable_value_decode()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/asn1/der/teletex_string/ |
A D | der_length_teletex_string.c | 146 int der_teletex_value_decode(int v) in der_teletex_value_decode()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/asn1/der/ia5/ |
A D | der_length_ia5_string.c | 130 int der_ia5_value_decode(int v) in der_ia5_value_decode()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/dsa/ |
A D | dsa_verify_hash.c | 27 void *w, *v, *u1, *u2; in dsa_verify_hash_raw() local
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/ecc/ |
A D | ecc_sign_hash.c | 33 int v = 0; in ecc_sign_hash_ex() local
|
A D | ecc_verify_hash.c | 29 void *r, *s, *v, *w, *u1, *u2, *e, *p, *m, *a, *a_plus3; in ecc_verify_hash_ex() local
|
A D | ecc_recover_key.c | 32 void *r, *s, *v, *w, *t1, *t2, *u1, *u2, *v1, *v2, *e, *x, *y, *a_plus3; in ecc_recover_key() local
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/misc/pkcs12/ |
A D | pkcs12_kdf.c | 15 unsigned long v = hash_descriptor[hash_id]->blocksize; in pkcs12_kdf() local
|
/optee_os-3.20.0/core/arch/arm/plat-sunxi/ |
A D | main.c | 106 vaddr_t v = (vaddr_t)phys_to_virt(SUNXI_TZPC_BASE, MEM_AREA_IO_SEC, in tzpc_init() local
|
/optee_os-3.20.0/lib/libutils/ext/ |
A D | mempool.c | 75 vaddr_t v = ROUNDDOWN(pool->data + sz, sizeof(long) * 2); in init_mpool() local
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/ciphers/ |
A D | rc5.c | 51 ulong32 L[64], *S, A, B, i, j, v, s, t, l; in s_rc5_setup() local
|
/optee_os-3.20.0/core/pta/tests/ |
A D | invoke.c | 36 void *v = NULL; in test_v2p2v() local
|
/optee_os-3.20.0/core/arch/arm/kernel/ |
A D | boot.c | 925 fdt32_t v = cpu_to_fdt32((uint32_t)val); in set_dt_val() local 929 fdt64_t v = cpu_to_fdt64(val); in set_dt_val() local 1010 uint32_t v; in get_dt_val_and_advance() local 1016 uint64_t v; in get_dt_val_and_advance() local
|