Home
last modified time | relevance | path

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

/external/webrtc/webrtc/system_wrappers/source/
Daligned_malloc.cc81 uintptr_t memory_start = reinterpret_cast<uintptr_t>(memory_pointer); in AlignedMalloc() local
82 memcpy(header_pointer, &memory_start, sizeof(uintptr_t)); in AlignedMalloc()
96 void* memory_start = reinterpret_cast<void*>(memory_start_pos); in AlignedFree() local
97 free(memory_start); in AlignedFree()
/external/perf_data_converter/src/
Dperf_data_converter_test.cc55 mappings.Set(mapping.memory_start(), mapping.memory_limit(), &mapping); in GetMapCounts()
81 << (addr - dso->memory_start()); in GetMapCounts()
306 EXPECT_EQ(1000, profile.mapping(0).memory_start()); // user in TEST_F()
308 EXPECT_EQ(0, profile.mapping(1).memory_start()); // kernel in TEST_F()
Dprofile.proto125 uint64 memory_start = 2; field
156 // should be within [Mapping.memory_start...Mapping.memory_limit]
Dbuilder.cc230 mapping_map[mapping.memory_start()] = in Finalize()
Dperf_data_converter.cc422 if (mapping->memory_start() >= mapping->memory_limit()) { in AddOrGetMapping()
425 << "Start: " << mapping->memory_start() << std::endl in AddOrGetMapping()
/external/tensorflow/tensorflow/core/util/
Dmemmapped_file_system.cc210 const auto memory_start = in InitializeFromFile() local
213 memory_start + mapped_memory_->length() - sizeof(uint64)); in InitializeFromFile()
220 &proto_directory, memory_start + directory_offset, in InitializeFromFile()
/external/tensorflow/tensorflow/core/profiler/
Dprofile.proto42 uint64 memory_start = 2; field
/external/perfetto/protos/third_party/pprof/
Dprofile.proto146 uint64 memory_start = 2; field
177 // should be within [Mapping.memory_start...Mapping.memory_limit]
/external/v8/src/wasm/
Dwasm-objects-inl.h144 PRIMITIVE_ACCESSORS(WasmInstanceObject, memory_start, byte*, kMemoryStartOffset) in PRIMITIVE_ACCESSORS() argument
Dwasm-objects.h393 DECL_PRIMITIVE_ACCESSORS(memory_start, byte*)
Dwasm-interpreter.cc1408 return reinterpret_cast<Address>(instance_object_->memory_start()) + in BoundsCheckMem()
1433 instance_object_->memory_start()); in ExecuteLoad()
1459 instance_object_->memory_start()); in ExecuteStore()
Dmodule-compiler.cc1131 CHECK_EQ(instance->memory_start(), memory->backing_store()); in Build()
1338 byte* dest = instance->memory_start() + dest_offset; in LoadDataSegments()
Dwasm-objects.cc958 byte* mem_start = instance->memory_start(); in SetInstanceMemory()
/external/v8/src/
Dobjects-printer.cc1745 os << "\n - memory_start: " << static_cast<void*>(memory_start()); in WasmInstanceObjectPrint()