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

12345

/external/chromium_org/base/
H A Dsys_info_android.cc53 const int64 MB = 1024 * KB; local
54 const int64 GB = 1024 * MB;
63 unit_multiplier = MB;
83 // a typical android device will never have less than 48MB.
84 const int64 MB = 1024 * 1024; local
91 result = std::min<int64>(std::max<int64>(32 * MB, result), 1024 * MB) / MB;
100 // a typical android device will never have less than 24MB.
101 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/lib/ExecutionEngine/MCJIT/
H A DSectionMemoryManager.cpp50 sys::MemoryBlock &MB = MemGroup.FreeMem[i]; local
51 if (MB.size() >= RequiredSize) {
52 Addr = (uintptr_t)MB.base();
53 uintptr_t EndOfBlock = Addr + MB.size();
73 sys::MemoryBlock MB = sys::Memory::allocateMappedMemory(RequiredSize, local
84 MemGroup.Near = MB;
86 MemGroup.AllocatedMem.push_back(MB);
87 Addr = (uintptr_t)MB.base();
88 uintptr_t EndOfBlock = Addr + MB.size();
/external/llvm/include/llvm/Transforms/Utils/
H A DSpecialCaseList.h61 SpecialCaseList(const MemoryBuffer *MB);
95 void init(const MemoryBuffer *MB);
/external/chromium_org/third_party/openssl/openssl/crypto/des/times/
H A Daix.cc9 TransfRate PCI : 132 MB/s
10 Memory : 96 MB
/external/chromium_org/v8/test/cctest/
H A Dtest-platform-win32.cc42 VirtualMemory* vm = new VirtualMemory(1 * MB);
H A Dtest-platform-linux.cc43 VirtualMemory* vm = new VirtualMemory(1 * MB);
/external/openssl/crypto/des/times/
H A Daix.cc9 TransfRate PCI : 132 MB/s
10 Memory : 96 MB
/external/v8/test/cctest/
H A Dtest-platform-win32.cc17 VirtualMemory* vm = new VirtualMemory(1 * MB);
H A Dtest-platform-linux.cc71 VirtualMemory* vm = new VirtualMemory(1 * MB);
H A Dtest-platform-nullos.cc70 VirtualMemory* vm = new VirtualMemory(1 * MB);
/external/llvm/tools/lli/
H A DRecordingMemoryManager.cpp54 sys::MemoryBlock MB = sys::Memory::allocateMappedMemory(Size, local
59 assert(!ec && MB.base());
65 Near = MB;
66 return MB;
/external/tremolo/Tremolo/
H A Dasm_arm.h67 #define MB() asm volatile ("" : : : "memory") macro
83 MB();
102 MB();
121 MB();
/external/clang/lib/Rewrite/Core/
H A DRewriter.cpp230 StringRef MB = SourceMgr->getBufferData(FID); local
231 I->second.Initialize(MB.begin(), MB.end());
246 StringRef MB = SourceMgr->getBufferData(FID); local
257 while (isWhitespace(MB[i]))
259 indentSpace = MB.substr(lineOffs, i-lineOffs);
323 StringRef MB = SourceMgr->getBufferData(FID); local
324 return ReplaceText(start, origLength, MB.substr(newOffs, newLength));
373 StringRef MB = SourceMgr->getBufferData(FID); local
390 while (isWhitespace(MB[
[all...]
/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/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp84 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, 0, 0); local
85 FunctionMemory.push_back(MB);
86 return (uint8_t*)MB.base();
93 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, 0, 0); local
94 DataMemory.push_back(MB);
95 return (uint8_t*)MB.base();
/external/llvm/lib/Support/
H A DLockFileManager.cpp40 OwningPtr<MemoryBuffer> MB;
41 if (MemoryBuffer::getFile(LockFileName, MB))
46 tie(Hostname, PIDStr) = getToken(MB->getBuffer(), " ");
/external/chromium_org/v8/src/
H A Dregexp-stack.h104 static const size_t kMaximumStackSize = 64 * MB;
H A Dzone.h99 static const int kMaximumSegmentSize = 1 * MB;
105 static const int kExcessLimit = 256 * MB;
/external/llvm/lib/Transforms/Utils/
H A DSpecialCaseList.cpp64 SpecialCaseList::SpecialCaseList(const MemoryBuffer *MB) { argument
65 init(MB);
68 void SpecialCaseList::init(const MemoryBuffer *MB) { argument
71 SplitString(MB->getBuffer(), Lines, "\n\r");
/external/v8/src/
H A Dregexp-stack.h104 static const size_t kMaximumStackSize = 64 * MB;
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp93 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
99 unsigned &SH, unsigned &MB, unsigned &ME);
332 bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) { argument
338 MB = countLeadingZeros(Val);
348 MB = countLeadingZeros((Val - 1) ^ Val) + 1;
358 unsigned &MB, unsigned &ME) {
393 return isRunOfOnes(Mask, MB, ME);
440 unsigned MB, ME; local
441 if (isRunOfOnes(InsertMask, MB, ME)) {
461 SDValue Ops[] = { Op0, Op1, getI32Imm(SH), getI32Imm(MB),
356 isRotateAndMask(SDNode *N, unsigned Mask, bool isShiftMask, unsigned &SH, unsigned &MB, unsigned &ME) argument
1098 unsigned Imm, Imm2, SH, MB, ME; local
1136 unsigned MB, ME; local
1157 unsigned Imm, SH, MB, ME; local
1169 unsigned Imm, SH, MB, ME; local
[all...]
/external/qemu/tcg/ppc/
H A Dtcg-target.c401 #define MB(b) ((b)<<6) macro
560 | MB (32 - (CPU_TLB_BITS + CPU_TLB_ENTRY_BITS))
575 | MB ((32 - s_bits) & 31)
756 | MB (32 - (CPU_TLB_ENTRY_BITS + CPU_TLB_BITS))
771 | MB ((32 - opc) & 31)
808 | MB (24)
816 | MB (16)
1153 | MB (5)
1220 | MB (31)
1240 | MB (3
[all...]
/external/llvm/
H A Dllvm-device-build.mk14 # The three inline options together reduce libbcc.so almost 1MB.

Completed in 538 milliseconds

12345