Home
last modified time | relevance | path

Searched refs:memory_start (Results 1 – 14 of 14) sorted by relevance

/aosp_15_r20/external/webrtc/rtc_base/memory/
H A Daligned_malloc.cc79 uintptr_t memory_start = reinterpret_cast<uintptr_t>(memory_pointer); in AlignedMalloc() local
80 memcpy(header_pointer, &memory_start, sizeof(uintptr_t)); in AlignedMalloc()
94 void* memory_start = reinterpret_cast<void*>(memory_start_pos); in AlignedFree() local
95 free(memory_start); in AlignedFree()
/aosp_15_r20/external/tensorflow/tensorflow/core/util/
H A Dmemmapped_file_system.cc218 const auto memory_start = in InitializeFromFile() local
221 memory_start + mapped_memory_->length() - sizeof(uint64)); in InitializeFromFile()
228 &proto_directory, memory_start + directory_offset, in InitializeFromFile()
/aosp_15_r20/system/testing/gtest_extras/gtest_isolated/tests/
DSystemTests.cpp1185 size_t memory_start = 0; in TEST_F() local
1192 memory_start = memory; in TEST_F()
1203 if (memory > memory_start) { in TEST_F()
1204 ASSERT_GT(kMaxLeakBytes, memory - memory_start) in TEST_F()
1207 << "Starting memory bytes " << memory_start << std::endl in TEST_F()
/aosp_15_r20/external/perfetto/src/trace_processor/util/
H A Dprofile_builder.cc146 : memory_start(static_cast<uint64_t>(mapping.start())), in Mapping()
180 if (memory_limit == memory_start) { in ComputeMainBinaryScore()
425 GetMapping(entry.first.mapping_id).memory_start); in WriteLocations()
618 m->set_memory_start(mapping.memory_start); in WriteMapping()
H A Dprofile_builder.h228 const uint64_t memory_start; member
/aosp_15_r20/system/extras/simpleperf/scripts/
H A Dpprof_proto_generator.py146 print('%smemory_start: %x' % (space, mapping.memory_start))
234 self.memory_start = start
243 self.memory_start,
643 profile_mapping.memory_start = mapping.memory_start
/aosp_15_r20/system/extras/simpleperf/scripts/test/
H A Dpprof_proto_generator_test.py124 self.assertLessEqual(mapping.memory_start, location.address)
200 addr = location.address - mapping.memory_start + mapping.file_offset
/aosp_15_r20/system/extras/simpleperf/
H A Ddso.cpp892 KernelModuleDso(const std::string& path, uint64_t memory_start, uint64_t memory_end, in KernelModuleDso() argument
895 memory_start_(memory_start), in KernelModuleDso()
1064 std::unique_ptr<Dso> Dso::CreateKernelModuleDso(const std::string& dso_path, uint64_t memory_start, in CreateKernelModuleDso() argument
1066 return std::unique_ptr<Dso>(new KernelModuleDso(dso_path, memory_start, memory_end, kernel_dso)); in CreateKernelModuleDso()
H A Dthread_tree.cpp157 Dso* ThreadTree::FindKernelModuleDsoOrNew(const std::string& filename, uint64_t memory_start, in FindKernelModuleDsoOrNew() argument
162 Dso::CreateKernelModuleDso(filename, memory_start, memory_end, FindKernelDsoOrNew()); in FindKernelModuleDsoOrNew()
H A Dthread_tree.h149 Dso* FindKernelModuleDsoOrNew(const std::string& filename, uint64_t memory_start,
H A Ddso.h146 uint64_t memory_start, uint64_t memory_end,
/aosp_15_r20/external/tensorflow/tensorflow/core/profiler/
H A Dprofile.proto42 uint64 memory_start = 2; field
/aosp_15_r20/external/perfetto/protos/third_party/pprof/
H A Dprofile.proto154 uint64 memory_start = 2; field
187 // should be within [Mapping.memory_start...Mapping.memory_limit]
/aosp_15_r20/packages/modules/Virtualization/guest/pvmfw/src/
Dfdt.rs624 let memory_start = memory_range.start.try_into().unwrap(); in validate_pci_addr_range() localVariable
627 if max(bus_addr, memory_start) < min(bus_end, memory_end) { in validate_pci_addr_range()
630 bus_addr, bus_end, memory_start, memory_end in validate_pci_addr_range()