| /optee_os/core/lib/zlib/ |
| H A D | inftrees.c | 29 requested root table index bits, and on return it is the actual root 44 unsigned root; /* number of index bits for root table */ local 52 unsigned low; /* low bits for current root entry */ 53 unsigned mask; /* mask for low root bits */ 113 /* bound code lengths, force root to be within code lengths */ 114 root = *bits; 117 if (root > max) root = max; 129 if (root < min) root = min; 158 root is the number of index bits for the root table. When len exceeds 159 root, sub-tables are created pointed to by the root entry with an index [all …]
|
| H A D | inftrees.h | 43 program are the number of symbols, the initial root table size, and the 46 The initial root table size (9 or 6) is found in the fifth argument of the 47 inflate_table() calls in inflate.c and infback.c. If the root table size is
|
| /optee_os/core/lib/libtomcrypt/src/pk/asn1/der/custom_type/ |
| H A D | der_decode_custom_type.c | 17 @param root The item that defines the custom type to decode 21 ltc_asn1_list *root) in der_decode_custom_type() argument 23 LTC_ARGCHK(root != NULL); in der_decode_custom_type() 24 …return der_decode_custom_type_ex(in, inlen, root, NULL, 0, LTC_DER_SEQ_ORDERED | LTC_DER_SEQ_RELAX… in der_decode_custom_type() 31 For custom types root is used 36 @param root The item that defines the custom type to decode 43 ltc_asn1_list *root, in der_decode_custom_type_ex() argument 62 if (root == NULL) { in der_decode_custom_type_ex() 71 if (root->type != LTC_ASN1_CUSTOM_TYPE) { in der_decode_custom_type_ex() 76 if (root->pc == LTC_ASN1_PC_PRIMITIVE) { in der_decode_custom_type_ex() [all …]
|
| H A D | der_length_custom_type.c | 16 root-ltc_asn1_list where the type is defined. 18 @param root The root of the struct to encode 23 int der_length_custom_type(const ltc_asn1_list *root, unsigned long *outlen, unsigned long *payload… in der_length_custom_type() argument 31 LTC_ARGCHK(root != NULL); in der_length_custom_type() 35 if ((err = der_length_asn1_identifier(root, &id_len)) != CRYPT_OK) { in der_length_custom_type() 40 if (root->pc == LTC_ASN1_PC_PRIMITIVE) { in der_length_custom_type() 41 list = root; in der_length_custom_type() 44 list = root->data; in der_length_custom_type() 45 inlen = root->size; in der_length_custom_type() 48 if (root->pc == LTC_ASN1_PC_PRIMITIVE) { in der_length_custom_type() [all …]
|
| H A D | der_encode_custom_type.c | 17 root-ltc_asn1_list where the type is defined. 19 @param root The root of the list of items to encode 24 int der_encode_custom_type(const ltc_asn1_list *root, in der_encode_custom_type() argument 33 LTC_ARGCHK(root != NULL); in der_encode_custom_type() 39 if (der_length_custom_type(root, &y, &z) != CRYPT_OK) return CRYPT_INVALID_ARG; in der_encode_custom_type() 49 if (der_length_asn1_identifier(root, &id_len) != CRYPT_OK) return CRYPT_INVALID_ARG; in der_encode_custom_type() 53 if (root->pc == LTC_ASN1_PC_PRIMITIVE) { in der_encode_custom_type() 54 list = root; in der_encode_custom_type() 62 list = root->data; in der_encode_custom_type() 63 inlen = root->size; in der_encode_custom_type() [all …]
|
| /optee_os/.github/workflows/ |
| H A D | ci.yml | 365 export FORCE_UNSAFE_CONFIGURE=1 # Prevent Buildroot error when building as root 389 RUN /root/get_optee.sh default /root/optee_repo_qemu 451 -v /home/runner/work/ccache:/root/.cache/ccache \ 452 -w /root \ 458 export BR2_CCACHE_DIR=/root/.cache/ccache 462 TOP=/root/optee_repo_qemu 483 RUN /root/get_optee.sh qemu_v8 /root/optee_repo_qemu_v8 595 -v /home/runner/work/ccache:/root/ [all...] |
| /optee_os/core/tee/ |
| H A D | fs_htree.c | 90 struct htree_node root; member 207 return traverse_post_order(&targ, &ht->root); in htree_traverse_post_order() 213 /* Calculate level of the node, root node (1) has level 1 */ in node_id_to_level() 220 struct htree_node *node = &ht->root; in find_closest_node() 224 /* n = 1 because root node is level 1 */ in find_closest_node() 329 res = rpc_read_node(ht, 1, idx, &ht->root.node); in init_head_from_data() 333 if (!memcmp(ht->root.node.hash, hash, in init_head_from_data() 334 sizeof(ht->root.node.hash))) { in init_head_from_data() 357 res = rpc_read_node(ht, 1, idx, &ht->root.node); in init_head_from_data() 367 ht->root.id = 1; in init_head_from_data() [all …]
|
| /optee_os/core/pta/ |
| H A D | widevine.c | 63 * The Widevine root of trust secret. Used to sign the widevine 96 value = fdt_getprop(fdt, node, "google,widevine-root-of-trust-ecc-p256", in init_widevine_dt_data()
|
| /optee_os/.devcontainer/ |
| H A D | Dockerfile.vscode | 45 # Add non root user
|
| /optee_os/lib/libmbedtls/mbedtls/library/ |
| H A D | lms.c | 89 * that the root node of the Merkle tree is 165 * that the root node of the Merkle tree is 428 * public key is the root node of the Merkle tree). 437 * because the Merkle tree root is 1-indexed, the 0 484 /* Calculate a path from a leaf node of the Merkle tree to the root of the tree, 689 /* Root node is always at position 1, due to 1-based indexing */ in mbedtls_lms_calculate_public_key()
|
| /optee_os/core/include/tee/ |
| H A D | fs_htree.h | 106 * @hash: hash of root node, ignored if NULL 139 * @hash: hash of root node is copied to this if not NULL
|
| /optee_os/core/lib/libfdt/ |
| H A D | fdt_overlay.c | 196 * Start adjusting the phandles from the overlay root in overlay_adjust_local_phandles() 338 * Update our local references from the root of the tree in overlay_update_local_references() 662 /* root? we're done */ in get_path_len() 672 /* in case of root pretend it's "/" */ in get_path_len() 715 /* it no root symbols exist we should create them */ in overlay_symbol_update() 810 if (len > 1) { /* target is not root */ in overlay_symbol_update()
|
| /optee_os/core/pta/veraison_attestation/ |
| H A D | README.md | 17 …evel entity, such as the bootloader. Without such anchoring to a platform Root of Trust (RoT), the…
|
| /optee_os/core/drivers/clk/ |
| H A D | clk.c | 458 /* Indent for root clock level */ in print_clk() 463 /* Indent for root parent to clock parent levels */ in print_clk() 480 /* Root clock indentation */ in print_clk()
|
| /optee_os/core/drivers/regulator/ |
| H A D | regulator.c | 407 /* Indent for root clock level */ in print_regulator() 412 /* Indent for root supply to regulator supply levels */ in print_regulator() 431 /* Root supply indentation */ in print_regulator()
|
| /optee_os/core/arch/arm/plat-versal/ |
| H A D | main.c | 84 IMSG("Hardware Root of Trust: Asymmetric[%s], Symmetric[%s]", in platform_banner()
|
| /optee_os/core/lib/scmi-server/include/ |
| H A D | scmi_agent_configuration.h | 76 * struct scpfw_config - SCP firmware configuration root node
|
| /optee_os/lib/libutils/isoc/arch/arm/softfloat/source/ |
| H A D | f64_sqrt.c | 92 | (`sig32Z' is guaranteed to be a lower bound on the square root of in f64_sqrt() 93 | `sig32A', which makes `sig32Z' also a lower bound on the square root of in f64_sqrt()
|
| H A D | extF80_sqrt.c | 101 | (`sig32Z' is guaranteed to be a lower bound on the square root of in extF80_sqrt() 102 | `sig32A', which makes `sig32Z' also a lower bound on the square root of in extF80_sqrt()
|
| H A D | f128_sqrt.c | 98 | (`sig32Z' is guaranteed to be a lower bound on the square root of in f128_sqrt() 99 | `sig32A', which makes `sig32Z' also a lower bound on the square root of in f128_sqrt()
|
| /optee_os/lib/libutils/isoc/arch/arm/softfloat/doc/ |
| H A D | SoftFloat-history.html | 94 Fixed a bug in all <NOBR>64-bit</NOBR>-version square root functions except
|
| /optee_os/ |
| H A D | Makefile | 31 # path is absolute or relative to current source root directory.
|
| /optee_os/core/include/drivers/ |
| H A D | ls_sfp.h | 55 * @srkhr[0x8]: Super Root Key Hash Register.
|
| /optee_os/lib/libmbedtls/mbedtls/include/mbedtls/ |
| H A D | lms.h | 174 * A LMS public key is the hash output that is the root of the Merkle tree, and 193 … the form of the Merkle tree root node. */
|
| /optee_os/core/include/ |
| H A D | signed_hdr.h | 108 * next struct shdr using this subkey instead of the root key.
|