Searched refs:MB (Results 1 - 25 of 96) sorted by relevance

1234

/external/llvm/tools/llvm-c-test/
H A Dobject.c21 LLVMMemoryBufferRef MB; local
26 if (LLVMCreateMemoryBufferWithSTDIN(&MB, &msg)) {
31 O = LLVMCreateObjectFile(MB);
53 LLVMMemoryBufferRef MB; local
59 if (LLVMCreateMemoryBufferWithSTDIN(&MB, &msg)) {
64 O = LLVMCreateObjectFile(MB);
H A Dmodule.c23 LLVMMemoryBufferRef MB; local
27 if (LLVMCreateMemoryBufferWithSTDIN(&MB, &msg)) {
32 if (LLVMParseBitcode(MB, &M, &msg)) {
34 LLVMDisposeMemoryBuffer(MB);
38 LLVMDisposeMemoryBuffer(MB);
/external/chromium_org/base/
H A Dsys_info_android.cc96 const int64 MB = 1024 * KB; local
97 const int64 GB = 1024 * MB;
106 unit_multiplier = MB;
126 // a typical android device will never have less than 48MB.
127 const int64 MB = 1024 * 1024; local
134 result = std::min<int64>(std::max<int64>(32 * MB, result), 1024 * MB) / MB;
143 // a typical android device will never have less than 24MB.
144 const int64 MB local
[all...]
/external/smack/src/org/xbill/DNS/
H A DMBRecord.java23 * Creates a new MB Record with the given data
28 super(name, Type.MB, dclass, ttl, mailbox, "mailbox");
/external/llvm/tools/lli/
H A DRemoteMemoryManager.cpp29 sys::Memory::releaseMappedMemory(I->MB);
65 sys::MemoryBlock MB = sys::Memory::allocateMappedMemory(Size, local
70 assert(!ec && MB.base());
76 Near = MB;
77 return MB;
101 unsigned Size = Section.MB.size();
118 unsigned Size = Section.MB.size();
140 EE->mapSectionAddress(const_cast<void*>(Offsets[i].first.MB.base()), Addr);
142 DEBUG(dbgs() << " Mapping local: " << Offsets[i].first.MB.base()
159 if (!Target->loadCode(RemoteAddr, Section.MB
[all...]
H A DRemoteMemoryManager.h34 : MB(mb), Alignment(a), IsCode(code) {}
36 sys::MemoryBlock MB; member in struct:llvm::RemoteMemoryManager::Allocation
/external/llvm/lib/ExecutionEngine/MCJIT/
H A DSectionMemoryManager.cpp52 sys::MemoryBlock &MB = MemGroup.FreeMem[i]; local
53 if (MB.size() >= RequiredSize) {
54 Addr = (uintptr_t)MB.base();
55 uintptr_t EndOfBlock = Addr + MB.size();
75 sys::MemoryBlock MB = sys::Memory::allocateMappedMemory(RequiredSize, local
86 MemGroup.Near = MB;
88 MemGroup.AllocatedMem.push_back(MB);
89 Addr = (uintptr_t)MB.base();
90 uintptr_t EndOfBlock = Addr + MB.size();
/external/llvm/include/llvm/Support/
H A DSpecialCaseList.h66 static SpecialCaseList *create(const MemoryBuffer *MB, std::string &Error);
90 bool parse(const MemoryBuffer *MB, std::string &Error);
/external/chromium_org/v8/test/cctest/
H A Dtest-platform-win32.cc42 v8::base::VirtualMemory* vm = new v8::base::VirtualMemory(1 * MB);
H A Dtest-platform-linux.cc43 v8::base::VirtualMemory* vm = new v8::base::VirtualMemory(1 * MB);
H A Dtest-spaces.cc214 const size_t code_range_size = 4 * MB;
218 address = code_range->AllocateRawMemory(code_range_size - MB,
219 code_range_size - MB, &size);
224 code_range_size - MB, code_range_size - MB, &null_size);
244 size_t reserve_area_size = 1 * MB;
253 const size_t code_range_size = 32 * MB;
/external/openssl/crypto/des/times/
H A Daix.cc9 TransfRate PCI : 132 MB/s
10 Memory : 96 MB
/external/tremolo/Tremolo/
H A Dasm_arm.h67 #define MB() asm volatile ("" : : : "memory") macro
83 MB();
102 MB();
121 MB();
/external/chromium_org/v8/src/heap/
H A Dgc-idle-time-handler.h85 static const size_t kMaximumMarkingStepSize = 700 * MB;
93 static const size_t kInitialConservativeMarkCompactSpeed = 2 * MB;
111 static const size_t kSmallHeapSize = 4 * kPointerSize * MB;
H A Dgc-idle-time-handler-unittest.cc39 static const size_t kSizeOfObjects = 100 * MB;
43 static const size_t kNewSpaceCapacity = 1 * MB;
89 size_t size = 100 * MB;
97 size_t size = 100 * MB;
98 size_t speed = 1 * MB;
113 size_t size = 1 * MB;
120 size_t size = 1 * MB;
121 size_t speed = 1 * MB;
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dtcmalloc_unittest.cc838 static const int MB = 1048576; local
839 void* a = malloc(MB);
840 void* b = malloc(MB);
841 CheckRangeCallback(a, base::MallocRange::INUSE, MB);
842 CheckRangeCallback(b, base::MallocRange::INUSE, MB);
844 CheckRangeCallback(a, base::MallocRange::FREE, MB);
845 CheckRangeCallback(b, base::MallocRange::INUSE, MB);
847 CheckRangeCallback(a, base::MallocRange::UNMAPPED, MB);
848 CheckRangeCallback(b, base::MallocRange::INUSE, MB);
850 CheckRangeCallback(a, base::MallocRange::UNMAPPED, MB);
871 static const int MB = 1048576; local
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dtcmalloc_unittest.cc838 static const int MB = 1048576; local
839 void* a = malloc(MB);
840 void* b = malloc(MB);
841 CheckRangeCallback(a, base::MallocRange::INUSE, MB);
842 CheckRangeCallback(b, base::MallocRange::INUSE, MB);
844 CheckRangeCallback(a, base::MallocRange::FREE, MB);
845 CheckRangeCallback(b, base::MallocRange::INUSE, MB);
847 CheckRangeCallback(a, base::MallocRange::UNMAPPED, MB);
848 CheckRangeCallback(b, base::MallocRange::INUSE, MB);
850 CheckRangeCallback(a, base::MallocRange::UNMAPPED, MB);
871 static const int MB = 1048576; local
[all...]
/external/llvm/lib/Support/
H A DSpecialCaseList.cpp65 const MemoryBuffer *MB, std::string &Error) {
67 if (!SCL->parse(MB, Error))
79 bool SpecialCaseList::parse(const MemoryBuffer *MB, std::string &Error) { argument
82 SplitString(MB->getBuffer(), Lines, "\n\r");
64 create( const MemoryBuffer *MB, std::string &Error) argument
/external/clang/lib/Rewrite/Core/
H A DRewriter.cpp234 StringRef MB = SourceMgr->getBufferData(FID); local
235 I->second.Initialize(MB.begin(), MB.end());
250 StringRef MB = SourceMgr->getBufferData(FID); local
261 while (isWhitespace(MB[i]))
263 indentSpace = MB.substr(lineOffs, i-lineOffs);
327 StringRef MB = SourceMgr->getBufferData(FID); local
328 return ReplaceText(start, origLength, MB.substr(newOffs, newLength));
380 StringRef MB = SourceMgr->getBufferData(FID); local
397 while (isWhitespace(MB[
[all...]
/external/llvm/unittests/Support/
H A DMemoryBufferTest.cpp80 ErrorOr<OwningBuffer> MB = MemoryBuffer::getFile(TestPath.c_str()); local
81 std::error_code EC = MB.getError();
84 const char *BufData = MB.get()->getBufferStart();
/external/llvm/lib/IRReader/
H A DIRReader.cpp109 std::unique_ptr<MemoryBuffer> MB(unwrap(MemBuf));
110 *OutM = wrap(ParseIR(MB.get(), Diag, *unwrap(ContextRef)));
/external/chromium_org/v8/src/
H A Dperf-jit.h67 static const int kLogBufferSize = 2 * MB;
H A Dregexp-stack.h81 static const size_t kMaximumStackSize = 64 * MB;
/external/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp115 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, nullptr); local
116 FunctionMemory.push_back(MB);
117 return (uint8_t*)MB.base();
125 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, nullptr, nullptr); local
126 DataMemory.push_back(MB);
127 return (uint8_t*)MB.base();
/external/clang/test/Layout/
H A Dms-x86-pack-and-align.cpp409 struct MB : virtual MA { struct in inherits:MA
415 // CHECK-NEXT: 0 | struct MB
416 // CHECK-NEXT: 0 | (MB vbtable pointer)
423 // CHECK-X64-NEXT: 0 | struct MB
424 // CHECK-X64-NEXT: 0 | (MB vbtable pointer)
564 sizeof(MB)+

Completed in 513 milliseconds

1234