Home
last modified time | relevance | path

Searched refs:object_type (Results 1 - 25 of 61) sorted by relevance

123

/third_party/mesa3d/src/gallium/frontends/clover/core/
H A Dobject.hpp46 typedef T object_type; typedef
65 typedef T object_type; typedef
69 auto o = static_cast<typename D::object_type *>(d); in validate()
71 !dynamic_cast<object_type *>(o)) in validate()
84 typedef typename D::object_type object_type; typedef
89 throw invalid_object_error<object_type>(); in validate()
101 typedef typename D::object_type object_type; typedef
106 throw invalid_object_error<object_type>(); in validate()
118 typedef typename D::object_type object_type; global() typedef
[all...]
/third_party/ffmpeg/libavcodec/
H A Dmpeg4audio.c79 int object_type = get_bits(gb, 5); in get_object_type() local
80 if (object_type == AOT_ESCAPE) in get_object_type()
81 object_type = 32 + get_bits(gb, 6); in get_object_type()
82 return object_type; in get_object_type()
97 c->object_type = get_object_type(gb); in ff_mpeg4audio_get_config_gb()
108 if (c->object_type == AOT_SBR || (c->object_type == AOT_PS && in ff_mpeg4audio_get_config_gb()
111 if (c->object_type == AOT_PS) in ff_mpeg4audio_get_config_gb()
116 c->object_type = get_object_type(gb); in ff_mpeg4audio_get_config_gb()
117 if (c->object_type in ff_mpeg4audio_get_config_gb()
[all...]
H A Daacdec_template.c860 skip_bits(gb, 2); // object_type in decode_pce()
951 if (m4ac->object_type == AOT_AAC_SCALABLE || in decode_ga_specific_config()
952 m4ac->object_type == AOT_ER_AAC_SCALABLE) in decode_ga_specific_config()
975 switch (m4ac->object_type) { in decode_ga_specific_config()
995 switch (m4ac->object_type) { in decode_ga_specific_config()
1108 if (m4ac->object_type == AOT_ER_AAC_LD && in decode_audio_specific_config_gb()
1119 switch (m4ac->object_type) { in decode_audio_specific_config_gb()
1139 m4ac->object_type); in decode_audio_specific_config_gb()
1145 m4ac->object_type, m4ac->chan_config, m4ac->sampling_index, in decode_audio_specific_config_gb()
1427 const int aot = m4ac->object_type; in decode_ics_info()
[all...]
H A Dadts_header.h33 uint8_t object_type; member
/third_party/node/deps/openssl/openssl/crypto/store/
H A Dstore_result.c63 int object_type; member
98 helper_data.object_type = OSSL_OBJECT_UNKNOWN; in ossl_store_handle_load_result()
101 && !OSSL_PARAM_get_int(p, &helper_data.object_type)) in ossl_store_handle_load_result()
161 if (data->object_type == OSSL_OBJECT_NAME) { in try_name()
392 if (data->object_type == OSSL_OBJECT_UNKNOWN in try_key()
393 || data->object_type == OSSL_OBJECT_PKEY) { in try_key()
397 if (data->object_type == OSSL_OBJECT_PKEY && data->ref != NULL) { in try_key()
427 data->object_type = OSSL_OBJECT_PKEY; in try_key()
459 if (data->object_type == OSSL_OBJECT_UNKNOWN in try_cert()
460 || data->object_type in try_cert()
[all...]
/third_party/openssl/crypto/store/
H A Dstore_result.c63 int object_type; member
98 helper_data.object_type = OSSL_OBJECT_UNKNOWN; in ossl_store_handle_load_result()
101 && !OSSL_PARAM_get_int(p, &helper_data.object_type)) in ossl_store_handle_load_result()
161 if (data->object_type == OSSL_OBJECT_NAME) { in try_name()
392 if (data->object_type == OSSL_OBJECT_UNKNOWN in try_key()
393 || data->object_type == OSSL_OBJECT_PKEY) { in try_key()
397 if (data->object_type == OSSL_OBJECT_PKEY && data->ref != NULL) { in try_key()
427 data->object_type = OSSL_OBJECT_PKEY; in try_key()
459 if (data->object_type == OSSL_OBJECT_UNKNOWN in try_cert()
460 || data->object_type in try_cert()
[all...]
/third_party/ffmpeg/libavformat/
H A Dlatmenc.c40 int object_type; member
72 if (ctx->object_type == AOT_ALS && (ctx->off & 7)) { in latm_decode_extradata()
79 if (m4ac.object_type > AOT_SBR && m4ac.object_type != AOT_ALS) { in latm_decode_extradata()
80 av_log(s, AV_LOG_ERROR, "Muxing MPEG-4 AOT %d in LATM is not supported\n", m4ac.object_type); in latm_decode_extradata()
84 ctx->object_type = m4ac.object_type; in latm_decode_extradata()
136 if (ctx->object_type == AOT_ALS) { in latm_write_frame_header()
H A Disom.c370 if (cfg.object_type == 29 && cfg.sampling_index < 3) // old mp3on4 in ff_mp4_read_dec_config_descr()
378 cfg.object_type, cfg.ext_object_type, in ff_mp4_read_dec_config_descr()
381 cfg.object_type))) in ff_mp4_read_dec_config_descr()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtins.c91 object_type, \
95 ECMA_MAKE_BUILTIN_DESCRIPTOR (object_type, object_prototype_builtin_id),
101 object_type, \
105 ECMA_MAKE_BUILTIN_DESCRIPTOR (object_type, object_prototype_builtin_id),
119 object_type, \
129 object_type, \
156 object_type, \
166 object_type, \
185 object_type, \
204 object_type, \
720 ecma_object_type_t object_type = ecma_get_object_type (object_p); ecma_builtin_try_to_instantiate_property() local
1019 ecma_object_type_t object_type = ecma_get_object_type (object_p); ecma_builtin_list_lazy_property_names() local
[all...]
H A Decma-builtins-internal.h84 object_type, \
102 object_type, \
H A Decma-builtins.h29 object_type, \
39 object_type, \
/third_party/mesa3d/src/vulkan/runtime/
H A Dvk_debug_report.c99 VkDebugReportObjectTypeEXT object_type, in debug_report()
122 cb->callback(flags, object_type, handle, location, messageCode, in debug_report()
153 VkObjectType object_type = in vk_debug_report() local
155 debug_report(instance, flags, (VkDebugReportObjectTypeEXT)object_type, in vk_debug_report()
97 debug_report(struct vk_instance *instance, VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT object_type, uint64_t handle, size_t location, int32_t messageCode, const char* pLayerPrefix, const char *pMessage) debug_report() argument
/third_party/node/deps/openssl/openssl/crypto/encode_decode/
H A Ddecoder_pkey.c62 char *object_type; /* recorded object data type, may be NULL */ in DEFINE_STACK_OF() local
91 char *object_type = NULL; in decoder_construct_pkey() local
93 if (!OSSL_PARAM_get_utf8_string(p, &object_type, 0)) in decoder_construct_pkey()
95 OPENSSL_free(data->object_type); in decoder_construct_pkey()
96 data->object_type = object_type; in decoder_construct_pkey()
121 && EVP_KEYMGMT_is_a(keymgmt, data->object_type)) in decoder_construct_pkey()
129 data->object_type, in decoder_construct_pkey()
197 OPENSSL_free(data->object_type); in decoder_clean_pkey_construct_arg()
/third_party/openssl/crypto/encode_decode/
H A Ddecoder_pkey.c62 char *object_type; /* recorded object data type, may be NULL */ in DEFINE_STACK_OF() local
91 char *object_type = NULL; in decoder_construct_pkey() local
93 if (!OSSL_PARAM_get_utf8_string(p, &object_type, 0)) in decoder_construct_pkey()
95 OPENSSL_free(data->object_type); in decoder_construct_pkey()
96 data->object_type = object_type; in decoder_construct_pkey()
121 && EVP_KEYMGMT_is_a(keymgmt, data->object_type)) in decoder_construct_pkey()
129 data->object_type, in decoder_construct_pkey()
193 OPENSSL_free(data->object_type); in decoder_clean_pkey_construct_arg()
/third_party/node/deps/v8/tools/v8windbg/src/
H A Dlocal-variables.cc96 WRL::ComPtr<IDebugHostType> object_type = variable
98 if (object_type == nullptr) {
104 RETURN_IF_FAIL(object_type->GetSize(&object_size));
109 RETURN_IF_FAIL(object_type->CreateArrayOf(/*dimensions=*/1, dimensions,
/third_party/nghttp2/
H A Dgit-clang-format199 object_type = get_object_type(commit)
200 if object_type not in ('commit', 'tag'):
201 if object_type is None:
204 die("'%s' is a %s, but a commit was expected" % (commit, object_type))
224 object_type = get_object_type(value)
225 if object_type is None:
227 if object_type in ('commit', 'tag'):
230 (value, object_type))
/third_party/vulkan-loader/scripts/
H A Dhelper_file_generator.py433 for object_type in type_list:
434 vk_object_type = dbg_map.get(object_type.replace("kVulkanObjectType", "").lower(), dbg_default)
435 object_types_header += ' %s, // %s\n' % (vk_object_type, object_type)
447 for object_type in type_list:
448 vk_object_type = vko_map[object_type.replace("kVulkanObjectType", "").lower()]
449 object_types_header += ' %s, // %s\n' % (vk_object_type, object_type)
/third_party/node/deps/openssl/openssl/providers/implementations/encode_decode/
H A Ddecode_pem2der.c105 int object_type; in pem2der_decode() member
185 objtype = pem_name_map[i].object_type; in pem2der_decode()
H A Ddecode_msblob2key.c191 int object_type = OSSL_OBJECT_PKEY; in msblob2key_decode() local
194 OSSL_PARAM_construct_int(OSSL_OBJECT_PARAM_TYPE, &object_type); in msblob2key_decode()
H A Ddecode_pvk2key.c160 int object_type = OSSL_OBJECT_PKEY; in pvk2key_decode() local
163 OSSL_PARAM_construct_int(OSSL_OBJECT_PARAM_TYPE, &object_type); in pvk2key_decode()
/third_party/openssl/providers/implementations/encode_decode/
H A Ddecode_pvk2key.c149 int object_type = OSSL_OBJECT_PKEY; in pvk2key_decode() local
152 OSSL_PARAM_construct_int(OSSL_OBJECT_PARAM_TYPE, &object_type); in pvk2key_decode()
H A Ddecode_pem2der.c105 int object_type; in pem2der_decode() member
185 objtype = pem_name_map[i].object_type; in pem2der_decode()
H A Ddecode_msblob2key.c179 int object_type = OSSL_OBJECT_PKEY; in msblob2key_decode() local
182 OSSL_PARAM_construct_int(OSSL_OBJECT_PARAM_TYPE, &object_type); in msblob2key_decode()
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dvalidate_memory.cpp996 const auto object_type = _.FindDef(object->type_id()); in ValidateStore() local
997 if (!object_type || SpvOpTypeVoid == object_type->opcode()) { in ValidateStore()
1003 if (type->id() != object_type->id()) { in ValidateStore()
1005 object_type->opcode() != SpvOpTypeStruct) { in ValidateStore()
1013 if (!AreLayoutCompatibleStructs(_, type, object_type)) { in ValidateStore()
1025 object_type->opcode() != SpvOpTypePointer) { in ValidateStore()
1026 if (object_type->opcode() != SpvOpTypeInt && in ValidateStore()
1027 object_type->opcode() != SpvOpTypeFloat && in ValidateStore()
1028 object_type in ValidateStore()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dvalidate_memory.cpp996 const auto object_type = _.FindDef(object->type_id()); in ValidateStore() local
997 if (!object_type || SpvOpTypeVoid == object_type->opcode()) { in ValidateStore()
1003 if (type->id() != object_type->id()) { in ValidateStore()
1005 object_type->opcode() != SpvOpTypeStruct) { in ValidateStore()
1013 if (!AreLayoutCompatibleStructs(_, type, object_type)) { in ValidateStore()
1025 object_type->opcode() != SpvOpTypePointer) { in ValidateStore()
1026 if (object_type->opcode() != SpvOpTypeInt && in ValidateStore()
1027 object_type->opcode() != SpvOpTypeFloat && in ValidateStore()
1028 object_type in ValidateStore()
[all...]

Completed in 18 milliseconds

123