Searched refs:descriptor_type (Results 1 – 4 of 4) sorted by relevance
/external/autotest/client/cros/cellular/mbim_compliance/ |
D | usb_descriptors.py | 131 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/opencv3/modules/features2d/src/ |
D | akaze.cpp | 249 Ptr<AKAZE> AKAZE::create(int descriptor_type, in create() argument 254 return makePtr<AKAZE_Impl>(descriptor_type, descriptor_size, descriptor_channels, in create()
|
/external/opencv3/modules/features2d/include/opencv2/ |
D | features2d.hpp | 641 CV_WRAP static Ptr<AKAZE> create(int descriptor_type=AKAZE::DESCRIPTOR_MLDB,
|
/external/vulkan-validation-layers/layers/ |
D | core_validation.cpp | 2417 VkDescriptorType descriptor_type, unsigned &descriptor_count) { in descriptor_type_match() argument 2439 return descriptor_type == VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER || in descriptor_type_match() 2440 descriptor_type == VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC; in descriptor_type_match() 2442 return descriptor_type == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER || in descriptor_type_match() 2443 descriptor_type == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC; in descriptor_type_match() 2453 return descriptor_type == VK_DESCRIPTOR_TYPE_SAMPLER; in descriptor_type_match() 2456 return descriptor_type == VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER; in descriptor_type_match() 2468 return descriptor_type == VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT; in descriptor_type_match() 2471 return descriptor_type == VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER; in descriptor_type_match() 2473 return descriptor_type == VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER; in descriptor_type_match() [all …]
|