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

1 2 3 4 5

  /external/google-breakpad/src/google_breakpad/processor/
memory_region.h 32 // A MemoryRegion provides virtual access to a range of memory. It is an
48 class MemoryRegion {
50 virtual ~MemoryRegion() {}
stackwalker.h 90 MemoryRegion* memory,
106 // memory identifies a MemoryRegion that provides the stack memory
115 MemoryRegion* memory,
186 MemoryRegion* memory_;
  /frameworks/base/core/java/android/hardware/location/
MemoryRegion.java 27 public class MemoryRegion implements Parcelable{
122 public MemoryRegion(Parcel source) {
130 public static final Parcelable.Creator<MemoryRegion> CREATOR
131 = new Parcelable.Creator<MemoryRegion>() {
132 public MemoryRegion createFromParcel(Parcel in) {
133 return new MemoryRegion(in);
136 public MemoryRegion[] newArray(int size) {
137 return new MemoryRegion[size];
  /frameworks/compile/mclinker/include/mcld/LD/
ELFObjectWriter.h 73 void emitSectionData(const LDSection& pSection, MemoryRegion& pRegion) const;
77 MemoryRegion& pRegion) const;
81 MemoryRegion& pRegion) const;
87 MemoryRegion& pRegion) const;
93 MemoryRegion& pRegion) const;
112 void emitSectionData(const SectionData& pSD, MemoryRegion& pRegion) const;
EhFrameHdr.h 53 const MemoryRegion& pEhFrameRegion);
MergedStringTable.h 12 #include "mcld/Support/MemoryRegion.h"
41 void emit(MemoryRegion& pRegion);
  /external/google-breakpad/src/processor/
stackwalker_ppc.h 58 MemoryRegion* memory,
stackwalker_ppc64.h 56 MemoryRegion* memory,
stackwalker_sparc.h 58 MemoryRegion* memory,
stackwalker_mips.h 58 MemoryRegion* memory,
postfix_evaluator.h 84 class MemoryRegion;
98 PostfixEvaluator(DictionaryType *dictionary, const MemoryRegion *memory)
166 // If non-NULL, the MemoryRegion used for dereference (^) operations.
168 const MemoryRegion *memory_;
cfi_frame_info.h 51 class MemoryRegion;
100 const MemoryRegion &memory,
259 bool FindCallerRegisters(const MemoryRegion &memory,
stackwalker_amd64.h 61 MemoryRegion* memory,
stackwalker_arm.h 60 MemoryRegion* memory,
  /frameworks/compile/mclinker/include/mcld/Support/
MemoryRegion.h 1 //===- MemoryRegion.h -----------------------------------------------------===//
23 typedef llvm::MutableArrayRef<uint8_t> MemoryRegion;
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOTPLT.h 12 #include "mcld/Support/MemoryRegion.h"
32 uint64_t emit(MemoryRegion& pRegion);
MipsPLT.h 12 #include "mcld/Support/MemoryRegion.h"
34 uint64_t emit(MemoryRegion& pRegion);
  /art/runtime/
memory_region_test.cc 24 TEST(MemoryRegion, LoadUnaligned) {
27 MemoryRegion region(&data, n);
39 TEST(MemoryRegion, StoreUnaligned) {
42 MemoryRegion region(&data, n);
59 TEST(MemoryRegion, TestBits) {
62 MemoryRegion region(&data, n);
memory_region.cc 27 void MemoryRegion::CopyFrom(size_t offset, const MemoryRegion& from) const {
35 void MemoryRegion::StoreBits(uintptr_t bit_offset, uint32_t value, size_t length) {
method_info.h 36 region_ = MemoryRegion(const_cast<uint8_t*>(ptr),
45 region_ = MemoryRegion(ptr, num_method_indices_ * sizeof(MethodIndexType));
72 MemoryRegion region_;
memory_region.h 36 class MemoryRegion FINAL : public ValueObject {
39 constexpr bool operator()(const MemoryRegion& lhs, const MemoryRegion& rhs) const {
44 MemoryRegion() : pointer_(nullptr), size_(0) {}
45 MemoryRegion(void* pointer_in, uintptr_t size_in) : pointer_(pointer_in), size_(size_in) {}
52 return OFFSETOF_MEMBER(MemoryRegion, pointer_);
172 void CopyFrom(size_t offset, const MemoryRegion& from) const;
177 CopyFrom(offset, MemoryRegion(vector.data(), vector.size()));
182 ALWAYS_INLINE MemoryRegion Subregion(uintptr_t offset, uintptr_t size_in) const {
185 return MemoryRegion(reinterpret_cast<void*>(begin() + offset), size_in)
    [all...]
  /frameworks/compile/mclinker/lib/Support/
FileOutputBuffer.cpp 49 MemoryRegion FileOutputBuffer::request(size_t pOffset, size_t pLength) {
51 return MemoryRegion();
52 return MemoryRegion(getBufferStart() + pOffset, pLength);
  /frameworks/compile/mclinker/lib/Target/X86/
X86LDBackend.h 73 MemoryRegion& pRegion) const;
123 virtual uint64_t emitGOTSectionData(MemoryRegion& pRegion) const = 0;
126 MemoryRegion& pRegion,
180 uint64_t emitGOTSectionData(MemoryRegion& pRegion) const;
182 uint64_t emitGOTPLTSectionData(MemoryRegion& pRegion,
222 uint64_t emitGOTSectionData(MemoryRegion& pRegion) const;
224 uint64_t emitGOTPLTSectionData(MemoryRegion& pRegion,
  /art/compiler/utils/
assembler.cc 54 void AssemblerBuffer::ProcessFixups(const MemoryRegion& region) {
63 void AssemblerBuffer::FinalizeInstructions(const MemoryRegion& instructions) {
65 MemoryRegion from(reinterpret_cast<void*>(contents()), Size());
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/ArmV7/
ArmV7Mmu.c 181 IN ARM_MEMORY_REGION_DESCRIPTOR *MemoryRegion
189 ASSERT(MemoryRegion->Length > 0);
191 if (MemoryRegion->PhysicalBase >= SIZE_4GB) {
195 PhysicalBase = MemoryRegion->PhysicalBase;
196 RemainLength = MIN(MemoryRegion->Length, SIZE_4GB - PhysicalBase);
198 switch (MemoryRegion->Attributes) {
233 SectionEntry = TRANSLATION_TABLE_ENTRY_FOR_VIRTUAL_ADDRESS(TranslationTable, MemoryRegion->VirtualBase);
243 PopulateLevel2PageTable (SectionEntry++, PhysicalBase, RemainLength, MemoryRegion->Attributes);
250 PopulateLevel2PageTable (SectionEntry++, PhysicalBase, RemainLength, MemoryRegion->Attributes);

Completed in 222 milliseconds

1 2 3 4 5