/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/asn1/der/choice/ |
A D | der_decode_choice.c | 37 list[x].used = 0; in der_decode_choice() 49 list[x].used = 1; in der_decode_choice() 59 list[x].used = 1; in der_decode_choice() 69 list[x].used = 1; in der_decode_choice() 79 list[x].used = 1; in der_decode_choice() 90 list[x].used = 1; in der_decode_choice() 101 list[x].used = 1; in der_decode_choice() 112 list[x].used = 1; in der_decode_choice() 120 list[x].used = 1; in der_decode_choice() 175 list[x].used = 1; in der_decode_choice() [all …]
|
/optee_os-3.20.0/core/lib/zlib/ |
A D | inftrees.c | 48 unsigned used; /* code entries in table used */ local 206 used = 1U << root; /* use root table entries */ 207 mask = used - 1; /* mask for comparing low */ 210 if ((type == LENS && used > ENOUGH_LENS) || 211 (type == DISTS && used > ENOUGH_DISTS)) 278 used += 1U << curr; 279 if ((type == LENS && used > ENOUGH_LENS) || 280 (type == DISTS && used > ENOUGH_DISTS)) 302 *table += used;
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/asn1/der/set/ |
A D | der_encode_set.c | 29 return A->used - B->used; in s_qsort_helper() 58 copy[x].used = x; in der_encode_set()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/asn1/der/custom_type/ |
A D | der_decode_custom_type.c | 103 if (((unsigned long)root->used >= der_asn1_type_to_identifier_map_sz) || in der_decode_custom_type_ex() 104 (der_asn1_type_to_identifier_map[root->used] == -1)) { in der_decode_custom_type_ex() 109 root->type = (ltc_asn1_type)root->used; in der_decode_custom_type_ex() 133 list[i].used = 0; in der_decode_custom_type_ex() 146 if (!ordered && list[i].used == 1) { continue; } in der_decode_custom_type_ex() 394 list[i].used = 1; in der_decode_custom_type_ex() 402 if (list[i].used == 0 && list[i].optional == 0) { in der_decode_custom_type_ex()
|
A D | der_length_custom_type.c | 49 type = (ltc_asn1_type)list[i].used; in der_length_custom_type() 61 if (!list[i].used && list[i].optional) continue; in der_length_custom_type()
|
A D | der_encode_custom_type.c | 76 type = (ltc_asn1_type)list[i].used; in der_encode_custom_type()
|
/optee_os-3.20.0/core/lib/libfdt/ |
A D | README.license | 17 libfdt, however, is GPL/BSD dual-licensed. That is, it may be used 27 tools. Allowing libfdt to be used under the terms of the BSD license 33 believe the goal of allowing libfdt to be widely used is more 38 Licenses such as the LGPL which would allow code to be used in non-GPL 40 considered. However, libfdt is designed to be used in firmwares and
|
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/ |
A D | sha512.c | 379 unsigned used; in mbedtls_sha512_finish_ret() local 388 used = ctx->total[0] & 0x7F; in mbedtls_sha512_finish_ret() 390 ctx->buffer[used++] = 0x80; in mbedtls_sha512_finish_ret() 392 if( used <= 112 ) in mbedtls_sha512_finish_ret() 395 memset( ctx->buffer + used, 0, 112 - used ); in mbedtls_sha512_finish_ret() 400 memset( ctx->buffer + used, 0, 128 - used ); in mbedtls_sha512_finish_ret()
|
A D | sha256.c | 339 uint32_t used; in mbedtls_sha256_finish_ret() local 348 used = ctx->total[0] & 0x3F; in mbedtls_sha256_finish_ret() 350 ctx->buffer[used++] = 0x80; in mbedtls_sha256_finish_ret() 352 if( used <= 56 ) in mbedtls_sha256_finish_ret() 355 memset( ctx->buffer + used, 0, 56 - used ); in mbedtls_sha256_finish_ret() 360 memset( ctx->buffer + used, 0, 64 - used ); in mbedtls_sha256_finish_ret()
|
A D | md5.c | 300 uint32_t used; in mbedtls_md5_finish_ret() local 306 used = ctx->total[0] & 0x3F; in mbedtls_md5_finish_ret() 308 ctx->buffer[used++] = 0x80; in mbedtls_md5_finish_ret() 310 if( used <= 56 ) in mbedtls_md5_finish_ret() 313 memset( ctx->buffer + used, 0, 56 - used ); in mbedtls_md5_finish_ret() 318 memset( ctx->buffer + used, 0, 64 - used ); in mbedtls_md5_finish_ret()
|
A D | ssl_tls.c | 5460 used += 8; in ssl_session_save() 5575 used += 1; in ssl_session_save() 5582 used += 1; in ssl_session_save() 5589 used += 1; in ssl_session_save() 5596 *olen = used; in ssl_session_save() 6432 used += 4; in mbedtls_ssl_context_save() 6441 used += 16; in mbedtls_ssl_context_save() 6453 used += 1; in mbedtls_ssl_context_save() 6460 used += 8; in mbedtls_ssl_context_save() 6468 used += 2; in mbedtls_ssl_context_save() [all …]
|
A D | sha1.c | 352 uint32_t used; in mbedtls_sha1_finish_ret() local 361 used = ctx->total[0] & 0x3F; in mbedtls_sha1_finish_ret() 363 ctx->buffer[used++] = 0x80; in mbedtls_sha1_finish_ret() 365 if( used <= 56 ) in mbedtls_sha1_finish_ret() 368 memset( ctx->buffer + used, 0, 56 - used ); in mbedtls_sha1_finish_ret() 373 memset( ctx->buffer + used, 0, 64 - used ); in mbedtls_sha1_finish_ret()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/asn1/der/sequence/ |
A D | der_length_sequence.c | 48 if (!list[i].used && list[i].optional) continue; in der_length_sequence_ex()
|
A D | der_decode_sequence_flexi.c | 104 l->used = identifier; in s_der_decode_sequence_flexi()
|
/optee_os-3.20.0/lib/libutils/isoc/arch/arm/softfloat/ |
A D | COPYING.txt | 24 may be used to endorse or promote products derived from this software
|
/optee_os-3.20.0/lib/libmbedtls/mbedtls/ |
A D | ChangeLog | 223 key type used, as well as the key bit-size in the case of 377 unsupported extension used by the server. 402 should be used. 1271 and the used tls-prf. 1294 and the used tls-prf. 1925 underlying transport in case event-driven IO is used. 1954 I/O was used. Found and reported by Hubert Mis in #772. 2569 when GCM is used. Found by udf2457. #441 2834 be always used (found by dcb314) (#235) 2983 argument (allowing memory savings if HMAC is not used) [all …]
|
A D | README.md | 33 There are currently three active build systems used within Mbed TLS releases: 39 The main systems used for development are CMake and GNU Make. Those systems are always complete and… 215 …an be used in a PSA-compliant platform to build services, such as secure boot, secure storage and …
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/math/ |
A D | ltm_desc.c | 128 return (n >= A->used || n < 0) ? 0 : A->dp[n]; in get_digit() 136 return A->used; in get_digit_count()
|
A D | tfm_desc.c | 91 return A->used > 0 ? A->dp[0] : 0; in get_int() 99 return (n >= A->used || n < 0) ? 0 : A->dp[n]; in get_digit() 107 return A->used; in get_digit_count()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/headers/ |
A D | tomcrypt_pk.h | 540 int used; member 558 LTC_MACRO_list[LTC_MACRO_temp].used = 0; \ 587 list[LTC_MACRO_temp##__LINE__].used = (int)(Type); \
|
/optee_os-3.20.0/lib/libutils/isoc/ |
A D | bget.doc | 16 demonstrate how the various functions are used. 67 this generally means that BGET should be used to allocate storage within 155 BGET can be used as part of very sophisticated memory management
|
/optee_os-3.20.0/core/arch/arm/dts/ |
A D | stm32mp157c-ev1.dts | 192 data-shift = <2>; /* lines 9:2 are used */
|
/optee_os-3.20.0/core/arch/arm/mm/ |
A D | core_mmu_v7.c | 25 #error This file is not to be used with LPAE
|
/optee_os-3.20.0/ |
A D | MAINTAINERS | 11 used a bit differently compared to the Linux MAINTAINERS file:
|
A D | CHANGELOG.md | 922 * USB keyboard cannot be used to stop the u-boot timeout ([build issue131]). 1284 In this release, [OP-TEE/optee_linuxdriver][optee_linuxdriver] is no more used. 1418 that used to be in optee_os have been removed, except for Juno board. 1476 * A generic boot scheme can be used. Boot configuration is commonalized. This helps
|