Lines Matching refs:Memory
24 class Memory : public _cl_mem, public Object
36 ~Memory() override;
51 static Memory *Cast(cl_mem memobj);
56 Memory(const Buffer &buffer,
64 Memory(const Buffer &buffer,
71 Memory(const Image &image,
77 Memory *parent,
97 inline const Context &Memory::getContext() const in getContext()
102 inline const Memory::PropArray &Memory::getProperties() const in getProperties()
107 inline MemFlags Memory::getFlags() const in getFlags()
112 inline void *Memory::getHostPtr() const in getHostPtr()
117 inline const MemoryPtr &Memory::getParent() const in getParent()
122 inline size_t Memory::getOffset() const in getOffset()
127 inline size_t Memory::getSize() const in getSize()
133 inline T &Memory::getImpl() const in getImpl()
138 inline Memory *Memory::Cast(cl_mem memobj) in Cast()
140 return static_cast<Memory *>(memobj); in Cast()