MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / MMappedFile

Method MMappedFile

src/core/utils/misc/MMappedFile.cpp:75–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73} // namespace
74
75MMappedFile::MMappedFile() : _filename(), _file_size(0), _map_size(0), _map_offset(0), _fp(nullptr), _data(nullptr)
76{
77}
78
79MMappedFile::MMappedFile(std::string filename, size_t size, size_t offset)
80 : _filename(std::move(filename)), _file_size(0), _map_size(size), _map_offset(offset), _fp(nullptr), _data(nullptr)

Callers

nothing calls this directly

Calls 1

mapFunction · 0.85

Tested by

no test coverage detected