Searched refs:field (Results 1 – 9 of 9) sorted by relevance
| /optee_os/lib/libutils/isoc/include/sys/ |
| H A D | queue.h | 107 #define QUEUEDEBUG_LIST_INSERT_HEAD(head, elm, field) \ argument 109 (head)->lh_first->field.le_prev != &(head)->lh_first) \ 111 #define QUEUEDEBUG_LIST_OP(elm, field) \ argument 112 if ((elm)->field.le_next && \ 113 (elm)->field.le_next->field.le_prev != \ 114 &(elm)->field.le_next) \ 116 if (*(elm)->field.le_prev != (elm)) \ 118 #define QUEUEDEBUG_LIST_POSTREMOVE(elm, field) \ argument 119 (elm)->field.le_next = (void *)1L; \ 120 (elm)->field.le_prev = (void *)1L; [all …]
|
| /optee_os/core/drivers/firewall/ |
| H A D | stm32_iac.c | 54 #define _IAC_FLD_PREP(field, value) (SHIFT_U32((value), \ argument 55 (field ## _SHIFT)) & \ 56 (field ## _MASK)) 57 #define _IAC_FLD_GET(field, value) (((uint32_t)(value) & \ argument 58 (field ## _MASK)) >> \ 59 (field ## _SHIFT))
|
| H A D | stm32_serc.c | 48 #define _SERC_FLD_PREP(field, value) (SHIFT_U32((value), \ argument 49 (field ## _SHIFT)) & \ 50 (field ## _MASK)) 51 #define _SERC_FLD_GET(field, value) (((uint32_t)(value) & \ argument 52 (field ## _MASK)) >> \ 53 (field ## _SHIFT))
|
| H A D | stm32_rifsc.c | 120 #define _RIF_FLD_GET(field, value) (((uint32_t)(value) & \ argument 121 (field ## _MASK)) >>\ 122 (field ## _SHIFT))
|
| /optee_os/core/lib/libtomcrypt/src/pk/ecc/ |
| H A D | ecc_import_pkcs8.c | 78 ltc_asn1_list *version, *field, *point, *point_g, *order, *p_cofactor; in ecc_import_pkcs8() local 83 LTC_SET_DER_FLEXI_CHECK(flexi_should, n++, LTC_ASN1_SEQUENCE, &field); in ecc_import_pkcs8() 130 if (LTC_ASN1_IS_TYPE(field->child, LTC_ASN1_OBJECT_IDENTIFIER) && in ecc_import_pkcs8() 131 LTC_ASN1_IS_TYPE(field->child->next, LTC_ASN1_INTEGER) && in ecc_import_pkcs8() 135 ltc_asn1_list *prime = field->child->next; in ecc_import_pkcs8()
|
| /optee_os/core/lib/libfdt/include/ |
| H A D | libfdt.h | 234 #define fdt_get_header(fdt, field) \ argument 235 (fdt32_ld(&((const struct fdt_header *)(fdt))->field))
|
| /optee_os/mk/ |
| H A D | compile.mk | 38 -Wno-missing-field-initializers -Wno-format-zero-length \
|
| /optee_os/core/tee/ |
| H A D | tee_svc_cryp.c | 691 uint32_t field; in op_u32_to_binary_helper() local 694 if (ADD_OVERFLOW(*offs, sizeof(field), &next_offs)) in op_u32_to_binary_helper() 698 field = TEE_U32_TO_BIG_ENDIAN(v); in op_u32_to_binary_helper() 699 memcpy(data + *offs, &field, sizeof(field)); in op_u32_to_binary_helper() 709 uint32_t field; in op_u32_from_binary_helper() local 711 if (!data || (*offs + sizeof(field)) > data_len) in op_u32_from_binary_helper() 714 memcpy(&field, data + *offs, sizeof(field)); in op_u32_from_binary_helper() 715 *v = TEE_U32_FROM_BIG_ENDIAN(field); in op_u32_from_binary_helper() 716 (*offs) += sizeof(field); in op_u32_from_binary_helper()
|
| /optee_os/lib/libmbedtls/mbedtls/ |
| H A D | ChangeLog | 242 - Finite-field Diffie-Hellman with custom groups. 252 - TLS_DHE_*, i.e. cipher suites using finite-field Diffie-Hellman. 505 ext_types field. 929 detected by comparing the wrong field and the check was erroneously 1446 final delay field in an mbedtls_timing_delay_context, as requested in 1472 field within mbedtls_x509_crt context, as requested in #5585. 1584 documentation stated that the `allowed_pks` field applies to signatures 1673 X.509 parsing, and finally the field fd of mbedtls_net_context on 1952 * Instead of accessing the len field of a DHM context, which is no longer 2134 * The new function mbedtls_dhm_get_value() copy a field out of a [all …]
|