Home
last modified time | relevance | path

Searched refs:attributes (Results 1 - 25 of 613) sorted by relevance

12345678910>>...25

/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fVertexArrayObjectTests.cpp75 vector<Attribute> attributes; member
201 for (int attribNdx = 0; attribNdx < (int)state.attributes.size(); attribNdx++) in logVertexArrayState()
205 << "\tGL_VERTEX_ATTRIB_ARRAY_ENABLED : " << (state.attributes[attribNdx].enabled ? "GL_TRUE" : "GL_FALSE") << "\n" in logVertexArrayState()
206 << "\tGL_VERTEX_ATTRIB_ARRAY_SIZE : " << state.attributes[attribNdx].size << "\n" in logVertexArrayState()
207 << "\tGL_VERTEX_ATTRIB_ARRAY_STRIDE : " << state.attributes[attribNdx].stride << "\n" in logVertexArrayState()
208 << "\tGL_VERTEX_ATTRIB_ARRAY_TYPE : " << state.attributes[attribNdx].type << "\n" in logVertexArrayState()
209 << "\tGL_VERTEX_ATTRIB_ARRAY_NORMALIZED : " << (state.attributes[attribNdx].normalized ? "GL_TRUE" : "GL_FALSE") << "\n" in logVertexArrayState()
210 << "\tGL_VERTEX_ATTRIB_ARRAY_INTEGER : " << (state.attributes[attribNdx].integer ? "GL_TRUE" : "GL_FALSE") << "\n" in logVertexArrayState()
211 << "\tGL_VERTEX_ATTRIB_ARRAY_DIVISOR : " << state.attributes[attribNdx].divisor << "\n" in logVertexArrayState()
212 << "\tGL_VERTEX_ATTRIB_ARRAY_POINTER : " << state.attributes[attribNd in logVertexArrayState()
[all...]
/third_party/mbedtls/tests/src/drivers/
H A Dtest_driver_key_management.c192 const psa_key_attributes_t *attributes, in mbedtls_test_transparent_generate_key()
212 if (PSA_KEY_TYPE_IS_ECC(psa_get_key_type(attributes)) in mbedtls_test_transparent_generate_key()
213 && PSA_KEY_TYPE_IS_KEY_PAIR(psa_get_key_type(attributes))) { in mbedtls_test_transparent_generate_key()
217 (const libtestdriver1_psa_key_attributes_t *) attributes, in mbedtls_test_transparent_generate_key()
221 attributes, key, key_size, key_length); in mbedtls_test_transparent_generate_key()
223 } else if (psa_get_key_type(attributes) == PSA_KEY_TYPE_RSA_KEY_PAIR) { in mbedtls_test_transparent_generate_key()
227 (const libtestdriver1_psa_key_attributes_t *) attributes, in mbedtls_test_transparent_generate_key()
232 attributes, in mbedtls_test_transparent_generate_key()
236 } else if (PSA_KEY_TYPE_IS_DH(psa_get_key_type(attributes)) in mbedtls_test_transparent_generate_key()
237 && PSA_KEY_TYPE_IS_KEY_PAIR(psa_get_key_type(attributes))) { in mbedtls_test_transparent_generate_key()
191 mbedtls_test_transparent_generate_key( const psa_key_attributes_t *attributes, uint8_t *key, size_t key_size, size_t *key_length) mbedtls_test_transparent_generate_key() argument
253 mbedtls_test_opaque_generate_key( const psa_key_attributes_t *attributes, uint8_t *key, size_t key_size, size_t *key_length) mbedtls_test_opaque_generate_key() argument
264 mbedtls_test_transparent_import_key( const psa_key_attributes_t *attributes, const uint8_t *data, size_t data_length, uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length, size_t *bits) mbedtls_test_transparent_import_key() argument
346 mbedtls_test_opaque_import_key( const psa_key_attributes_t *attributes, const uint8_t *data, size_t data_length, uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length, size_t *bits) mbedtls_test_opaque_import_key() argument
445 mbedtls_test_opaque_export_key( const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, uint8_t *data, size_t data_size, size_t *data_length) mbedtls_test_opaque_export_key() argument
529 mbedtls_test_transparent_export_public_key( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, uint8_t *data, size_t data_size, size_t *data_length) mbedtls_test_transparent_export_public_key() argument
608 mbedtls_test_opaque_export_public_key( const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, uint8_t *data, size_t data_size, size_t *data_length) mbedtls_test_opaque_export_public_key() argument
716 mbedtls_test_opaque_get_builtin_key( psa_drv_slot_number_t slot_number, psa_key_attributes_t *attributes, uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length) mbedtls_test_opaque_get_builtin_key() argument
766 mbedtls_test_opaque_copy_key( psa_key_attributes_t *attributes, const uint8_t *source_key, size_t source_key_length, uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length) mbedtls_test_opaque_copy_key() argument
[all...]
H A Dtest_driver_signature.c42 const psa_key_attributes_t *attributes, in sign_hash()
52 if (attributes->type == PSA_KEY_TYPE_RSA_KEY_PAIR) { in sign_hash()
59 (const libtestdriver1_psa_key_attributes_t *) attributes, in sign_hash()
66 attributes, in sign_hash()
74 } else if (PSA_KEY_TYPE_IS_ECC(attributes->type)) { in sign_hash()
80 (const libtestdriver1_psa_key_attributes_t *) attributes, in sign_hash()
87 attributes, in sign_hash()
97 (void) attributes; in sign_hash()
110 const psa_key_attributes_t *attributes, in verify_hash()
119 if (PSA_KEY_TYPE_IS_RSA(attributes in verify_hash()
41 sign_hash( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, uint8_t *signature, size_t signature_size, size_t *signature_length) sign_hash() argument
109 verify_hash( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, const uint8_t *signature, size_t signature_length) verify_hash() argument
175 mbedtls_test_transparent_signature_sign_message( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, size_t input_length, uint8_t *signature, size_t signature_size, size_t *signature_length) mbedtls_test_transparent_signature_sign_message() argument
231 mbedtls_test_opaque_signature_sign_message( const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg, const uint8_t *input, size_t input_length, uint8_t *signature, size_t signature_size, size_t *signature_length) mbedtls_test_opaque_signature_sign_message() argument
255 mbedtls_test_transparent_signature_verify_message( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, size_t input_length, const uint8_t *signature, size_t signature_length) mbedtls_test_transparent_signature_verify_message() argument
298 mbedtls_test_opaque_signature_verify_message( const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg, const uint8_t *input, size_t input_length, const uint8_t *signature, size_t signature_length) mbedtls_test_opaque_signature_verify_message() argument
320 mbedtls_test_transparent_signature_sign_hash( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, uint8_t *signature, size_t signature_size, size_t *signature_length) mbedtls_test_transparent_signature_sign_hash() argument
348 mbedtls_test_opaque_signature_sign_hash( const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, uint8_t *signature, size_t signature_size, size_t *signature_length) mbedtls_test_opaque_signature_sign_hash() argument
368 mbedtls_test_transparent_signature_verify_hash( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, const uint8_t *signature, size_t signature_length) mbedtls_test_transparent_signature_verify_hash() argument
386 mbedtls_test_opaque_signature_verify_hash( const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, const uint8_t *signature, size_t signature_length) mbedtls_test_opaque_signature_verify_hash() argument
[all...]
H A Dtest_driver_cipher.c31 const psa_key_attributes_t *attributes, in mbedtls_test_transparent_cipher_encrypt()
69 (const libtestdriver1_psa_key_attributes_t *) attributes, in mbedtls_test_transparent_cipher_encrypt()
75 attributes, key_buffer, key_buffer_size, in mbedtls_test_transparent_cipher_encrypt()
84 const psa_key_attributes_t *attributes, in mbedtls_test_transparent_cipher_decrypt()
116 (const libtestdriver1_psa_key_attributes_t *) attributes, in mbedtls_test_transparent_cipher_decrypt()
122 attributes, key_buffer, key_buffer_size, in mbedtls_test_transparent_cipher_decrypt()
132 const psa_key_attributes_t *attributes, in mbedtls_test_transparent_cipher_encrypt_setup()
152 (const libtestdriver1_psa_key_attributes_t *) attributes, in mbedtls_test_transparent_cipher_encrypt_setup()
156 operation, attributes, key, key_length, alg); in mbedtls_test_transparent_cipher_encrypt_setup()
164 const psa_key_attributes_t *attributes, in mbedtls_test_transparent_cipher_decrypt_setup()
30 mbedtls_test_transparent_cipher_encrypt( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *iv, size_t iv_length, const uint8_t *input, size_t input_length, uint8_t *output, size_t output_size, size_t *output_length) mbedtls_test_transparent_cipher_encrypt() argument
83 mbedtls_test_transparent_cipher_decrypt( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, size_t input_length, uint8_t *output, size_t output_size, size_t *output_length) mbedtls_test_transparent_cipher_decrypt() argument
130 mbedtls_test_transparent_cipher_encrypt_setup( mbedtls_transparent_test_driver_cipher_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg) mbedtls_test_transparent_cipher_encrypt_setup() argument
162 mbedtls_test_transparent_cipher_decrypt_setup( mbedtls_transparent_test_driver_cipher_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg) mbedtls_test_transparent_cipher_decrypt_setup() argument
316 mbedtls_test_opaque_cipher_encrypt( const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg, const uint8_t *iv, size_t iv_length, const uint8_t *input, size_t input_length, uint8_t *output, size_t output_size, size_t *output_length) mbedtls_test_opaque_cipher_encrypt() argument
338 mbedtls_test_opaque_cipher_decrypt( const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg, const uint8_t *input, size_t input_length, uint8_t *output, size_t output_size, size_t *output_length) mbedtls_test_opaque_cipher_decrypt() argument
357 mbedtls_test_opaque_cipher_encrypt_setup( mbedtls_opaque_test_driver_cipher_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg) mbedtls_test_opaque_cipher_encrypt_setup() argument
371 mbedtls_test_opaque_cipher_decrypt_setup( mbedtls_opaque_test_driver_cipher_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg) mbedtls_test_opaque_cipher_decrypt_setup() argument
[all...]
H A Dtest_driver_key_agreement.c32 const psa_key_attributes_t *attributes, in mbedtls_test_transparent_key_agreement()
64 (const libtestdriver1_psa_key_attributes_t *) attributes, in mbedtls_test_transparent_key_agreement()
71 attributes, in mbedtls_test_transparent_key_agreement()
77 (void) attributes; in mbedtls_test_transparent_key_agreement()
92 (const libtestdriver1_psa_key_attributes_t *) attributes, in mbedtls_test_transparent_key_agreement()
99 attributes, in mbedtls_test_transparent_key_agreement()
108 (void) attributes; in mbedtls_test_transparent_key_agreement()
125 const psa_key_attributes_t *attributes, in mbedtls_test_opaque_key_agreement()
135 (void) attributes; in mbedtls_test_opaque_key_agreement()
31 mbedtls_test_transparent_key_agreement( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *peer_key, size_t peer_key_length, uint8_t *shared_secret, size_t shared_secret_size, size_t *shared_secret_length) mbedtls_test_transparent_key_agreement() argument
124 mbedtls_test_opaque_key_agreement( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *peer_key, size_t peer_key_length, uint8_t *shared_secret, size_t shared_secret_size, size_t *shared_secret_length) mbedtls_test_opaque_key_agreement() argument
H A Dtest_driver_mac.c23 const psa_key_attributes_t *attributes, in mbedtls_test_transparent_mac_compute()
43 (const libtestdriver1_psa_key_attributes_t *) attributes, in mbedtls_test_transparent_mac_compute()
50 attributes, key_buffer, key_buffer_size, alg, in mbedtls_test_transparent_mac_compute()
54 (void) attributes; in mbedtls_test_transparent_mac_compute()
72 const psa_key_attributes_t *attributes, in mbedtls_test_transparent_mac_sign_setup()
88 (const libtestdriver1_psa_key_attributes_t *) attributes, in mbedtls_test_transparent_mac_sign_setup()
93 operation, attributes, key_buffer, key_buffer_size, alg); in mbedtls_test_transparent_mac_sign_setup()
96 (void) attributes; in mbedtls_test_transparent_mac_sign_setup()
109 const psa_key_attributes_t *attributes, in mbedtls_test_transparent_mac_verify_setup()
125 (const libtestdriver1_psa_key_attributes_t *) attributes, in mbedtls_test_transparent_mac_verify_setup()
22 mbedtls_test_transparent_mac_compute( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, size_t input_length, uint8_t *mac, size_t mac_size, size_t *mac_length) mbedtls_test_transparent_mac_compute() argument
70 mbedtls_test_transparent_mac_sign_setup( mbedtls_transparent_test_driver_mac_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) mbedtls_test_transparent_mac_sign_setup() argument
107 mbedtls_test_transparent_mac_verify_setup( mbedtls_transparent_test_driver_mac_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) mbedtls_test_transparent_mac_verify_setup() argument
264 mbedtls_test_opaque_mac_compute( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, size_t input_length, uint8_t *mac, size_t mac_size, size_t *mac_length) mbedtls_test_opaque_mac_compute() argument
296 mbedtls_test_opaque_mac_sign_setup( mbedtls_opaque_test_driver_mac_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) mbedtls_test_opaque_mac_sign_setup() argument
320 mbedtls_test_opaque_mac_verify_setup( mbedtls_opaque_test_driver_mac_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) mbedtls_test_opaque_mac_verify_setup() argument
[all...]
H A Dtest_driver_asymmetric_encryption.c29 const psa_key_attributes_t *attributes, const uint8_t *key_buffer, in mbedtls_test_transparent_asymmetric_encrypt()
55 (const libtestdriver1_psa_key_attributes_t *) attributes, in mbedtls_test_transparent_asymmetric_encrypt()
61 attributes, key_buffer, key_buffer_size, in mbedtls_test_transparent_asymmetric_encrypt()
70 const psa_key_attributes_t *attributes, const uint8_t *key_buffer, in mbedtls_test_transparent_asymmetric_decrypt()
96 (const libtestdriver1_psa_key_attributes_t *) attributes, in mbedtls_test_transparent_asymmetric_decrypt()
102 attributes, key_buffer, key_buffer_size, in mbedtls_test_transparent_asymmetric_decrypt()
114 const psa_key_attributes_t *attributes, const uint8_t *key, in mbedtls_test_opaque_asymmetric_encrypt()
133 (const libtestdriver1_psa_key_attributes_t *) attributes, in mbedtls_test_opaque_asymmetric_encrypt()
139 attributes, unwrapped_key, unwrapped_key_length, in mbedtls_test_opaque_asymmetric_encrypt()
148 const psa_key_attributes_t *attributes, cons in mbedtls_test_opaque_asymmetric_decrypt()
28 mbedtls_test_transparent_asymmetric_encrypt( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, size_t input_length, const uint8_t *salt, size_t salt_length, uint8_t *output, size_t output_size, size_t *output_length) mbedtls_test_transparent_asymmetric_encrypt() argument
69 mbedtls_test_transparent_asymmetric_decrypt( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, size_t input_length, const uint8_t *salt, size_t salt_length, uint8_t *output, size_t output_size, size_t *output_length) mbedtls_test_transparent_asymmetric_decrypt() argument
113 mbedtls_test_opaque_asymmetric_encrypt( const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg, const uint8_t *input, size_t input_length, const uint8_t *salt, size_t salt_length, uint8_t *output, size_t output_size, size_t *output_length) mbedtls_test_opaque_asymmetric_encrypt() argument
147 mbedtls_test_opaque_asymmetric_decrypt( const psa_key_attributes_t *attributes, const uint8_t *key, size_t key_length, psa_algorithm_t alg, const uint8_t *input, size_t input_length, const uint8_t *salt, size_t salt_length, uint8_t *output, size_t output_size, size_t *output_length) mbedtls_test_opaque_asymmetric_decrypt() argument
[all...]
/third_party/mbedtls/include/psa/
H A Dcrypto_struct.h309 static inline void psa_set_key_id(psa_key_attributes_t *attributes, in psa_set_key_id() argument
312 psa_key_lifetime_t lifetime = attributes->MBEDTLS_PRIVATE(lifetime); in psa_set_key_id()
314 attributes->MBEDTLS_PRIVATE(id) = key; in psa_set_key_id()
317 attributes->MBEDTLS_PRIVATE(lifetime) = in psa_set_key_id()
325 const psa_key_attributes_t *attributes) in psa_get_key_id()
327 return attributes->MBEDTLS_PRIVATE(id); in psa_get_key_id()
331 static inline void mbedtls_set_key_owner_id(psa_key_attributes_t *attributes, in mbedtls_set_key_owner_id() argument
334 attributes->MBEDTLS_PRIVATE(id).MBEDTLS_PRIVATE(owner) = owner; in mbedtls_set_key_owner_id()
338 static inline void psa_set_key_lifetime(psa_key_attributes_t *attributes, in psa_set_key_lifetime() argument
341 attributes in psa_set_key_lifetime()
324 psa_get_key_id( const psa_key_attributes_t *attributes) psa_get_key_id() argument
351 psa_get_key_lifetime( const psa_key_attributes_t *attributes) psa_get_key_lifetime() argument
368 psa_set_key_usage_flags(psa_key_attributes_t *attributes, psa_key_usage_t usage_flags) psa_set_key_usage_flags() argument
375 psa_get_key_usage_flags( const psa_key_attributes_t *attributes) psa_get_key_usage_flags() argument
381 psa_set_key_algorithm(psa_key_attributes_t *attributes, psa_algorithm_t alg) psa_set_key_algorithm() argument
387 psa_get_key_algorithm( const psa_key_attributes_t *attributes) psa_get_key_algorithm() argument
393 psa_set_key_type(psa_key_attributes_t *attributes, psa_key_type_t type) psa_set_key_type() argument
399 psa_get_key_type( const psa_key_attributes_t *attributes) psa_get_key_type() argument
405 psa_set_key_bits(psa_key_attributes_t *attributes, size_t bits) psa_set_key_bits() argument
415 psa_get_key_bits( const psa_key_attributes_t *attributes) psa_get_key_bits() argument
[all...]
/third_party/mbedtls/library/
H A Dpsa_crypto_driver_wrappers.c122 psa_status_t psa_driver_wrapper_sign_message(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, in psa_driver_wrapper_sign_message() argument
128 psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION(psa_get_key_lifetime(attributes)); in psa_driver_wrapper_sign_message()
136 status = mbedtls_test_transparent_signature_sign_message(attributes, key_buffer, key_buffer_size, alg, in psa_driver_wrapper_sign_message()
151 mbedtls_test_opaque_signature_sign_message(attributes, key_buffer, key_buffer_size, alg, input, in psa_driver_wrapper_sign_message()
164 return (psa_sign_message_builtin(attributes, key_buffer, key_buffer_size, alg, input, input_length, signature, in psa_driver_wrapper_sign_message()
168 psa_status_t psa_driver_wrapper_verify_message(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, in psa_driver_wrapper_verify_message() argument
173 psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION(psa_get_key_lifetime(attributes)); in psa_driver_wrapper_verify_message()
182 attributes, key_buffer, key_buffer_size, alg, input, input_length, signature, signature_length); in psa_driver_wrapper_verify_message()
194 return (mbedtls_test_opaque_signature_verify_message(attributes, key_buffer, key_buffer_size, alg, input, in psa_driver_wrapper_verify_message()
207 return (psa_verify_message_builtin(attributes, key_buffe in psa_driver_wrapper_verify_message()
211 psa_driver_wrapper_sign_hash(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, uint8_t *signature, size_t signature_size, size_t *signature_length) psa_driver_wrapper_sign_hash() argument
278 psa_driver_wrapper_verify_hash(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, const uint8_t *signature, size_t signature_length) psa_driver_wrapper_verify_hash() argument
387 psa_driver_wrapper_sign_hash_start(psa_sign_hash_interruptible_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length) psa_driver_wrapper_sign_hash_start() argument
467 psa_driver_wrapper_verify_hash_start(psa_verify_hash_interruptible_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, const uint8_t *signature, size_t signature_length) psa_driver_wrapper_verify_hash_start() argument
553 psa_driver_wrapper_get_key_buffer_size_from_key_data(const psa_key_attributes_t *attributes, const uint8_t *data, size_t data_length, size_t *key_buffer_size) psa_driver_wrapper_get_key_buffer_size_from_key_data() argument
591 psa_driver_wrapper_get_key_buffer_size(const psa_key_attributes_t *attributes, size_t *key_buffer_size) psa_driver_wrapper_get_key_buffer_size() argument
619 psa_driver_wrapper_generate_key(const psa_key_attributes_t *attributes, const psa_key_production_parameters_t *params, size_t params_data_length, uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length) psa_driver_wrapper_generate_key() argument
704 psa_driver_wrapper_import_key(const psa_key_attributes_t *attributes, const uint8_t *data, size_t data_length, uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length, size_t *bits) psa_driver_wrapper_import_key() argument
780 psa_driver_wrapper_export_key(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, uint8_t *data, size_t data_size, size_t *data_length) psa_driver_wrapper_export_key() argument
823 psa_driver_wrapper_export_public_key(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, uint8_t *data, size_t data_size, size_t *data_length) psa_driver_wrapper_export_public_key() argument
882 psa_driver_wrapper_get_builtin_key(psa_drv_slot_number_t slot_number, psa_key_attributes_t *attributes, uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length) psa_driver_wrapper_get_builtin_key() argument
906 psa_driver_wrapper_copy_key(psa_key_attributes_t *attributes, const uint8_t *source_key, size_t source_key_length, uint8_t *target_key_buffer, size_t target_key_buffer_size, size_t *target_key_buffer_length) psa_driver_wrapper_copy_key() argument
948 psa_driver_wrapper_cipher_encrypt(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *iv, size_t iv_length, const uint8_t *input, size_t input_length, uint8_t *output, size_t output_size, size_t *output_length) psa_driver_wrapper_cipher_encrypt() argument
1004 psa_driver_wrapper_cipher_decrypt(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, size_t input_length, uint8_t *output, size_t output_size, size_t *output_length) psa_driver_wrapper_cipher_decrypt() argument
1057 psa_driver_wrapper_cipher_encrypt_setup(psa_cipher_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) psa_driver_wrapper_cipher_encrypt_setup() argument
1116 psa_driver_wrapper_cipher_decrypt_setup(psa_cipher_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) psa_driver_wrapper_cipher_decrypt_setup() argument
1431 psa_driver_wrapper_aead_encrypt(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *nonce, size_t nonce_length, const uint8_t *additional_data, size_t additional_data_length, const uint8_t *plaintext, size_t plaintext_length, uint8_t *ciphertext, size_t ciphertext_size, size_t *ciphertext_length) psa_driver_wrapper_aead_encrypt() argument
1471 psa_driver_wrapper_aead_decrypt(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *nonce, size_t nonce_length, const uint8_t *additional_data, size_t additional_data_length, const uint8_t *ciphertext, size_t ciphertext_length, uint8_t *plaintext, size_t plaintext_size, size_t *plaintext_length) psa_driver_wrapper_aead_decrypt() argument
1511 psa_driver_wrapper_aead_encrypt_setup(psa_aead_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) psa_driver_wrapper_aead_encrypt_setup() argument
1551 psa_driver_wrapper_aead_decrypt_setup(psa_aead_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) psa_driver_wrapper_aead_decrypt_setup() argument
1814 psa_driver_wrapper_mac_compute(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, size_t input_length, uint8_t *mac, size_t mac_size, size_t *mac_length) psa_driver_wrapper_mac_compute() argument
1867 psa_driver_wrapper_mac_sign_setup(psa_mac_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) psa_driver_wrapper_mac_sign_setup() argument
1925 psa_driver_wrapper_mac_verify_setup(psa_mac_operation_t *operation, const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg) psa_driver_wrapper_mac_verify_setup() argument
2085 psa_driver_wrapper_asymmetric_encrypt(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, size_t input_length, const uint8_t *salt, size_t salt_length, uint8_t *output, size_t output_size, size_t *output_length) psa_driver_wrapper_asymmetric_encrypt() argument
2136 psa_driver_wrapper_asymmetric_decrypt(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *input, size_t input_length, const uint8_t *salt, size_t salt_length, uint8_t *output, size_t output_size, size_t *output_length) psa_driver_wrapper_asymmetric_decrypt() argument
2187 psa_driver_wrapper_key_agreement(const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *peer_key, size_t peer_key_length, uint8_t *shared_secret, size_t shared_secret_size, size_t *shared_secret_length) psa_driver_wrapper_key_agreement() argument
[all...]
H A Dpsa_crypto_driver_wrappers_no_static.c74 * \param[in] attributes The key attributes.
87 const psa_key_attributes_t *attributes, in psa_driver_wrapper_get_key_buffer_size()
90 psa_key_location_t location = PSA_KEY_LIFETIME_GET_LOCATION( psa_get_key_lifetime(attributes) ); in psa_driver_wrapper_get_key_buffer_size()
91 psa_key_type_t key_type = psa_get_key_type(attributes); in psa_driver_wrapper_get_key_buffer_size()
92 size_t key_bits = psa_get_key_bits(attributes); in psa_driver_wrapper_get_key_buffer_size()
103 psa_get_key_id( attributes ) ) ) ) in psa_driver_wrapper_get_key_buffer_size()
123 const psa_key_attributes_t *attributes, in psa_driver_wrapper_export_public_key()
131 psa_get_key_lifetime( attributes ) ); in psa_driver_wrapper_export_public_key()
138 if( psa_get_se_driver( psa_get_key_lifetime(attributes), in psa_driver_wrapper_export_public_key()
86 psa_driver_wrapper_get_key_buffer_size( const psa_key_attributes_t *attributes, size_t *key_buffer_size ) psa_driver_wrapper_get_key_buffer_size() argument
122 psa_driver_wrapper_export_public_key( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, uint8_t *data, size_t data_size, size_t *data_length ) psa_driver_wrapper_export_public_key() argument
222 psa_driver_wrapper_get_builtin_key( psa_drv_slot_number_t slot_number, psa_key_attributes_t *attributes, uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length ) psa_driver_wrapper_get_builtin_key() argument
[all...]
H A Dpsa_crypto_driver_wrappers.h78 const psa_key_attributes_t *attributes,
89 const psa_key_attributes_t *attributes,
99 const psa_key_attributes_t *attributes,
105 const psa_key_attributes_t *attributes,
118 const psa_key_attributes_t *attributes, const uint8_t *key_buffer,
132 const psa_key_attributes_t *attributes, const uint8_t *key_buffer,
146 * \param[in] attributes The key attributes
156 const psa_key_attributes_t *attributes,
162 const psa_key_attributes_t *attributes,
[all...]
/third_party/vk-gl-cts/modules/glshared/
H A DglsAttributeLocationTests.cpp73 bool hasAttributeAliasing (const vector<Attribute>& attributes, const map<string, deUint32>& bindings) in hasAttributeAliasing() argument
77 for (int attribNdx = 0; attribNdx < (int)attributes.size(); attribNdx++) in hasAttributeAliasing()
79 const deInt32 location = getBoundLocation(bindings, attributes[attribNdx].getName()); in hasAttributeAliasing()
80 const deUint32 size = attributes[attribNdx].getType().getLocationSize(); in hasAttributeAliasing()
111 string generateAttributeDefinitions (const vector<Attribute>& attributes) in generateAttributeDefinitions() argument
115 for (vector<Attribute>::const_iterator iter = attributes.begin(); iter != attributes.end(); ++iter) in generateAttributeDefinitions()
129 string generateConditionUniformDefinitions (const vector<Attribute>& attributes) in generateConditionUniformDefinitions() argument
134 for (vector<Attribute>::const_iterator iter = attributes.begin(); iter != attributes in generateConditionUniformDefinitions()
173 generateOutputCode(const vector<Attribute>& attributes) generateOutputCode() argument
227 generateVertexShaderTemplate(const vector<Attribute>& attributes) generateVertexShaderTemplate() argument
254 createVertexShaderSource(glu::RenderContext& renderCtx, const vector<Attribute>& attributes, bool attributeAliasing) createVertexShaderSource() argument
412 createAndAttachShaders(TestLog& log, glu::RenderContext& renderCtx, deUint32 program, const vector<Attribute>& attributes, bool attributeAliasing) createAndAttachShaders() argument
483 logAttributes(TestLog& log, const vector<Attribute>& attributes) logAttributes() argument
497 checkActiveAttribQuery(TestLog& log, const glw::Functions& gl, deUint32 program, const vector<Attribute>& attributes) checkActiveAttribQuery() argument
602 checkAttribLocationQuery(TestLog& log, const glw::Functions& gl, deUint32 program, const vector<Attribute>& attributes, const map<string, deUint32>& bindings) checkAttribLocationQuery() argument
631 checkQuery(TestLog& log, const glw::Functions& gl, deUint32 program, const vector<Attribute>& attributes, const map<string, deUint32>& bindings) checkQuery() argument
686 runTest(tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const vector<Attribute>& attributes, const vector<Bind>& preAttachBind, const vector<Bind>& preLinkBind, const vector<Bind>& postLinkBind, bool relink, bool reattach = false, const vector<Attribute>& reattachAttributes = vector<Attribute>()) runTest() argument
819 vector<Attribute> attributes; iterate() local
846 vector<Attribute> attributes; iterate() local
881 vector<Attribute> attributes; iterate() local
910 vector<Attribute> attributes; iterate() local
948 vector<Attribute> attributes; iterate() local
988 vector<Attribute> attributes; iterate() local
1019 vector<Attribute> attributes; iterate() local
1040 vector<Attribute> attributes; iterate() local
1061 vector<Attribute> attributes; iterate() local
1086 vector<Attribute> attributes; iterate() local
1111 vector<Attribute> attributes; iterate() local
1144 vector<Attribute> attributes; iterate() local
1178 vector<Attribute> attributes; iterate() local
1205 vector<Attribute> attributes; iterate() local
1246 vector<Attribute> attributes; iterate() local
1284 vector<Attribute> attributes; iterate() local
1318 vector<Attribute> attributes; iterate() local
1363 vector<Attribute> attributes; iterate() local
1405 vector<Attribute> attributes; iterate() local
1429 vector<Attribute> attributes; iterate() local
1450 vector<Attribute> attributes; iterate() local
1471 vector<Attribute> attributes; iterate() local
1495 vector<Attribute> attributes; iterate() local
1520 vector<Attribute> attributes; iterate() local
[all...]
/third_party/glslang/glslang/MachineIndependent/
H A Dattribute.cpp99 // Implementation of TParseContext parts of attributes
135 TAttributes *attributes = nullptr; in makeAttributes() local
136 attributes = NewPoolObject(attributes); in makeAttributes()
138 attributes->push_back(args); in makeAttributes()
139 return attributes; in makeAttributes()
145 TAttributes *attributes = nullptr; in makeAttributes() local
146 attributes = NewPoolObject(attributes); in makeAttributes()
152 attributes in makeAttributes()
167 handleSelectionAttributes(const TAttributes& attributes, TIntermNode* node) handleSelectionAttributes() argument
196 handleSwitchAttributes(const TAttributes& attributes, TIntermNode* node) handleSwitchAttributes() argument
225 handleLoopAttributes(const TAttributes& attributes, TIntermNode* node) handleLoopAttributes() argument
350 handleFunctionAttributes(const TSourceLoc& loc, const TAttributes& attributes) handleFunctionAttributes() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A DVertexDeclarationCache.cpp50 const std::vector<TranslatedAttribute> &attributes, in applyDeclaration()
56 ASSERT(gl::MAX_VERTEX_ATTRIBS >= attributes.size()); in applyDeclaration()
60 const size_t invalidAttribIndex = attributes.size(); in applyDeclaration()
66 for (size_t i = 0; i < attributes.size(); ++i) in applyDeclaration()
68 if (attributes[i].divisor != 0) in applyDeclaration()
81 for (size_t i = 0; i < attributes.size(); i++) in applyDeclaration()
83 if (attributes[i].active) in applyDeclaration()
85 if (indexedAttribute == invalidAttribIndex && attributes[i].divisor == 0) in applyDeclaration()
89 else if (instancedAttribute == invalidAttribIndex && attributes[i].divisor != 0) in applyDeclaration()
113 for (size_t i = 0; i < attributes in applyDeclaration()
47 applyDeclaration( const gl::Context *context, IDirect3DDevice9 *device, const std::vector<TranslatedAttribute> &attributes, gl::Program *program, GLint start, GLsizei instances, GLsizei *repeatDraw) applyDeclaration() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DFormattedValueFieldPositionIteratorImpl.java38 public static boolean nextPosition(List<FieldPosition> attributes, ConstrainedFieldPosition cfpos) { in nextPosition() argument
39 int numFields = attributes.size(); in nextPosition()
42 FieldPosition fpos = attributes.get(i); in nextPosition()
60 public static AttributedCharacterIterator toCharacterIterator(CharSequence cs, List<FieldPosition> attributes) { in toCharacterIterator() argument
63 // add attributes to the AttributedString in toCharacterIterator()
64 for (int i = 0; i < attributes.size(); i++) { in toCharacterIterator()
65 FieldPosition fp = attributes.get(i); in toCharacterIterator()
79 public static void addOverlapSpans(List<FieldPosition> attributes, Format.Field spanField, int firstIndex) { in addOverlapSpans() argument
86 int numFields = attributes.size(); in addOverlapSpans()
88 FieldPosition fp1 = attributes in addOverlapSpans()
115 sort(List<FieldPosition> attributes) sort() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DFormattedValueFieldPositionIteratorImpl.java40 public static boolean nextPosition(List<FieldPosition> attributes, ConstrainedFieldPosition cfpos) { in nextPosition() argument
41 int numFields = attributes.size(); in nextPosition()
44 FieldPosition fpos = attributes.get(i); in nextPosition()
62 public static AttributedCharacterIterator toCharacterIterator(CharSequence cs, List<FieldPosition> attributes) { in toCharacterIterator() argument
65 // add attributes to the AttributedString in toCharacterIterator()
66 for (int i = 0; i < attributes.size(); i++) { in toCharacterIterator()
67 FieldPosition fp = attributes.get(i); in toCharacterIterator()
81 public static void addOverlapSpans(List<FieldPosition> attributes, Format.Field spanField, int firstIndex) { in addOverlapSpans() argument
88 int numFields = attributes.size(); in addOverlapSpans()
90 FieldPosition fp1 = attributes in addOverlapSpans()
117 sort(List<FieldPosition> attributes) sort() argument
[all...]
/third_party/vk-gl-cts/modules/egl/
H A DteglChooseConfigTests.cpp113 ChooseConfigCase (EglTestContext& eglTestCtx, const char* name, const char* description, bool checkOrder, const EGLint* attributes) in ChooseConfigCase() argument
118 // Parse attributes in ChooseConfigCase()
119 while (attributes[0] != EGL_NONE) in ChooseConfigCase()
121 m_attributes.push_back(std::make_pair((EGLenum)attributes[0], (EGLint)attributes[1])); in ChooseConfigCase()
122 attributes += 2; in ChooseConfigCase()
126 ChooseConfigCase (EglTestContext& eglTestCtx, const char* name, const char* description, bool checkOrder, const std::vector<std::pair<EGLenum, EGLint> >& attributes) in ChooseConfigCase() argument
129 , m_attributes (attributes) in ChooseConfigCase()
161 void executeTest (const std::vector<std::pair<EGLenum, EGLint> >& attributes, bool checkOrder) in executeTest() argument
166 // Build attributes fo in executeTest()
214 fillDontCare(std::vector<std::pair<EGLenum, EGLint> >& attributes) fillDontCare() argument
250 } attributes[] = getValue() local
328 std::vector<std::pair<EGLenum, EGLint> > attributes; iterate() local
371 std::vector<std::pair<EGLenum, EGLint> > attributes = genRandomAttributes(m_attribSet, numAttribs, rnd); iterate() local
428 static const struct AttribSpec attributes[] = genRandomAttributes() local
508 std::vector<std::pair<EGLenum, EGLint> > attributes; iterate() local
553 } attributes[] = init() local
[all...]
/third_party/node/deps/v8/src/objects/
H A Dproperty.cc39 const PropertyAttributes& attributes) { in operator <<()
41 os << (((attributes & READ_ONLY) == 0) ? "W" : "_"); // writable in operator <<()
42 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable in operator <<()
43 os << (((attributes & DONT_DELETE) == 0) ? "C" : "_"); // configurable in operator <<()
61 PropertyKind kind, PropertyAttributes attributes, in Descriptor()
66 details_(kind, attributes, location, constness, representation, in Descriptor()
80 int field_index, PropertyAttributes attributes, in DataField()
82 return DataField(key, field_index, attributes, PropertyConstness::kMutable, in DataField()
87 PropertyAttributes attributes, in DataField()
92 PropertyDetails details(PropertyKind::kData, attributes, in DataField()
38 operator <<(std::ostream& os, const PropertyAttributes& attributes) operator <<() argument
60 Descriptor(Handle<Name> key, const MaybeObjectHandle& value, PropertyKind kind, PropertyAttributes attributes, PropertyLocation location, PropertyConstness constness, Representation representation, int field_index) Descriptor() argument
79 DataField(Isolate* isolate, Handle<Name> key, int field_index, PropertyAttributes attributes, Representation representation) DataField() argument
86 DataField(Handle<Name> key, int field_index, PropertyAttributes attributes, PropertyConstness constness, Representation representation, const MaybeObjectHandle& wrapped_field_type) DataField() argument
98 DataConstant(Handle<Name> key, Handle<Object> value, PropertyAttributes attributes) DataConstant() argument
107 DataConstant(Isolate* isolate, Handle<Name> key, int field_index, Handle<Object> value, PropertyAttributes attributes) DataConstant() argument
115 AccessorConstant(Handle<Name> key, Handle<Object> foreign, PropertyAttributes attributes) AccessorConstant() argument
[all...]
/third_party/mbedtls/programs/psa/
H A Dkey_ladder_demo.c189 psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; in generate() local
191 psa_set_key_usage_flags(&attributes, in generate()
193 psa_set_key_algorithm(&attributes, KDF_ALG); in generate()
194 psa_set_key_type(&attributes, PSA_KEY_TYPE_DERIVE); in generate()
195 psa_set_key_bits(&attributes, PSA_BYTES_TO_BITS(KEY_SIZE_BYTES)); in generate()
197 PSA_CHECK(psa_generate_key(&attributes, &key)); in generate()
217 psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; in import_key_from_file() local
237 psa_set_key_usage_flags(&attributes, usage); in import_key_from_file()
238 psa_set_key_algorithm(&attributes, alg); in import_key_from_file()
239 psa_set_key_type(&attributes, PSA_KEY_TYPE_DERIV in import_key_from_file()
266 psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; derive_key_ladder() local
315 psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; derive_wrapping_key() local
353 psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; wrap_data() local
440 psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; unwrap_data() local
[all...]
H A Dcrypto_examples.c168 psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; in cipher_example_encrypt_decrypt_aes_cbc_nopad_1_block() local
179 psa_set_key_usage_flags(&attributes, in cipher_example_encrypt_decrypt_aes_cbc_nopad_1_block()
181 psa_set_key_algorithm(&attributes, alg); in cipher_example_encrypt_decrypt_aes_cbc_nopad_1_block()
182 psa_set_key_type(&attributes, PSA_KEY_TYPE_AES); in cipher_example_encrypt_decrypt_aes_cbc_nopad_1_block()
183 psa_set_key_bits(&attributes, key_bits); in cipher_example_encrypt_decrypt_aes_cbc_nopad_1_block()
185 status = psa_generate_key(&attributes, &key); in cipher_example_encrypt_decrypt_aes_cbc_nopad_1_block()
218 psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; in cipher_example_encrypt_decrypt_aes_cbc_pkcs7_multi() local
227 psa_set_key_usage_flags(&attributes, in cipher_example_encrypt_decrypt_aes_cbc_pkcs7_multi()
229 psa_set_key_algorithm(&attributes, alg); in cipher_example_encrypt_decrypt_aes_cbc_pkcs7_multi()
230 psa_set_key_type(&attributes, PSA_KEY_TYPE_AE in cipher_example_encrypt_decrypt_aes_cbc_pkcs7_multi()
265 psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; cipher_example_encrypt_decrypt_aes_ctr_multi() local
[all...]
/third_party/python/Lib/test/
H A Dpythoninfo.py53 def copy_attributes(info_add, obj, name_fmt, attributes, *, formatter=None):
54 for attr in attributes:
84 attributes = (
111 copy_attributes(info_add, sys, 'sys.%s', attributes)
207 attributes = (
214 copy_attributes(info_add, os, 'os.%s', attributes, formatter=format_attr)
367 attributes = (
372 copy_attributes(info_add, readline, 'readline.%s', attributes,
410 attributes = ('TK_VERSION', 'TCL_VERSION')
411 copy_attributes(info_add, _tkinter, 'tkinter.%s', attributes)
[all...]
/third_party/gptfdisk/
H A Dattributes.cc0 // attributes.cc
19 #include "attributes.h"
33 attributes = 0; in Attributes()
41 attributes = a; in Attributes()
69 // Display current attributes to user
78 cout << hex << attributes << dec << ". Set fields are:\n"; in DisplayAttributes()
80 if ((UINT64_C(1) << i) & attributes) { in DisplayAttributes()
91 // Display attributes for a partition. Note that partNum is just passed for
98 bitset = (UINT64_C(1) << bitNum) & attributes; in ShowAttributes()
111 cout << "Known attributes ar in ChangeAttributes()
[all...]
/third_party/mbedtls/3rdparty/p256-m/
H A Dp256-m_driver_entrypoints.c61 psa_status_t p256_transparent_import_key(const psa_key_attributes_t *attributes, in p256_transparent_import_key() argument
75 psa_key_type_t type = psa_get_key_type(attributes); in p256_transparent_import_key()
106 psa_status_t p256_transparent_export_public_key(const psa_key_attributes_t *attributes, in p256_transparent_export_public_key() argument
114 size_t bits = psa_get_key_bits(attributes); in p256_transparent_export_public_key()
115 psa_key_type_t type = psa_get_key_type(attributes); in p256_transparent_export_public_key()
139 const psa_key_attributes_t *attributes, in p256_transparent_generate_key()
146 (void) attributes; in p256_transparent_generate_key()
169 const psa_key_attributes_t *attributes, in p256_transparent_key_agreement()
182 (void) attributes; in p256_transparent_key_agreement()
204 const psa_key_attributes_t *attributes, in p256_transparent_sign_hash()
138 p256_transparent_generate_key( const psa_key_attributes_t *attributes, uint8_t *key_buffer, size_t key_buffer_size, size_t *key_buffer_length) p256_transparent_generate_key() argument
168 p256_transparent_key_agreement( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *peer_key, size_t peer_key_length, uint8_t *shared_secret, size_t shared_secret_size, size_t *shared_secret_length) p256_transparent_key_agreement() argument
203 p256_transparent_sign_hash( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, uint8_t *signature, size_t signature_size, size_t *signature_length) p256_transparent_sign_hash() argument
261 p256_transparent_verify_hash( const psa_key_attributes_t *attributes, const uint8_t *key_buffer, size_t key_buffer_size, psa_algorithm_t alg, const uint8_t *hash, size_t hash_length, const uint8_t *signature, size_t signature_length) p256_transparent_verify_hash() argument
[all...]
/third_party/skia/third_party/externals/tint/src/transform/
H A Dcanonicalize_entry_point_io.cc40 // location attributes appear first (ordered by location slot), followed by
41 // those with builtin attributes.
53 // Both have location attributes: smallest goes first. in StructMemberComparator()
87 /// The shader IO attributes.
88 ast::DecorationList attributes; member
156 /// @param attributes the attributes to apply to the shader input
160 ast::DecorationList attributes) { in AddInput()
168 ast::HasDecoration<ast::LocationDecoration>(attributes) && in AddInput()
169 !ast::HasDecoration<ast::InterpolateDecoration>(attributes) in AddInput()
250 ast::DecorationList attributes; ProcessNonStructParameter() local
282 auto attributes = CloneShaderIOAttributes(member_ast->decorations); ProcessStructParameter() local
308 auto attributes = CloneShaderIOAttributes(member_ast->decorations); ProcessReturnType() local
315 auto attributes = ProcessReturnType() local
418 ast::DecorationList attributes = std::move(outval.attributes); CreateSpirvOutputVariables() local
[all...]
/third_party/skia/src/ports/
H A DSkFontMgr_android_parser.cpp61 * Allows setting up for handling the tag content and processing attributes.
64 void (*start)(FamilyData* data, const char* tag, const char** attributes);
78 const TagHandler* (*tag)(FamilyData* data, const char* tag, const char** attributes);
173 /*start*/[](FamilyData* self, const char* tag, const char** attributes) {
179 for (size_t i = 0; ATTS_NON_NULL(attributes, i); i += 2) {
180 const char* name = attributes[i];
181 const char* value = attributes[i+1];
221 /*start*/[](FamilyData* self, const char* tag, const char** attributes) {
229 for (size_t i = 0; ATTS_NON_NULL(attributes, i); i += 2) {
230 const char* name = attributes[
577 start_element_handler(void *data, const char *tag, const char **attributes) start_element_handler() argument
[all...]

Completed in 16 milliseconds

12345678910>>...25