Searched defs:Memory (Results 1 - 25 of 28) sorted by relevance

12

/external/llvm/include/llvm/IR/
H A DPredIteratorCache.h33 /// Memory - This is the space that holds cached preds.
34 BumpPtrAllocator Memory; member in class:llvm::PredIteratorCache
53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size());
73 Memory.Reset();
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMemory.h1 //===- llvm/Support/Memory.h - Memory Support --------------------*- C++ -*-===//
10 // This file declares the llvm::sys::Memory class.
24 /// and a size. It is used by the Memory class (a friend) as the result of
26 /// @see Memory
27 /// @brief Memory block abstraction.
37 friend class Memory;
44 class Memory { class in namespace:llvm::sys
H A DPredIteratorCache.h32 /// Memory - This is the space that holds cached preds.
33 BumpPtrAllocator Memory; member in class:llvm::PredIteratorCache
51 Entry = Memory.Allocate<BasicBlock*>(PredCache.size());
65 Memory.Reset();
/external/llvm/include/llvm/Support/
H A DMemory.h1 //===- llvm/Support/Memory.h - Memory Support -------------------*- C++ -*-===//
10 // This file declares the llvm::sys::Memory class.
25 /// and a size. It is used by the Memory class (a friend) as the result of
27 /// @see Memory
28 /// @brief Memory block abstraction.
39 friend class Memory;
46 class Memory { class in namespace:llvm::sys
174 Memory::releaseMappedMemory(M);
/external/v8/src/
H A Dv8memory.h11 // Memory provides an interface to 'raw' memory. It encapsulates the casts
14 class Memory { class in namespace:v8::internal
/external/google-breakpad/src/processor/
H A Dsynth_minidump.h39 // that eventually gets appended to the minidump. Dump, Memory,
46 // using google_breakpad::SynthMinidump::Memory;
51 // Memory stack1(minidump, 0x569eb0a9);
98 // references to a Memory and a Context, it does not add them to the
101 // cited from more than one place; for example, Memory ranges are
132 class Memory;
212 class Memory: public Section { class in namespace:google_breakpad::SynthMinidump
214 Memory(const Dump &dump, uint64_t address) function in class:google_breakpad::SynthMinidump::Memory
243 const Memory &stack,
333 Dump &Add(Memory *objec
[all...]
/external/swiftshader/third_party/LLVM/lib/Support/
H A DMemoryBuffer.cpp1 //===--- MemoryBuffer.cpp - Memory Buffer implementation ------------------===//
63 static void CopyStringRef(char *Memory, StringRef Data) { argument
64 memcpy(Memory, Data.data(), Data.size());
65 Memory[Data.size()] = 0; // Null terminate string.
/external/clang/lib/Lex/
H A DPreprocessingRecord.cpp34 char *Memory local
36 memcpy(Memory, FileName.data(), FileName.size());
37 Memory[FileName.size()] = 0;
38 this->FileName = StringRef(Memory, FileName.size());
/external/llvm/lib/Support/
H A DMemoryBuffer.cpp1 //===--- MemoryBuffer.cpp - Memory Buffer implementation ------------------===//
59 static void CopyStringRef(char *Memory, StringRef Data) { argument
61 memcpy(Memory, Data.data(), Data.size());
62 Memory[Data.size()] = 0; // Null terminate string.
191 /// \brief Memory maps a file descriptor using sys::fs::mapped_file_region.
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/AsmParser/
H A DMBlazeAsmParser.cpp79 Memory, enumerator in enum:__anon18768::MBlazeOperand::KindTy
126 case Memory:
157 assert(Kind == Memory && "Invalid access!");
162 assert(Kind == Memory && "Invalid access!");
167 assert(Kind == Memory && "Invalid access!");
173 bool isMem() const { return Kind == Memory; }
256 MBlazeOperand *Op = new MBlazeOperand(Memory);
267 MBlazeOperand *Op = new MBlazeOperand(Memory);
291 case Memory: {
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h1000 void reclaim(const void *Memory) { argument
1001 Cache.push_back(const_cast<void *>(Memory));
/external/llvm/lib/Target/X86/AsmParser/
H A DX86Operand.h30 Memory enumerator in enum:llvm::X86Operand::KindTy
108 assert(Kind == Memory && "Invalid access!");
112 assert(Kind == Memory && "Invalid access!");
116 assert(Kind == Memory && "Invalid access!");
120 assert(Kind == Memory && "Invalid access!");
124 assert(Kind == Memory && "Invalid access!");
128 assert(Kind == Memory && "Invalid access!");
208 bool isMem() const override { return Kind == Memory; }
210 return Kind == Memory && Mem.Size == 0;
213 return Kind == Memory
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp113 Memory enumerator in enum:__anon18835::X86Operand::KindTy
172 assert(Kind == Memory && "Invalid access!");
176 assert(Kind == Memory && "Invalid access!");
180 assert(Kind == Memory && "Invalid access!");
184 assert(Kind == Memory && "Invalid access!");
188 assert(Kind == Memory && "Invalid access!");
278 bool isMem() const { return Kind == Memory; }
281 return Kind == Memory && !getMemSegReg() && !getMemBaseReg() &&
341 X86Operand *Res = new X86Operand(Memory, StartLoc, EndLoc);
361 X86Operand *Res = new X86Operand(Memory, StartLo
[all...]
/external/vixl/src/aarch64/
H A Dsimulator-aarch64.h253 class Memory { class in namespace:vixl::aarch64
485 register_.Insert(index, Memory::Read<uint8_t>(addr));
488 register_.Insert(index, Memory::Read<uint16_t>(addr));
491 register_.Insert(index, Memory::Read<uint32_t>(addr));
494 register_.Insert(index, Memory::Read<uint64_t>(addr));
506 Memory::Write(addr, static_cast<uint8_t>(value));
509 Memory::Write(addr, static_cast<uint16_t>(value));
512 Memory::Write(addr, static_cast<uint32_t>(value));
515 Memory::Write(addr, value);
813 pc_ = Memory
[all...]
/external/llvm/lib/Target/Hexagon/
H A DRDFGraph.h788 NodeAllocator Memory; member in struct:DataFlowGraph
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DGlobalOpt.cpp2273 const DenseMap<Constant*, Constant*> &Memory) {
2276 DenseMap<Constant*, Constant*>::const_iterator I = Memory.find(P);
2277 if (I != Memory.end()) return I->second;
2272 ComputeLoadResult(Constant *P, const DenseMap<Constant*, Constant*> &Memory) argument
/external/clang/lib/CodeGen/
H A DTargetInfo.cpp1859 Memory enumerator in enum:__anon1289::X86_64ABIInfo::Class
1869 /// call. In addition, this should never be Memory (the caller
1870 /// should just return Memory for the aggregate).
1906 /// be passed in Memory then at least the classification of \arg Lo
1907 /// will be Memory.
2248 // (a) If one of the classes is Memory, the whole argument is passed in
2267 if (Hi == Memory)
2268 Lo = Memory;
2270 Lo = Memory;
2272 Lo = Memory;
[all...]
/external/mesa3d/include/CL/
H A Dcl.hpp203 class Memory;
914 F(cl_mem_info, CL_MEM_ASSOCIATED_MEMOBJECT, cl::Memory) \
1681 /*! \class Memory
1682 * \brief Memory interface for cl_mem.
1684 class Memory : public detail::Wrapper<cl_mem> class in namespace:cl
1687 Memory() : detail::Wrapper<cl_type>() { } function in class:cl::Memory
1689 Memory(const Memory& memory) : detail::Wrapper<cl_type>(memory) { } function in class:cl::Memory
1691 Memory& operator = (const Memory
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp338 } Memory; member in union:__anon18719::ARMOperand::__anon18720
413 Memory = o.Memory;
681 return Memory.OffsetRegNum == 0 && Memory.OffsetImm == 0 &&
682 (alignOK || Memory.Alignment == 0);
688 if (!isMemory() || Memory.Alignment != 0) return false;
690 if (Memory.OffsetRegNum) return true;
692 if (!Memory.OffsetImm) return true;
693 int64_t Val = Memory
[all...]
/external/clang/lib/AST/
H A DASTImporter.cpp3058 CXXCtorInitializer **Memory = local
3060 std::copy(CtorInitializers.begin(), CtorInitializers.end(), Memory);
3062 ToCtor->setCtorInitializers(Memory);
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp576 struct MemoryOp Memory; member in union:__anon12918::ARMOperand::__anon12919
740 if(!Memory.OffsetImm || Memory.OffsetRegNum) return false;
741 if(Memory.BaseRegNum != ARM::PC) return false;
742 Val = Memory.OffsetImm->getValue();
1094 return Memory.OffsetRegNum == 0 && Memory.OffsetImm == nullptr &&
1095 (alignOK || Memory.Alignment == Alignment);
1098 if (!isMem() || Memory.OffsetRegNum != 0 || Memory
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Ddbghelp.h919 MINIDUMP_LOCATION_DESCRIPTOR Memory; member in struct:_MINIDUMP_MEMORY_DESCRIPTOR
1148 MINIDUMP_LOCATION_DESCRIPTOR Memory; member in struct:_MINIDUMP_USER_RECORD
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 2874 milliseconds

12