Home
last modified time | relevance | path

Searched refs:_ptr (Results 1 – 2 of 2) sorted by relevance

/hardware/google/av/codec2/include/
DC2ParamDef.h241 inline static std::ptr##_ptr<_Type> Alloc##Ptr(size_t flexCount, const Args(&... args)) { \
242 return std::ptr##_ptr<_Type>(new(flexCount) _Type(flexCount, args...)); \
245 inline static std::ptr##_ptr<_Type> Alloc##Ptr( \
247 return std::ptr##_ptr<_Type>(new(init.size()) _Type(init.size(), args..., init)); \
250 inline static std::ptr##_ptr<_Type> Alloc##Ptr( \
252 return std::ptr##_ptr<_Type>(new(init.size()) _Type(init.size(), args..., init)); \
255 inline static std::ptr##_ptr<_Type> Alloc##Ptr(const U(&init)[N], const Args(&... args)) { \
256 return std::ptr##_ptr<_Type>(new(N) _Type(N, args..., init)); \
/hardware/interfaces/renderscript/1.0/default/
DContext.cpp106 uintptr_t _ptr = hidl_to_rs<uintptr_t>(ptr); in allocationCreateTyped() local
107 …cation _allocation = Device::getHal().AllocationCreateTyped(mContext, _type, _amips, _usage, _ptr); in allocationCreateTyped()