HomeSort by relevance Sort by last modified time
    Searched defs:MemoryRegion (Results 1 - 4 of 4) sorted by null

  /frameworks/compile/mclinker/lib/Support/
MemoryRegion.cpp 1 //===- MemoryRegion.cpp ---------------------------------------------------===//
9 #include <mcld/Support/MemoryRegion.h>
19 // MemoryRegion
21 MemoryRegion::MemoryRegion()
25 MemoryRegion::MemoryRegion(MemoryRegion::Address pVMAStart, size_t pSize)
29 MemoryRegion::~MemoryRegion()
    [all...]
  /external/openfst/src/include/fst/
mapped-file.h 38 struct MemoryRegion {
76 explicit MappedFile(const MemoryRegion &region);
78 MemoryRegion region_;
  /frameworks/compile/mclinker/include/mcld/Support/
MemoryRegion.h 1 //===- MemoryRegion.h -----------------------------------------------------===//
24 /** \class MemoryRegion
25 * \brief MemoryRegion is a range of virtual memory which is mapped onto a
29 * mapped memory space by requesting a MemoryRegion from MemoryArea, and
30 * read/write the mapped file through the MemoryRegion.
32 * When two different MemoryRegion may overlap memory space, race condition
33 * may occurs. Clients must call MemoryRegion::sync() explicit to tell the
37 class MemoryRegion : private Uncopyable
39 friend class Chunk<MemoryRegion, MCLD_REGION_CHUNK_SIZE>;
48 MemoryRegion();
    [all...]
  /art/runtime/
memory_region.h 31 class MemoryRegion {
33 MemoryRegion() : pointer_(NULL), size_(0) {}
34 MemoryRegion(void* pointer, uword size) : pointer_(pointer), size_(size) {}
41 return OFFSETOF_MEMBER(MemoryRegion, pointer_);
59 void CopyFrom(size_t offset, const MemoryRegion& from) const;
62 void Subregion(const MemoryRegion& from, uintptr_t offset, uintptr_t size) {
70 void Extend(const MemoryRegion& region, uintptr_t extra) {
94 DISALLOW_COPY_AND_ASSIGN(MemoryRegion);

Completed in 3444 milliseconds