Home
last modified time | relevance | path

Searched refs:blob_ (Results 1 – 11 of 11) sorted by relevance

/aosp_15_r20/external/perfetto/include/perfetto/trace_processor/
H A Dtrace_blob_view.h64 blob_.reset(new TraceBlob(std::move(blob)));
68 : blob_(std::move(blob)), data_(blob_->data() + offset), length_(length) { in TraceBlobView()
69 PERFETTO_DCHECK(offset + length_ <= blob_->size()); in TraceBlobView()
83 blob_ = std::move(other.blob_);
95 return TraceBlobView(blob_, data, static_cast<uint32_t>(length)); in slice()
101 return TraceBlobView(blob_, data_ + off, static_cast<uint32_t>(length)); in slice_off()
108 (blob_ == rhs.blob_);
113 size_t offset() const { return static_cast<size_t>(data_ - blob_->data()); } in offset()
116 RefPtr<TraceBlob> blob() const { return blob_; } in blob()
120 : blob_(std::move(blob)), data_(data), length_(length) {} in TraceBlobView()
[all …]
/aosp_15_r20/prebuilts/runtime/mainline/platform/sdk/include/external/perfetto/include/perfetto/trace_processor/
H A Dtrace_blob_view.h64 blob_.reset(new TraceBlob(std::move(blob)));
68 : blob_(std::move(blob)), data_(blob_->data() + offset), length_(length) { in TraceBlobView()
69 PERFETTO_DCHECK(offset + length_ <= blob_->size()); in TraceBlobView()
83 blob_ = std::move(other.blob_);
95 return TraceBlobView(blob_, data, static_cast<uint32_t>(length)); in slice()
101 return TraceBlobView(blob_, data_ + off, static_cast<uint32_t>(length)); in slice_off()
108 (blob_ == rhs.blob_);
113 size_t offset() const { return static_cast<size_t>(data_ - blob_->data()); } in offset()
116 RefPtr<TraceBlob> blob() const { return blob_; } in blob()
120 : blob_(std::move(blob)), data_(data), length_(length) {} in TraceBlobView()
[all …]
/aosp_15_r20/system/nvram/messages/
H A Dio.cpp221 : OutputStreamBuffer(blob->data(), blob->size()), blob_(blob) {} in BlobOutputStreamBuffer()
224 ptrdiff_t offset = pos_ - blob_->data(); in Advance()
225 if (!blob_->Resize(max<size_t>(blob_->size() * 2, 32))) { in Advance()
228 pos_ = blob_->data() + offset; in Advance()
229 end_ = blob_->data() + blob_->size(); in Advance()
234 if (!blob_->Resize(pos_ - blob_->data())) { in Truncate()
237 end_ = blob_->data() + blob_->size(); in Truncate()
/aosp_15_r20/external/pigweed/pw_blob_store/
H A Dflat_file_system_entry_test.cc45 blob_(kBlobTitle, partition_, &checksum_, kvs::TestKvs(), kBufferSize) { in FlatFileSystemBlobStoreEntryTest()
48 void SetUp() override { ASSERT_EQ(OkStatus(), blob_.Init()); } in SetUp()
68 BlobStore::BlobWriter writer(blob_, metadata_buffer_); in WriteTestBlock()
75 BlobStore::BlobReader reader(blob_); in WriteTestBlock()
96 BlobStoreBuffer<kBufferSize> blob_; member in pw::blob_store::__anon3f9125290111::FlatFileSystemBlobStoreEntryTest
113 kExpectedFileId, kExpectedPermissions, blob_, blob_store_mutex); in TEST_F()
138 kExpectedFileId, kExpectedPermissions, blob_, blob_store_mutex); in TEST_F()
142 BlobStore::BlobReader reader(blob_); in TEST_F()
158 kExpectedFileId, kExpectedPermissions, blob_, blob_store_mutex); in TEST_F()
/aosp_15_r20/system/nvram/hal/
H A Dmemory_storage.cpp28 bool present() const { return blob_.size() != 0; } in present()
31 if (blob_.size() == 0) { in Load()
35 if (!blob->Assign(blob_.data(), blob_.size())) { in Load()
43 if (!blob_.Assign(blob.data(), blob.size())) { in Store()
51 return blob_.Resize(0) ? Status::kSuccess : Status::kStorageError; in Delete()
55 Blob blob_; member in nvram::storage::__anon541f1f9e0111::StorageSlot
/aosp_15_r20/system/nvram/core/tests/
H A Dfake_storage.cpp40 NVRAM_CHECK(blob->Assign(blob_.data(), blob_.size())); in Load()
49 NVRAM_CHECK(blob_.Assign(blob.data(), blob.size())); in Store()
59 NVRAM_CHECK(blob_.Resize(0)); in Delete()
68 NVRAM_CHECK(blob_.Resize(0)); in Clear()
80 Blob blob_; member in nvram::storage::__anoncc3ff8520111::StorageSlot
/aosp_15_r20/external/pytorch/c10/mobile/
H A DCPUProfilingAllocator.cpp343 c10::free_cpu(blob_); in set_plan()
344 blob_ = c10::alloc_cpu(plan->total_size); in set_plan()
365 void* ptr = reinterpret_cast<uint8_t*>(blob_) + in allocate()
407 c10::free_cpu(blob_); in ~CPUProfilingAllocator()
H A DCPUProfilingAllocator.h77 void* blob_{nullptr};
/aosp_15_r20/external/perfetto/src/trace_processor/importers/proto/
H A Dtrack_event_parser.cc194 blob_(blob), in EventImporter()
195 event_(blob_), in EventImporter()
1169 blob_, ".perfetto.protos.TrackEvent", &parser_->reflect_fields_, in ParseTrackEventArgs()
1354 ConstBytes blob_; member in perfetto::trace_processor::TrackEventParser::EventImporter
/aosp_15_r20/system/nvram/messages/include/nvram/messages/
H A Dio.h215 Blob* blob_;
/aosp_15_r20/external/mesa3d/src/gallium/frontends/rusticl/
H A Dmeson.build257 '--allowlist-function', 'blob_.*',