HomeSort by relevance Sort by last modified time
    Searched refs:MemoryRegion (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/openfst/src/include/fst/
mapped-file.h 38 struct MemoryRegion {
76 explicit MappedFile(const MemoryRegion &region);
78 MemoryRegion region_;
  /art/runtime/
memory_region.cc 27 void MemoryRegion::CopyFrom(size_t offset, const MemoryRegion& from) const {
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_);
77 void CopyFrom(size_t offset, const MemoryRegion& from) const;
80 MemoryRegion Subregion(uintptr_t offset, uintptr_t size) const {
83 return MemoryRegion(reinterpret_cast<void*>(start() + offset), size);
87 void Extend(const MemoryRegion& region, uintptr_t extra) {
stack_map.h 27 * by a MemoryRegion. As such they read and write to the region, they don't have
37 explicit InlineInfo(MemoryRegion region) : region_(region) {}
65 MemoryRegion region_;
84 explicit DexRegisterMap(MemoryRegion region) : region_(region) {}
115 MemoryRegion region_;
138 explicit StackMap(MemoryRegion region) : region_(region) {}
180 MemoryRegion GetStackMask() const {
185 MemoryRegion region = GetStackMask();
212 MemoryRegion region_;
227 explicit CodeInfo(MemoryRegion region) : region_(region) {
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOTPLT.h 13 #include <mcld/Support/MemoryRegion.h>
33 uint64_t emit(MemoryRegion& pRegion);
MipsPLT.h 13 #include <mcld/Support/MemoryRegion.h>
33 uint64_t emit(MemoryRegion& pRegion);
MipsGOT.h 18 #include <mcld/Support/MemoryRegion.h>
42 virtual uint64_t emit(MemoryRegion& pRegion) = 0;
212 virtual uint64_t emit(MemoryRegion& pRegion);
231 virtual uint64_t emit(MemoryRegion& pRegion);
  /external/qemu/include/hw/xen/
xen.h 40 int xen_hvm_init(MemoryRegion **ram_memory);
45 struct MemoryRegion *mr);
49 void xen_register_framebuffer(struct MemoryRegion *mr);
  /frameworks/compile/mclinker/include/mcld/Support/
MemoryRegion.h 1 //===- MemoryRegion.h -----------------------------------------------------===//
22 typedef llvm::MutableArrayRef<uint8_t> MemoryRegion;
FileOutputBuffer.h 12 #include <mcld/Support/MemoryRegion.h>
48 MemoryRegion request(size_t pOffset, size_t pLength);
  /frameworks/compile/mclinker/include/mcld/LD/
ELFObjectWriter.h 77 void emitSectionData(const LDSection& pSection, MemoryRegion& pRegion) const;
80 EhFrame& pFrame, MemoryRegion& pRegion) const;
84 MemoryRegion& pRegion) const;
90 MemoryRegion& pRegion) const;
96 MemoryRegion& pRegion) const;
116 void emitSectionData(const SectionData& pSD, MemoryRegion& pRegion) const;
EhFrameHdr.h 54 const MemoryRegion& pEhFrameRegion);
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64GOT.h 12 #include <mcld/Support/MemoryRegion.h>
73 uint64_t emit(MemoryRegion& pRegion);
AArch64PLT.h 14 #include <mcld/Support/MemoryRegion.h>
77 uint64_t emit(MemoryRegion& pRegion);
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMGOT.h 13 #include <mcld/Support/MemoryRegion.h>
61 uint64_t emit(MemoryRegion& pRegion);
ARMPLT.h 14 #include <mcld/Support/MemoryRegion.h>
73 uint64_t emit(MemoryRegion& pRegion);
  /frameworks/compile/mclinker/lib/Support/
FileOutputBuffer.cpp 49 MemoryRegion FileOutputBuffer::request(size_t pOffset, size_t pLength)
52 return MemoryRegion();
53 return MemoryRegion(getBufferStart() + pOffset, pLength);
  /frameworks/compile/mclinker/lib/Target/X86/
X86LDBackend.h 73 MemoryRegion& pRegion) const;
126 virtual uint64_t emitGOTSectionData(MemoryRegion& pRegion) const = 0;
129 emitGOTPLTSectionData(MemoryRegion& pRegion,
184 uint64_t emitGOTSectionData(MemoryRegion& pRegion) const;
186 uint64_t emitGOTPLTSectionData(MemoryRegion& pRegion,
227 uint64_t emitGOTSectionData(MemoryRegion& pRegion) const;
229 uint64_t emitGOTPLTSectionData(MemoryRegion& pRegion,
  /external/openfst/src/lib/
mapped-file.cc 30 MappedFile::MappedFile(const MemoryRegion &region) : region_(region) { }
46 MemoryRegion region;
54 MemoryRegion region;
75 MemoryRegion region;
  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttribute.h 12 #include <mcld/Support/MemoryRegion.h>
65 size_t emit(MemoryRegion &pRegion) const;
  /frameworks/compile/mclinker/unittests/
MCRegionFragmentTest.cpp 51 MemoryRegion* region = area->request(0, 4096);
66 MemoryRegion* region = area->request(0, 4096);
  /art/compiler/optimizing/
stack_map_test.cc 25 bool SameBits(MemoryRegion region, const BitVector& bit_vector) {
46 MemoryRegion region(memory, size);
61 MemoryRegion stack_mask = stack_map.GetStackMask();
93 MemoryRegion region(memory, size);
107 MemoryRegion stack_mask = stack_map.GetStackMask();
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.h 80 MemoryRegion& pRegion) const;
171 virtual uint64_t emitGOTSectionData(MemoryRegion& pRegion) const;
173 virtual uint64_t emitGOTPLTSectionData(MemoryRegion& pRegion,
  /external/qemu/include/exec/
cputlb.h 46 bool memory_region_is_unassigned(MemoryRegion *mr);
  /external/qemu/include/qemu/
typedefs.h 25 typedef struct MemoryRegion MemoryRegion;

Completed in 501 milliseconds

1 2 3