/third_party/libabigail/include/ |
H A D | abg-fwd.h | 182 class method_type; 184 /// Convenience typedef for shared pointer to @ref method_type. 185 typedef shared_ptr<method_type> method_type_sptr; 514 const method_type* 517 method_type* 967 get_method_type_name(const method_type*, bool internal = false); 970 get_method_type_name(const method_type&, bool internal = false); 1002 get_pretty_representation(const method_type&, bool internal = false); 1005 get_pretty_representation(const method_type*, bool internal = false);
|
H A D | abg-ir.h | 57 /// represented by abigail::function_type and abigail::method_type. 3355 class method_type : public function_type class 3360 method_type(); 3364 /// Hasher for intances of method_type 3367 method_type(type_base_sptr return_type, 3374 method_type(type_base_sptr return_type, 3381 method_type(class_or_union_sptr class_type, 3386 method_type(const environment& env, 3400 virtual ~method_type(); 3407 get_method_type_name(const method_type [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_common/ |
H A D | eap_gpsk_common.c | 346 size_t seed_len, u8 method_type) in eap_gpsk_derive_mid_helper() 379 os_memcpy(pos, &method_type, 1); in eap_gpsk_derive_mid_helper() 412 * @method_type: EAP Authentication Method Type 422 u8 method_type, u8 *sid, size_t *sid_len) in eap_gpsk_derive_session_id() 464 method_type); in eap_gpsk_derive_session_id() 466 sid[0] = method_type; in eap_gpsk_derive_session_id() 343 eap_gpsk_derive_mid_helper(u32 csuite_specifier, u8 *kdf_out, size_t kdf_out_len, const u8 *psk, const u8 *seed, size_t seed_len, u8 method_type) eap_gpsk_derive_mid_helper() argument 417 eap_gpsk_derive_session_id(const u8 *psk, size_t psk_len, int vendor, int specifier, const u8 *rand_peer, const u8 *rand_server, const u8 *id_peer, size_t id_peer_len, const u8 *id_server, size_t id_server_len, u8 method_type, u8 *sid, size_t *sid_len) eap_gpsk_derive_session_id() argument
|
H A D | eap_gpsk_common.h | 61 u8 method_type, u8 *sid, size_t *sid_len);
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_common/ |
H A D | eap_gpsk_common.c | 346 size_t seed_len, u8 method_type) in eap_gpsk_derive_mid_helper() 379 os_memcpy(pos, &method_type, 1); in eap_gpsk_derive_mid_helper() 412 * @method_type: EAP Authentication Method Type 422 u8 method_type, u8 *sid, size_t *sid_len) in eap_gpsk_derive_session_id() 464 method_type); in eap_gpsk_derive_session_id() 466 sid[0] = method_type; in eap_gpsk_derive_session_id() 343 eap_gpsk_derive_mid_helper(u32 csuite_specifier, u8 *kdf_out, size_t kdf_out_len, const u8 *psk, const u8 *seed, size_t seed_len, u8 method_type) eap_gpsk_derive_mid_helper() argument 417 eap_gpsk_derive_session_id(const u8 *psk, size_t psk_len, int vendor, int specifier, const u8 *rand_peer, const u8 *rand_server, const u8 *id_peer, size_t id_peer_len, const u8 *id_server, size_t id_server_len, u8 method_type, u8 *sid, size_t *sid_len) eap_gpsk_derive_session_id() argument
|
H A D | eap_gpsk_common.h | 61 u8 method_type, u8 *sid, size_t *sid_len);
|
/third_party/libabigail/src/ |
H A D | abg-hash.cc | 461 /// Hashing functor for the @ref method_type type. 462 struct method_type::hash 465 operator()(const method_type& t) const in operator ()() 485 operator()(const method_type* t) in operator ()() 491 }; // end struct method_type::hash 525 if (const method_type* m = dynamic_cast<const method_type*>(t)) in operator ()() 527 method_type::hash h; in operator ()() 1025 if (const method_type* d = dynamic_cast<const method_type*>( in operator ()() [all...] |
H A D | abg-ir.cc | 6601 t.reset(new method_type(p, ty->get_class_type(), in strip_typedef() 8766 if (const method_type* method = is_method_type(fn_type)) in get_function_type_name() 8844 get_method_type_name(const method_type* fn_type, in get_method_type_name() 8864 get_method_type_name(const method_type& fn_type, in get_method_type_name() 9058 if (const method_type* method = is_method_type(fn_type)) in get_pretty_representation() 9093 get_pretty_representation(const method_type& method, bool internal) in get_pretty_representation() 9111 get_pretty_representation(const method_type* method, bool internal) in get_pretty_representation() 10427 /// Test whether a type is a method_type. 10432 /// method_type, null otherwise. 10435 {return dynamic_pointer_cast<method_type>( in is_method_type() 19865 method_type::method_type (type_base_sptr return_type, method_type() function in abigail::ir::method_type 19905 method_type::method_type(type_base_sptr return_type, method_type() function in abigail::ir::method_type 19929 method_type::method_type(const environment& env, method_type() function in abigail::ir::method_type 19953 method_type::method_type(class_or_union_sptr class_type, method_type() function in abigail::ir::method_type [all...] |
H A D | abg-writer.cc | 3454 if (method_type_sptr method_type = is_method_type(fn_type)) in write_function_type() 3457 << ctxt.get_id_for_type(method_type->get_class_type()) in write_function_type() 3461 /*is_const=*/method_type->get_is_const(), in write_function_type()
|
H A D | abg-dwarf-reader.cc | 12613 method_type_sptr method_type; 12616 method_type = method->get_type(); 12618 method_type = is_method_type(artifact); 12619 ABG_ASSERT(method_type); 12621 class_or_union_sptr method_class = method_type->get_class_type(); 13841 ? new method_type(is_method, is_const,
|
H A D | abg-reader.cc | 3394 ? new method_type(return_type, as_method_decl, in build_function_decl() 4042 ? new method_type(method_class_type, in build_function_type()
|
/third_party/ffmpeg/libavcodec/ |
H A D | flacdec.c | 224 int i, tmp, partition, method_type, rice_order; in decode_residuals() local 228 method_type = get_bits(&gb, 2); in decode_residuals() 232 rice_bits = 4 + method_type; in decode_residuals() 238 if (method_type > 1) { in decode_residuals() 240 method_type); in decode_residuals()
|