Home
last modified time | relevance | path

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

/aosp_15_r20/external/ComputeLibrary/src/runtime/
H A DBlobLifetimeManager.cpp39 : _blobs() in BlobLifetimeManager()
45 return _blobs; in info()
51 return std::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()
H A DBlobMemoryPool.cpp36 : _allocator(allocator), _blobs(), _blob_info(std::move(blob_info)) in BlobMemoryPool()
53 handle.first->set_region(_blobs[handle.second].get()); in acquire()
83 _blobs.push_back(_allocator->make_region(bi.size, bi.alignment)); in allocate_blobs()
89 _blobs.clear(); in free_blobs()
/aosp_15_r20/system/update_engine/scripts/
H A Dpayload_info_unittest.py146 self._blobs = {}
161 if not offset in self._blobs:
163 blob = self._blobs[offset]
181 self._blobs[self._manifest.signatures_offset] = blob
186 del self._blobs[-self._header.metadata_signature_len]
189 self._blobs[-len(blob)] = blob
/aosp_15_r20/external/pigweed/pw_build/
H A Dcc_blob_library.gni51 _blobs = []
58 _blobs += [ blob ]
63 write_file(_blob_json_file, _blobs, "json")
/aosp_15_r20/external/ComputeLibrary/arm_compute/runtime/
H A DBlobLifetimeManager.h72 std::vector<BlobInfo> _blobs; /**< Memory blobs */
H A DBlobMemoryPool.h81 …std::vector<std::unique_ptr<IMemoryRegion>> _blobs; /**< Vector holding all the memory blobs */ variable