/aosp_15_r20/external/webrtc/rtc_base/memory/ |
H A D | aligned_malloc.cc | 79 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 D | memmapped_file_system.cc | 218 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/ |
D | SystemTests.cpp | 1185 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 D | profile_builder.cc | 146 : 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 D | profile_builder.h | 228 const uint64_t memory_start; member
|
/aosp_15_r20/system/extras/simpleperf/scripts/ |
H A D | pprof_proto_generator.py | 146 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 D | pprof_proto_generator_test.py | 124 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 D | dso.cpp | 892 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 D | thread_tree.cpp | 157 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 D | thread_tree.h | 149 Dso* FindKernelModuleDsoOrNew(const std::string& filename, uint64_t memory_start,
|
H A D | dso.h | 146 uint64_t memory_start, uint64_t memory_end,
|
/aosp_15_r20/external/tensorflow/tensorflow/core/profiler/ |
H A D | profile.proto | 42 uint64 memory_start = 2; field
|
/aosp_15_r20/external/perfetto/protos/third_party/pprof/ |
H A D | profile.proto | 154 uint64 memory_start = 2; field 187 // should be within [Mapping.memory_start...Mapping.memory_limit]
|
/aosp_15_r20/packages/modules/Virtualization/guest/pvmfw/src/ |
D | fdt.rs | 624 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()
|