Home
last modified time | relevance | path

Searched refs:descriptor_type (Results 1 – 12 of 12) sorted by relevance

/external/autotest/client/cros/cellular/mbim_compliance/
Dusb_descriptors.py131 descriptor_type = attrs.get('DESCRIPTOR_TYPE')
132 if (descriptor_type is not None and
133 descriptor_type != obj.bDescriptorType):
136 (descriptor_type, obj.bDescriptorType))
366 descriptor_type, descriptor_subtype = None, None
368 descriptor_type = self._data[self._index + 1]
373 (descriptor_type, descriptor_subtype), None)
376 (descriptor_type, None), UnknownDescriptor)
386 def filter_descriptors(descriptor_type, descriptors): argument
398 return filter(lambda descriptor: isinstance(descriptor, descriptor_type),
/external/mesa3d/src/gallium/state_trackers/clover/core/
Dobject.hpp47 typedef S descriptor_type; typedef
50 static_assert(std::is_standard_layout<descriptor_type>::value, in descriptor()
173 typename O::descriptor_type *
175 return static_cast<typename O::descriptor_type *>(&o); in desc()
182 typename O::descriptor_type *
184 return static_cast<typename O::descriptor_type *>(o); in desc()
204 std::vector<typename Os::value_type::descriptor_type *>
/external/mesa3d/src/gallium/state_trackers/clover/api/
Dutil.hpp64 ret_object(typename T::descriptor_type **p, in ret_object()
77 typename T::descriptor_type *
/external/vulkan-validation-layers/layers/
Dshader_validation.cpp1036 …criptor_type_match(shader_module const *module, uint32_t type_id, VkDescriptorType descriptor_type, in descriptor_type_match() argument
1057 return descriptor_type == VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER || in descriptor_type_match()
1058 descriptor_type == VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC; in descriptor_type_match()
1060 return descriptor_type == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER || in descriptor_type_match()
1061 descriptor_type == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC; in descriptor_type_match()
1071 …return descriptor_type == VK_DESCRIPTOR_TYPE_SAMPLER || descriptor_type == VK_DESCRIPTOR_TYPE_COMB… in descriptor_type_match()
1074 if (descriptor_type == VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER) { in descriptor_type_match()
1082 return descriptor_type == VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER; in descriptor_type_match()
1091 return descriptor_type == VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT; in descriptor_type_match()
1094 return descriptor_type == VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER; in descriptor_type_match()
[all …]
/external/protobuf/php/ext/google/protobuf/
Dprotobuf.h35 extern zend_class_entry* descriptor_type;
Ddef.c225 zend_object_std_init(&desc->std, descriptor_type TSRMLS_CC); in descriptor_init_c_instance()
Dupb.c7160 upb_descriptortype_t descriptor_type = upb_fielddef_descriptortype(f); in generate_primitivefield() local
7168 if (descriptor_type == UPB_DESCRIPTOR_TYPE_ENUM) in generate_primitivefield()
7169 descriptor_type = UPB_DESCRIPTOR_TYPE_INT32; in generate_primitivefield()
7171 parse_type = (opcode)descriptor_type; in generate_primitivefield()
Dupb.h1583 DescriptorType descriptor_type() const;
2519 inline FieldDef::DescriptorType FieldDef::descriptor_type() const { in descriptor_type() function
/external/libusb/libusb/os/
Dlinux_usbfs.c676 uint8_t descriptor_type, unsigned char *buffer, int size) in seek_to_next_descriptor() argument
691 if (i && header.bDescriptorType == descriptor_type) in seek_to_next_descriptor()
/external/protobuf/ruby/ext/google/protobuf_c/
Dupb.c7839 upb_descriptortype_t descriptor_type = upb_fielddef_descriptortype(f); in generate_primitivefield() local
7847 if (descriptor_type == UPB_DESCRIPTOR_TYPE_ENUM) in generate_primitivefield()
7848 descriptor_type = UPB_DESCRIPTOR_TYPE_INT32; in generate_primitivefield()
7850 parse_type = (opcode)descriptor_type; in generate_primitivefield()
Dupb.h2020 DescriptorType descriptor_type() const;
3120 inline FieldDef::DescriptorType FieldDef::descriptor_type() const {
/external/vulkan-validation-layers/tests/
Dlayer_validation_tests.cpp12460 VkDescriptorType descriptor_type; in TEST_F() member
12478 … {0, test_case.descriptor_type, 1, VK_SHADER_STAGE_ALL, nullptr}, in TEST_F()
12525 descriptor_write.descriptorType = test_case.descriptor_type; in TEST_F()