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

1 2 3 4

  /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_;
process_state.h 107 const vector<MemoryRegion*>* thread_memory_regions() const {
166 vector<MemoryRegion*> thread_memory_regions_;
  /art/libartbase/base/
memory_region_test.cc 23 TEST(MemoryRegion, LoadUnaligned) {
26 MemoryRegion region(&data, n);
38 TEST(MemoryRegion, StoreUnaligned) {
41 MemoryRegion region(&data, n);
memory_region.cc 24 void MemoryRegion::CopyFrom(size_t offset, const MemoryRegion& from) const {
memory_region.h 37 class MemoryRegion final : public ValueObject {
40 constexpr bool operator()(const MemoryRegion& lhs, const MemoryRegion& rhs) const {
45 MemoryRegion() : pointer_(nullptr), size_(0) {}
46 MemoryRegion(void* pointer_in, uintptr_t size_in) : pointer_(pointer_in), size_(size_in) {}
53 return OFFSETOF_MEMBER(MemoryRegion, pointer_);
112 void CopyFrom(size_t offset, const MemoryRegion& from) const;
117 CopyFrom(offset, MemoryRegion(vector.data(), vector.size()));
122 ALWAYS_INLINE MemoryRegion Subregion(uintptr_t offset, uintptr_t size_in) const {
125 return MemoryRegion(reinterpret_cast<void*>(begin() + offset), size_in)
    [all...]
bit_memory_region_test.cc 61 BitMemoryRegion bmr1(MemoryRegion(&data, sizeof(data)), bit_offset, 1);
67 BitMemoryRegion bmr2(MemoryRegion(&data, sizeof(data)));
85 BitMemoryRegion bmr1(MemoryRegion(&data, sizeof(data)), bit_offset, bit_length);
91 BitMemoryRegion bmr2(MemoryRegion(&data, sizeof(data)));
  /external/tensorflow/tensorflow/contrib/verbs/
verbs_service.proto 37 message MemoryRegion {
44 repeated MemoryRegion mr = 3;
50 repeated MemoryRegion mr = 3;
  /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,
stackwalker_arm64.h 59 MemoryRegion* memory,
stackwalker_x86.h 64 MemoryRegion* memory,
cfi_frame_info.cc 52 const MemoryRegion &memory,
97 const MemoryRegion &memory,
101 const MemoryRegion &memory,
  /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());
assembler.h 51 virtual void Process(const MemoryRegion& region, int position) = 0;
169 void FinalizeInstructions(const MemoryRegion& region);
273 void ProcessFixups(const MemoryRegion& region);
378 virtual void FinalizeInstructions(const MemoryRegion& region) {
  /external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPIBugReporter.h 85 RequestNodeVisitor(const MemRegion *const MemoryRegion,
87 : RequestRegion(MemoryRegion), ErrorText(ErrText) {}
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmMmuLib/Arm/
ArmMmuLibCore.c 206 IN ARM_MEMORY_REGION_DESCRIPTOR *MemoryRegion
214 ASSERT(MemoryRegion->Length > 0);
216 if (MemoryRegion->PhysicalBase >= SIZE_4GB) {
220 PhysicalBase = MemoryRegion->PhysicalBase;
221 RemainLength = MIN(MemoryRegion->Length, SIZE_4GB - PhysicalBase);
223 switch (MemoryRegion->Attributes) {
258 SectionEntry = TRANSLATION_TABLE_ENTRY_FOR_VIRTUAL_ADDRESS(TranslationTable, MemoryRegion->VirtualBase);
268 PopulateLevel2PageTable (SectionEntry++, PhysicalBase, RemainLength, MemoryRegion->Attributes);
275 PopulateLevel2PageTable (SectionEntry++, PhysicalBase, RemainLength, MemoryRegion->Attributes);
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmMmuLib/AArch64/
ArmMmuLibCore.c 415 IN ARM_MEMORY_REGION_DESCRIPTOR *MemoryRegion
420 MemoryRegion->VirtualBase,
421 MemoryRegion->Length,
422 ArmMemoryAttributeToPageAttribute (MemoryRegion->Attributes) | TT_AF,
436 ARM_MEMORY_REGION_DESCRIPTOR MemoryRegion;
439 MemoryRegion.PhysicalBase = BaseAddress;
440 MemoryRegion.VirtualBase = BaseAddress;
441 MemoryRegion.Length = Length;
442 MemoryRegion.Attributes = GcdAttributeToArmAttribute (Attributes);
446 Status = FillTranslationTable (TranslationTable, &MemoryRegion);
    [all...]
  /art/compiler/trampolines/
trampoline_compiler.cc 88 MemoryRegion code(entry_stub->data(), entry_stub->size());
130 MemoryRegion code(entry_stub->data(), entry_stub->size());
162 MemoryRegion code(entry_stub->data(), entry_stub->size());
194 MemoryRegion code(entry_stub->data(), entry_stub->size());
215 MemoryRegion code(entry_stub->data(), entry_stub->size());
236 MemoryRegion code(entry_stub->data(), entry_stub->size());

Completed in 795 milliseconds

1 2 3 4