Home
last modified time | relevance | path

Searched refs:_blobs (Results 1 – 5 of 5) sorted by relevance

/external/ComputeLibrary/src/runtime/
DBlobLifetimeManager.cpp39 : _blobs() in BlobLifetimeManager()
45 return _blobs; in info()
51 return support::cpp14::make_unique<BlobMemoryPool>(allocator, _blobs); in create_pool()
78 size_t max_size = std::max(_blobs.size(), group_sizes.size()); in update_blobs_and_mappings()
79 _blobs.resize(max_size); in update_blobs_and_mappings()
81 …std::transform(std::begin(_blobs), std::end(_blobs), std::begin(group_sizes), std::begin(_blobs), … in update_blobs_and_mappings()
DBlobMemoryPool.cpp37 : _allocator(allocator), _blobs(), _blob_info(std::move(blob_info)) in BlobMemoryPool()
55 handle.first->set_region(_blobs[handle.second].get()); in acquire()
85 _blobs.push_back(_allocator->make_region(bi.size, bi.alignment)); in allocate_blobs()
91 _blobs.clear(); in free_blobs()
/external/pigweed/pw_build/
Dcc_blob_library.gni43 _blobs = []
49 _blobs += [ blob ]
54 write_file(_blob_json_file, _blobs, "json")
/external/ComputeLibrary/arm_compute/runtime/
DBlobLifetimeManager.h72 std::vector<BlobInfo> _blobs; /**< Memory blobs */
DBlobMemoryPool.h81 …std::vector<std::unique_ptr<IMemoryRegion>> _blobs; /**< Vector holding all the memory blobs */ variable