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

/external/chromium_org/tools/perf/measurements/
H A Dmemory.py9 class Memory(page_test.PageTest): class in inherits:page_test.PageTest
11 super(Memory, self).__init__('RunStressMemory')
/external/chromium_org/base/memory/
H A Ddiscardable_memory_malloc.cc37 void* DiscardableMemoryMalloc::Memory() const { function in class:base::internal::DiscardableMemoryMalloc
H A Ddiscardable_memory_ashmem.cc52 void* DiscardableMemoryAshmem::Memory() const { function in class:base::internal::DiscardableMemoryAshmem
55 return ashmem_chunk_->Memory();
H A Ddiscardable_memory_emulated.cc83 void* DiscardableMemoryEmulated::Memory() const { function in class:base::internal::DiscardableMemoryEmulated
H A Ddiscardable_memory_ashmem_allocator.cc440 void* DiscardableAshmemChunk::Memory() const { function in class:base::internal::DiscardableAshmemChunk
/external/llvm/include/llvm/IR/
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.
38 friend class Memory;
45 class Memory { class in namespace:llvm::sys
/external/chromium_org/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/llvm/lib/Support/
H A DMemoryBuffer.cpp1 //===--- MemoryBuffer.cpp - Memory Buffer implementation ------------------===//
60 static void CopyStringRef(char *Memory, StringRef Data) { argument
61 memcpy(Memory, Data.data(), Data.size());
62 Memory[Data.size()] = 0; // Null terminate string.
168 /// \brief Memory maps a file descriptor using sys::fs::mapped_file_region.
/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/Target/X86/AsmParser/
H A DX86Operand.h27 Memory enumerator in enum:llvm::X86Operand::KindTy
104 assert(Kind == Memory && "Invalid access!");
108 assert(Kind == Memory && "Invalid access!");
112 assert(Kind == Memory && "Invalid access!");
116 assert(Kind == Memory && "Invalid access!");
120 assert(Kind == Memory && "Invalid access!");
207 bool isMem() const override { return Kind == Memory; }
209 return Kind == Memory && (!Mem.Size || Mem.Size == 8);
212 return Kind == Memory && (!Mem.Size || Mem.Size == 16);
215 return Kind == Memory
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h904 void reclaim(const void *Memory) { argument
905 Cache.push_back(const_cast<void *>(Memory));
/external/chromium_org/third_party/mesa/src/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/clang/lib/CodeGen/
H A DTargetInfo.cpp1200 Memory enumerator in enum:__anon17878::X86_64ABIInfo::Class
1210 /// call. In addition, this should never be Memory (the caller
1211 /// should just return Memory for the aggregate).
1247 /// be passed in Memory then at least the classification of \arg Lo
1248 /// will be Memory.
1470 // (a) If one of the classes is Memory, the whole argument is passed in
1489 if (Hi == Memory)
1490 Lo = Memory;
1492 Lo = Memory;
1494 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/chromium_org/third_party/mesa/src/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/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp525 struct MemoryOp Memory; member in union:__anon25988::ARMOperand::__anon25989
580 Memory = o.Memory;
733 if(!Memory.OffsetImm || Memory.OffsetRegNum) return false;
734 if(Memory.BaseRegNum != ARM::PC) return false;
735 Val = Memory.OffsetImm->getValue();
1086 return Memory.OffsetRegNum == 0 && Memory.OffsetImm == nullptr &&
1087 (alignOK || 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

Completed in 2589 milliseconds