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

1 2

  /frameworks/compile/llvm-ndk-cc/
llvm-ndk-link.cpp 36 llvm::OwningPtr<llvm::MemoryBuffer> MB;
37 llvm::MemoryBuffer::getFile(Filename, MB);
38 llvm::Module* M = llvm::ParseBitcodeFile(MB.get(), Ctx, &ErrMsg);
  /gdk/sources/llvm-ndk-cc/
llvm-ndk-link.cpp 35 llvm::OwningPtr<llvm::MemoryBuffer> MB;
36 llvm::MemoryBuffer::getFile(Filename, MB);
37 llvm::Module* M = llvm::ParseBitcodeFile(MB.get(), Ctx, &ErrMsg);
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 98 MemoryBuffer* MB = MemoryBuffer::getMemBuffer(StringRef(Buffer.data(),
101 if (Dyld.loadObject(MB))
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 76 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, 0, 0);
77 FunctionMemory.push_back(MB);
78 return (uint8_t*)MB.base();
84 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, 0, 0);
85 DataMemory.push_back(MB);
86 return (uint8_t*)MB.base();
  /external/tremolo/Tremolo/
asm_arm.h 67 #define MB() asm volatile ("" : : : "memory")
83 MB();
102 MB();
121 MB();
misc.h 143 #define MB()
  /frameworks/compile/slang/
llvm-rs-link.cpp 109 llvm::OwningPtr<MemoryBuffer> MB;
111 if (llvm::error_code EC = MemoryBuffer::getFile(F, MB)) {
115 return MB.take();
118 static inline Module *ParseBitcodeFromMemoryBuffer(MemoryBuffer *MB,
121 Module *M = ParseBitcodeFile(MB, Context, &Err);
124 errs() << "Corrupted bitcode file `" << MB->getBufferIdentifier()
133 MemoryBuffer *MB = LoadFileIntoMemory(F);
134 if (MB == NULL)
137 Module *M = ParseBitcodeFromMemoryBuffer(MB, Context);
139 delete MB;
    [all...]
  /cts/suite/pts/deviceTests/dram/src/com/android/pts/dram/
BandwidthTest.java 39 private static final int MB = 1024 * 1024;
74 doRunMemcpy(1 * MB);
78 doRunMemcpy(2 * MB);
82 doRunMemcpy(4 * MB);
86 doRunMemcpy(8 * MB);
90 doRunMemcpy(16 * MB);
101 getReportLog().printArray("MB/s", mbps, true);
  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.cpp 35 unsigned char MB = MI->getOperand(3).getImm();
38 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
41 if (SH <= 31 && MB == (32-SH) && ME == 31) {
  /packages/apps/Email/src/com/android/email/activity/
UiUtilities.java 32 * Formats the given size as a String in bytes, kB, MB or GB. Ex: 12,315,000 = 11 MB
37 final long MB = (KB * 1024);
38 final long GB = (MB * 1024);
46 } else if (size < MB) {
51 value = (int) (size / MB);
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp 151 // M = mask(MB,ME)
154 // M = mask((ME+1)&31, (MB-1)&31)
175 unsigned MB = MI->getOperand(4).getImm();
187 .addImm((MB-1) & 31);
199 MI->getOperand(5).setImm((MB-1) & 31);
PPCISelDAGToDAG.cpp 81 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
87 unsigned &SH, unsigned &MB, unsigned &ME);
326 bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) {
329 MB = CountLeadingZeros_32(Val);
339 MB = CountLeadingZeros_32((Val - 1) ^ Val) + 1;
349 unsigned &MB, unsigned &ME) {
384 return isRunOfOnes(Mask, MB, ME);
431 unsigned MB, ME;
432 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
452 SDValue Ops[] = { Op0, Op1, getI32Imm(SH), getI32Imm(MB),
    [all...]
  /external/llvm/tools/lli/
lli.cpp 304 sys::MemoryBlock &MB = FreeCodeMem[i];
305 if (MB.size() >= NeedAllocate) {
306 Addr = (uintptr_t)MB.base();
307 uintptr_t EndOfBlock = Addr + MB.size();
318 sys::MemoryBlock MB = sys::Memory::AllocateRWX(NeedAllocate, 0, 0);
320 AllocatedCodeMem.push_back(MB);
321 Addr = (uintptr_t)MB.base();
322 uintptr_t EndOfBlock = Addr + MB.size();
  /frameworks/base/libs/hwui/
Properties.h 129 #define MB(s) s * 1024 * 1024
  /packages/apps/Camera/jni/feature_stab/src/dbreg/
dbreg.cpp 250 #define MB 0
271 #if MB
499 #if MB
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
dbreg.cpp 250 #define MB 0
271 #if MB
498 #if MB
  /packages/apps/Phone/src/com/android/phone/
DataUsageListener.java 215 long MB = 1024 * KB;
216 long GB = 1024 * MB;
222 } else if (data < MB) {
225 ret = (data / MB) + " MB";
  /external/clang/lib/Rewrite/Core/
Rewriter.cpp 228 StringRef MB = SourceMgr->getBufferData(FID);
229 I->second.Initialize(MB.begin(), MB.end());
244 StringRef MB = SourceMgr->getBufferData(FID);
255 while (isWhitespace(MB[i]))
257 indentSpace = MB.substr(lineOffs, i-lineOffs);
321 StringRef MB = SourceMgr->getBufferData(FID);
322 return ReplaceText(start, origLength, MB.substr(newOffs, newLength));
371 StringRef MB = SourceMgr->getBufferData(FID);
388 while (isWhitespace(MB[i])
    [all...]
  /external/v8/src/
globals.h 222 const int MB = KB * KB;
  /frameworks/base/core/jni/android/graphics/
TextLayoutCache.h 57 #define MB(s) s * 1024 * 1024
59 // Define the default cache size in Mb
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
ps2esdi.h 80 #define MB 1024*1024
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
ps2esdi.h 80 #define MB 1024*1024
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
ps2esdi.h 80 #define MB 1024*1024
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsMessageTest.java 35 private static final String MB = DMB;
286 assertEquals(MB, sms.getEmailBody());
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 322 static bool isRunOfOnes(ConstantInt *Val, uint32_t &MB, uint32_t &ME) {
328 MB = BitWidth - ((V - 1) ^ V).countLeadingZeros();
366 uint32_t MB = 0, ME = 0;
367 if (isRunOfOnes(Mask, MB, ME)) { // begin/end bit of run, inclusive
369 APInt Mask(APInt::getLowBitsSet(BitWidth, MB-1));
    [all...]

Completed in 469 milliseconds

1 2