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

1 2 3 4 5 6 7

  /external/llvm/tools/llvm-c-test/
object.c 21 LLVMMemoryBufferRef MB;
26 if (LLVMCreateMemoryBufferWithSTDIN(&MB, &msg)) {
31 O = LLVMCreateObjectFile(MB);
53 LLVMMemoryBufferRef MB;
59 if (LLVMCreateMemoryBufferWithSTDIN(&MB, &msg)) {
64 O = LLVMCreateObjectFile(MB);
module.c 23 LLVMMemoryBufferRef MB;
27 if (LLVMCreateMemoryBufferWithSTDIN(&MB, &msg)) {
32 if (LLVMParseBitcode(MB, &M, &msg)) {
34 LLVMDisposeMemoryBuffer(MB);
38 LLVMDisposeMemoryBuffer(MB);
  /art/runtime/gc/space/
space_test.h 132 std::unique_ptr<Space> space(create_space("test", 16 * MB, 32 * MB, 32 * MB, nullptr));
137 std::unique_ptr<Space> space(create_space("test", 16 * MB, 16 * MB, 16 * MB, nullptr));
142 std::unique_ptr<Space> space(create_space("test", 32 * MB, 16 * MB, 16 * MB, nullptr));
147 std::unique_ptr<Space> space(create_space("test", 16 * MB, 16 * MB, 32 * MB, nullptr))
    [all...]
large_object_space_test.cc 41 los = space::FreeListSpace::Create("large object space", nullptr, 128 * MB);
88 mirror::Object* obj = los->Alloc(Thread::Current(), 100 * MB, &bytes_allocated, nullptr);
131 los = space::FreeListSpace::Create("large object space", nullptr, 128 * MB);
  /external/llvm/include/llvm/Support/
SpecialCaseList.h 66 static SpecialCaseList *create(const MemoryBuffer *MB, std::string &Error);
90 bool parse(const MemoryBuffer *MB, std::string &Error);
  /external/chromium_org/base/
sys_info_android.cc 95 const int64 MB = 1024 * KB;
96 const int64 GB = 1024 * MB;
105 unit_multiplier = MB;
125 // a typical android device will never have less than 48MB.
126 const int64 MB = 1024 * 1024;
133 result = std::min<int64>(std::max<int64>(32 * MB, result), 1024 * MB) / MB;
142 // a typical android device will never have less than 24MB.
143 const int64 MB = 1024 * 1024
    [all...]
  /cts/suite/cts/deviceTests/dram/src/com/android/cts/dram/
BandwidthTest.java 42 private static final int MB = 1024 * 1024;
51 MemoryNative.runMemcpy(2 * MB, 100);
87 doRunMemcpy(1 * MB);
91 doRunMemcpy(2 * MB);
95 doRunMemcpy(4 * MB);
99 doRunMemcpy(8 * MB);
103 doRunMemcpy(16 * MB);
139 doRunMemset(1 * MB);
143 doRunMemset(2 * MB);
147 doRunMemset(4 * MB);
    [all...]
  /external/smack/src/org/xbill/DNS/
MBRecord.java 23 * Creates a new MB Record with the given data
28 super(name, Type.MB, dclass, ttl, mailbox, "mailbox");
  /external/llvm/tools/lli/
RemoteMemoryManager.cpp 29 sys::Memory::releaseMappedMemory(I->MB);
65 sys::MemoryBlock MB = sys::Memory::allocateMappedMemory(Size,
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.base(), Section.MB.size())
    [all...]
RemoteMemoryManager.h 33 Allocation(sys::MemoryBlock mb, unsigned a, bool code)
34 : MB(mb), Alignment(a), IsCode(code) {}
36 sys::MemoryBlock MB;
  /external/llvm/lib/ExecutionEngine/MCJIT/
SectionMemoryManager.cpp 52 sys::MemoryBlock &MB = MemGroup.FreeMem[i];
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,
86 MemGroup.Near = MB;
88 MemGroup.AllocatedMem.push_back(MB);
89 Addr = (uintptr_t)MB.base();
90 uintptr_t EndOfBlock = Addr + MB.size();
  /external/chromium_org/third_party/openssl/openssl/crypto/des/times/
aix.cc 9 TransfRate PCI : 132 MB/s
10 Memory : 96 MB
  /external/openssl/crypto/des/times/
aix.cc 9 TransfRate PCI : 132 MB/s
10 Memory : 96 MB
  /packages/apps/Email/src/com/android/email/activity/
UiUtilities.java 31 * Formats the given size as a String in bytes, kB, MB or GB. Ex: 12,315,000 = 11 MB
36 final long MB = (KB * 1024);
37 final long GB = (MB * 1024);
45 } else if (size < MB) {
50 value = (int) (size / MB);
  /system/core/toolbox/upstream-netbsd/lib/libc/gen/
getbsize.c 62 #define MB (1024L * 1024L)
86 max = MAXB / MB;
87 mul = MB;
  /external/chromium_org/v8/test/cctest/
test-platform-linux.cc 43 VirtualMemory* vm = new VirtualMemory(1 * MB);
test-platform-win32.cc 42 VirtualMemory* vm = new VirtualMemory(1 * MB);
  /external/tremolo/Tremolo/
asm_arm.h 67 #define MB() asm volatile ("" : : : "memory")
83 MB();
102 MB();
121 MB();
  /cts/suite/cts/deviceTests/simplecpu/src/com/android/cts/simplecpu/
SimpleCpuTest.java 36 private static final int MB = 1024 * 1024;
56 doTestSort(NUMBER_REPEAT, 1 * MB);
88 CpuNative.runSort(1 * MB, 10);
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
tcmalloc_unittest.cc 838 static const int MB = 1048576;
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);
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
tcmalloc_unittest.cc 838 static const int MB = 1048576;
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);
    [all...]
  /external/llvm/lib/Support/
SpecialCaseList.cpp 65 const MemoryBuffer *MB, std::string &Error) {
67 if (!SCL->parse(MB, Error))
79 bool SpecialCaseList::parse(const MemoryBuffer *MB, std::string &Error) {
82 SplitString(MB->getBuffer(), Lines, "\n\r");
  /external/clang/lib/Rewrite/Core/
Rewriter.cpp 234 StringRef MB = SourceMgr->getBufferData(FID);
235 I->second.Initialize(MB.begin(), MB.end());
250 StringRef MB = SourceMgr->getBufferData(FID);
261 while (isWhitespace(MB[i]))
263 indentSpace = MB.substr(lineOffs, i-lineOffs);
327 StringRef MB = SourceMgr->getBufferData(FID);
328 return ReplaceText(start, origLength, MB.substr(newOffs, newLength));
380 StringRef MB = SourceMgr->getBufferData(FID);
397 while (isWhitespace(MB[i])
    [all...]
  /art/runtime/gc/accounting/
space_bitmap_test.cc 34 size_t heap_capacity = 16 * MB;
61 size_t heap_capacity = 16 * MB;
116 size_t heap_capacity = 16 * MB;
  /external/llvm/unittests/Support/
MemoryBufferTest.cpp 80 ErrorOr<OwningBuffer> MB = MemoryBuffer::getFile(TestPath.c_str());
81 std::error_code EC = MB.getError();
84 const char *BufData = MB.get()->getBufferStart();

Completed in 1011 milliseconds

1 2 3 4 5 6 7