/optee_os-3.20.0/core/lib/zlib/ |
A D | zutil.c | 218 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size) in zcalloc() argument 221 ulg bsize = (ulg)items*size; in zcalloc() 281 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() argument 284 return _halloc((long)items, size); in zcalloc() 302 extern voidp calloc OF((uInt items, uInt size)); 306 voidpf ZLIB_INTERNAL zcalloc (opaque, items, size) in zcalloc() argument 308 unsigned items; 312 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) : 313 (voidpf)calloc(items, size);
|
A D | zutil.h | 261 voidpf ZLIB_INTERNAL zcalloc OF((voidpf opaque, unsigned items, 266 #define ZALLOC(strm, items, size) \ argument 267 (*((strm)->zalloc))((strm)->opaque, (items), (size))
|
A D | zlib.h | 82 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
|
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/ |
A D | debug.c | 281 mbedtls_pk_debug_item items[MBEDTLS_PK_DEBUG_MAX_ITEMS]; in debug_print_pk() local 284 memset( items, 0, sizeof( items ) ); in debug_print_pk() 286 if( mbedtls_pk_debug( pk, items ) != 0 ) in debug_print_pk() 295 if( items[i].type == MBEDTLS_PK_DEBUG_NONE ) in debug_print_pk() 298 mbedtls_snprintf( name, sizeof( name ), "%s%s", text, items[i].name ); in debug_print_pk() 301 if( items[i].type == MBEDTLS_PK_DEBUG_MPI ) in debug_print_pk() 302 mbedtls_debug_print_mpi( ssl, level, file, line, name, items[i].value ); in debug_print_pk() 305 if( items[i].type == MBEDTLS_PK_DEBUG_ECP ) in debug_print_pk() 306 mbedtls_debug_print_ecp( ssl, level, file, line, name, items[i].value ); in debug_print_pk()
|
A D | pk_wrap.c | 178 static void rsa_debug( const void *ctx, mbedtls_pk_debug_item *items ) in rsa_debug() argument 180 items->type = MBEDTLS_PK_DEBUG_MPI; in rsa_debug() 181 items->name = "rsa.N"; in rsa_debug() 182 items->value = &( ((mbedtls_rsa_context *) ctx)->N ); in rsa_debug() 184 items++; in rsa_debug() 186 items->type = MBEDTLS_PK_DEBUG_MPI; in rsa_debug() 187 items->name = "rsa.E"; in rsa_debug() 188 items->value = &( ((mbedtls_rsa_context *) ctx)->E ); in rsa_debug() 408 items->type = MBEDTLS_PK_DEBUG_ECP; in eckey_debug() 409 items->name = "eckey.Q"; in eckey_debug() [all …]
|
A D | pk.c | 551 int mbedtls_pk_debug( const mbedtls_pk_context *ctx, mbedtls_pk_debug_item *items ) in mbedtls_pk_debug() argument 560 ctx->pk_info->debug_func( ctx->pk_ctx, items ); in mbedtls_pk_debug()
|
A D | x509_crt.c | 367 ver_chain->items[i].crt = NULL; in x509_crt_verify_chain_reset() 368 ver_chain->items[i].flags = (uint32_t) -1; in x509_crt_verify_chain_reset() 2845 cur = &ver_chain->items[ver_chain->len - 1]; in x509_crt_verify_chain() 2860 cur = &ver_chain->items[ver_chain->len]; in x509_crt_verify_chain() 3080 cur = &ver_chain->items[i-1]; in x509_crt_merge_flags_with_cb() 3158 ver_chain.items[0].flags |= ee_flags; in x509_crt_verify_restartable_ca_cb()
|
/optee_os-3.20.0/core/kernel/ |
A D | embedded_ts.c | 25 static void *zalloc(void *opaque __unused, unsigned int items, in zalloc() argument 28 return mempool_alloc(mempool_default, items * size); in zalloc()
|
/optee_os-3.20.0/lib/libmbedtls/mbedtls/include/mbedtls/ |
A D | pk_internal.h | 105 void (*debug_func)( const void *ctx, mbedtls_pk_debug_item *items );
|
A D | pk.h | 612 int mbedtls_pk_debug( const mbedtls_pk_context *ctx, mbedtls_pk_debug_item *items );
|
A D | x509_crt.h | 217 mbedtls_x509_crt_verify_chain_item items[MBEDTLS_X509_MAX_VERIFY_CHAIN_SIZE]; member
|
/optee_os-3.20.0/core/drivers/crypto/se050/adaptors/utils/ |
A D | info.c | 138 struct items { in show_config() struct
|
/optee_os-3.20.0/core/arch/arm/kernel/ |
A D | stmm_sp.c | 196 static void *zalloc(void *opaque __unused, unsigned int items, in zalloc() argument 199 return mempool_alloc(mempool_default, items * size); in zalloc()
|
/optee_os-3.20.0/scripts/ |
A D | sign_encrypt.py | 36 for k, v in db.items():
|
/optee_os-3.20.0/lib/libmbedtls/mbedtls/ |
A D | ChangeLog | 2450 * Remove macros from compat-1.3.h that correspond to deleted items from most
|