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

/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.
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/v8/src/
H A Dv8memory.h34 // Memory provides an interface to 'raw' memory. It encapsulates the casts
37 class Memory { class in namespace:v8::internal
/external/llvm/lib/Support/
H A DMemoryBuffer.cpp1 //===--- MemoryBuffer.cpp - Memory Buffer implementation ------------------===//
62 static void CopyStringRef(char *Memory, StringRef Data) { argument
63 memcpy(Memory, Data.data(), Data.size());
64 Memory[Data.size()] = 0; // Null terminate string.
/external/clang/lib/Lex/
H A DPreprocessingRecord.cpp33 char *Memory local
35 memcpy(Memory, FileName.data(), FileName.size());
36 Memory[FileName.size()] = 0;
37 this->FileName = StringRef(Memory, FileName.size());
/external/dropbear/libtommath/
H A Dbn.tex547 \subsection{Reducing Memory Usage}
/external/llvm/lib/Target/MBlaze/AsmParser/
H A DMBlazeAsmParser.cpp83 Memory, enumerator in enum:__anon8910::MBlazeOperand::KindTy
130 case Memory:
161 assert(Kind == Memory && "Invalid access!");
166 assert(Kind == Memory && "Invalid access!");
171 assert(Kind == Memory && "Invalid access!");
177 bool isMem() const { return Kind == Memory; }
260 MBlazeOperand *Op = new MBlazeOperand(Memory);
271 MBlazeOperand *Op = new MBlazeOperand(Memory);
295 case Memory: {
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h866 void reclaim(const void *Memory) { argument
867 Cache.push_back(const_cast<void *>(Memory));
/external/clang/lib/CodeGen/
H A DTargetInfo.cpp1026 Memory enumerator in enum:__anon84::X86_64ABIInfo::Class
1036 /// call. In addition, this should never be Memory (the caller
1037 /// should just return Memory for the aggregate).
1070 /// be passed in Memory then at least the classification of \arg Lo
1071 /// will be Memory.
1236 // (a) If one of the classes is Memory, the whole argument is passed in
1255 if (Hi == Memory)
1256 Lo = Memory;
1258 Lo = Memory;
1260 Lo = Memory;
[all...]
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp169 Memory enumerator in enum:__anon8982::X86Operand::KindTy
231 assert(Kind == Memory && "Invalid access!");
235 assert(Kind == Memory && "Invalid access!");
239 assert(Kind == Memory && "Invalid access!");
243 assert(Kind == Memory && "Invalid access!");
247 assert(Kind == Memory && "Invalid access!");
326 bool isMem() const { return Kind == Memory; }
328 return Kind == Memory && (!Mem.Size || Mem.Size == 8);
331 return Kind == Memory && (!Mem.Size || Mem.Size == 16);
334 return Kind == Memory
[all...]
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp377 } Memory; member in union:__anon8852::ARMOperand::__anon8853
454 Memory = o.Memory;
880 return Memory.OffsetRegNum == 0 && Memory.OffsetImm == 0 &&
881 (alignOK || Memory.Alignment == 0);
884 if (!isMemory() || Memory.OffsetRegNum != 0 || Memory.Alignment != 0)
887 if (Memory.BaseRegNum != ARM::PC)
890 if (!Memory
[all...]

Completed in 273 milliseconds