Home
last modified time | relevance | path

Searched refs:mProperties (Results 1 – 11 of 11) sorted by relevance

/external/angle/src/libANGLE/
DCLSampler.cpp55 copyValue = mProperties.data(); in getInfo()
56 copySize = mProperties.size() * sizeof(decltype(mProperties)::value_type); in getInfo()
91 mProperties(std::move(properties)), in Sampler()
DCLMemory.cpp112 copyValue = mProperties.data(); in getInfo()
113 copySize = mProperties.size() * sizeof(decltype(mProperties)::value_type); in getInfo()
160 mProperties(std::move(properties)), in Memory()
195 mProperties(std::move(properties)), in Memory()
DCLSampler.h47 const PropArray mProperties; variable
63 return mProperties; in getProperties()
DCLContext.cpp52 copyValue = mProperties.data(); in getInfo()
53 copySize = mProperties.size() * sizeof(decltype(mProperties)::value_type); in getInfo()
358 mProperties(std::move(properties)), in Context()
373 mProperties(std::move(properties)), in Context()
DCLCommandQueue.h286 angle::SynchronizedValue<CommandQueueProperties> mProperties; variable
310 return *mProperties; in getProperties()
315 return mProperties->isNotSet(CL_QUEUE_ON_DEVICE); in isOnHost()
320 return mProperties->isSet(CL_QUEUE_ON_DEVICE); in isOnDevice()
DCLMemory.h82 const PropArray mProperties; variable
104 return mProperties; in getProperties()
DCLCommandQueue.cpp70 properties = mProperties->get(); in getInfo()
115 auto props = mProperties.synchronize(); in setProperty()
722 mProperties(properties), in CommandQueue()
726 if (mProperties->isSet(CL_QUEUE_ON_DEVICE_DEFAULT)) in CommandQueue()
738 mProperties(properties), in CommandQueue()
DCLContext.h152 const PropArray mProperties; variable
/external/oboe/samples/RhythmGame/src/main/cpp/audio/
DAAssetDataSource.h28 AudioProperties getProperties() const override { return mProperties; } in getProperties()
42 , mProperties(properties) { in AAssetDataSource()
47 const AudioProperties mProperties; variable
/external/angle/src/libANGLE/renderer/vulkan/
DCommandProcessor.h201 QueueFamily() : mProperties{}, mIndex(kInvalidIndex) {} in QueueFamily()
207 const VkQueueFamilyProperties *getProperties() const { return &mProperties; } in getProperties()
208 bool isGraphics() const { return ((mProperties.queueFlags & VK_QUEUE_GRAPHICS_BIT) > 0); } in isGraphics()
209 bool isCompute() const { return ((mProperties.queueFlags & VK_QUEUE_COMPUTE_BIT) > 0); } in isCompute()
212 return ((mProperties.queueFlags & VK_QUEUE_PROTECTED_BIT) > 0); in supportsProtected()
214 uint32_t getDeviceQueueCount() const { return mProperties.queueCount; } in getDeviceQueueCount()
222 VkQueueFamilyProperties mProperties;
DCommandProcessor.cpp1294 ASSERT((queueIndex + queueCount) <= mProperties.queueCount); in initializeQueueMap()
1330 mProperties = queueFamilyProperties; in initialize()