Lines Matching refs:RunTimePoolInfo

287 class RunTimePoolInfo::RunTimePoolInfoImpl {
303 RunTimePoolInfo::RunTimePoolInfoImpl::RunTimePoolInfoImpl(SharedMemory memory, Mapping mapping) in RunTimePoolInfoImpl()
306 uint8_t* RunTimePoolInfo::RunTimePoolInfoImpl::getBuffer() const { in getBuffer()
316 uint32_t RunTimePoolInfo::RunTimePoolInfoImpl::getSize() const { in getSize()
322 bool RunTimePoolInfo::RunTimePoolInfoImpl::flush() const { in flush()
328 std::optional<RunTimePoolInfo> RunTimePoolInfo::createFromMemory(const SharedMemory& memory) { in createFromMemory()
336 return RunTimePoolInfo(impl); in createFromMemory()
339 RunTimePoolInfo RunTimePoolInfo::createFromExistingBuffer(uint8_t* buffer, uint32_t size) { in createFromExistingBuffer()
343 return RunTimePoolInfo(impl); in createFromExistingBuffer()
346 RunTimePoolInfo::RunTimePoolInfo(const std::shared_ptr<const RunTimePoolInfoImpl>& impl) in RunTimePoolInfo() function in android::nn::RunTimePoolInfo
349 uint8_t* RunTimePoolInfo::getBuffer() const { in getBuffer()
353 uint32_t RunTimePoolInfo::getSize() const { in getSize()
357 bool RunTimePoolInfo::flush() const { in flush()
361 const SharedMemory& RunTimePoolInfo::getMemory() const { in getMemory()
365 bool setRunTimePoolInfosFromCanonicalMemories(std::vector<RunTimePoolInfo>* poolInfos, in setRunTimePoolInfosFromCanonicalMemories()
371 if (std::optional<RunTimePoolInfo> poolInfo = RunTimePoolInfo::createFromMemory(pool)) { in setRunTimePoolInfosFromCanonicalMemories()
382 bool setRunTimePoolInfosFromMemoryPools(std::vector<RunTimePoolInfo>* poolInfos, in setRunTimePoolInfosFromMemoryPools()
393 if (std::optional<RunTimePoolInfo> poolInfo = in setRunTimePoolInfosFromMemoryPools()
394 RunTimePoolInfo::createFromMemory(std::get<SharedMemory>(pool))) { in setRunTimePoolInfosFromMemoryPools()
559 const std::vector<RunTimePoolInfo>& modelPoolInfos, in run()
560 const std::vector<RunTimePoolInfo>& requestPoolInfos) { in run()
668 const std::vector<RunTimePoolInfo>& requestPoolInfos, in updateForArguments()