/hardware/google/gfxstream/guest/mesa/src/vulkan/util/ |
D | vk_physical_device_features_gen.py | 341 _type = doc.find(".types/type[@name='VkPhysicalDeviceFeatures']") 342 if _type is not None: 344 for p in _type.findall('./member'): 362 for _type in doc.findall('./types/type[@category="struct"]'): 363 if _type.attrib.get('structextends') != 'VkPhysicalDeviceFeatures2,VkDeviceCreateInfo': 365 if _type.attrib['name'] not in required: 369 guard = required[_type.attrib['name']].guard 374 for elem in _type: 381 for p in _type.findall('./member'): 394 … feature_struct = FeatureStruct(c_type=_type.attrib.get('name'), s_type=s_type, features=flags)
|
D | vk_cmd_queue_gen.py | 570 for _type in doc.findall('./types/type'): 571 if _type.attrib.get('category') != 'struct': 573 if not filter_api(_type, api): 575 if _type.attrib['name'] not in required: 580 for p in _type.findall('./member'): 599 …es[_type.attrib['name']] = EntrypointType(name=_type.attrib['name'], enum=type_enum, members=membe… 601 for _type in doc.findall('./types/type'): 602 if _type.attrib.get('category') != 'struct': 604 if not filter_api(_type, api): 606 if _type.attrib['name'] not in required: [all …]
|
D | vk_alloc.h | 211 #define vk_multialloc_add_size(_ma, _ptr, _type, _size) \ argument 213 _type **_tmp = (_ptr); \ 216 (_size), alignof(_type)); \ 219 #define vk_multialloc_add(_ma, _ptr, _type, _count) \ argument 220 vk_multialloc_add_size(_ma, _ptr, _type, (_count) * sizeof(**(_ptr))); 222 #define VK_MULTIALLOC_DECL_SIZE(_ma, _type, _name, _size) \ argument 223 _type *_name; \ 224 vk_multialloc_add_size(_ma, &_name, _type, _size); 226 #define VK_MULTIALLOC_DECL(_ma, _type, _name, _count) \ argument 227 VK_MULTIALLOC_DECL_SIZE(_ma, _type, _name, (_count) * sizeof(_type));
|
D | vk_physical_device_properties_gen.py | 196 _type = doc.find(".types/type[@name=\"VkPhysicalDevice%s\"]" % struct_name) 197 if _type is not None: 199 for p in _type.findall("./member"): 216 for _type in doc.findall("./types/type[@category=\"struct\"]"): 217 if _type.attrib.get("structextends") != "VkPhysicalDeviceProperties2": 220 full_name = _type.attrib["name"] 230 for elem in _type: 239 for p in _type.findall("./member"):
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/common/inc/ |
D | vidc_vendor_extensions.h | 223 #define ADD_PARAM(_key, _type) \ argument 224 {_key, _type}, 226 #define ADD_PARAM_END(_key, _type) \ argument 227 {_key, _type} }));
|
/hardware/qcom/sm8150/media/mm-video-v4l2/vidc/common/inc/ |
D | vidc_vendor_extensions.h | 226 #define ADD_PARAM(_key, _type) \ argument 227 {_key, _type}, 229 #define ADD_PARAM_END(_key, _type) \ argument 230 {_key, _type} }));
|
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/common/inc/ |
D | vidc_vendor_extensions.h | 223 #define ADD_PARAM(_key, _type) \ argument 224 {_key, _type}, 226 #define ADD_PARAM_END(_key, _type) \ argument 227 {_key, _type} }));
|
/hardware/qcom/sm7250/media/mm-video-v4l2/vidc/common/inc/ |
D | vidc_vendor_extensions.h | 226 #define ADD_PARAM(_key, _type) \ argument 227 {_key, _type}, 229 #define ADD_PARAM_END(_key, _type) \ argument 230 {_key, _type} }));
|
/hardware/google/gfxstream/guest/OpenglCodecCommon/ |
D | IndexRangeCache.h | 68 IndexRangeKey(GLenum _type, in IndexRangeKey() 72 type(_type), in IndexRangeKey()
|
/hardware/google/graphics/common/libmemtrack/ |
D | dmabuf.cpp | 33 …void setPoolType(string _type) { type |= (_type == "carveout") ? MEMTRACK_FLAG_DEDICATED : MEMTRAC… in setPoolType()
|
/hardware/interfaces/renderscript/1.0/vts/functional/ |
D | VtsMiscellaneousTests.cpp | 283 context->contextPeekMessage([&](MessageToClientType _type, Size _size, uint32_t _subID){ in TEST_P() argument 284 messageType = _type; size = (uint32_t)_size; subID = _subID; }); in TEST_P() 287 [&](MessageToClientType _type, Size _size){ in TEST_P() argument 288 messageType = _type; size = (uint32_t)_size; }); in TEST_P()
|
/hardware/interfaces/renderscript/1.0/default/ |
D | Context.cpp | 83 RsType _type = hidl_to_rs<RsType>(type); in allocationAdapterCreate() local 85 RsAllocation _subAlloc = Device::getHal().AllocationAdapterCreate(mContext, _type, _baseAlloc); in allocationAdapterCreate() 98 const void* _type = Device::getHal().AllocationGetType(mContext, _allocation); in allocationGetType() local 99 return rs_to_hidl<Type>(_type); in allocationGetType() 103 RsType _type = hidl_to_rs<RsType>(type); in allocationCreateTyped() local 107 …RsAllocation _allocation = Device::getHal().AllocationCreateTyped(mContext, _type, _amips, _usage,… in allocationCreateTyped() 112 RsType _type = hidl_to_rs<RsType>(type); in allocationCreateFromBitmap() local 116 …RsAllocation _allocation = Device::getHal().AllocationCreateFromBitmap(mContext, _type, _amips, _b… in allocationCreateFromBitmap() 121 RsType _type = hidl_to_rs<RsType>(type); in allocationCubeCreateFromBitmap() local 125 …RsAllocation _allocation = Device::getHal().AllocationCubeCreateFromBitmap(mContext, _type, _amips… in allocationCubeCreateFromBitmap() [all …]
|