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

123

/macosx-10.10.1/libarchive-30/libarchive/build/cmake/
H A DCheckFileOffsetBits.c4 #define MB ((off_t)1024 * KB) macro
5 #define GB ((off_t)1024 * MB)
/macosx-10.10.1/JavaScriptCore-7600.1.17/heap/
H A DHeapStatistics.h48 static const size_t MB = 1024 * KB; member in class:JSC::HeapStatistics
49 static const size_t GB = 1024 * MB;
H A DEdenGCActivityCallback.cpp62 return std::min((static_cast<double>(bytes) / MB) * Options::percentCPUPerMBForEdenTimer(), Options::collectionTimerMaxPercentCPU());
H A DSuperRegion.cpp34 const uint64_t SuperRegion::s_fixedHeapMemoryPoolSize = 4 * 1024 * static_cast<uint64_t>(MB);
H A DFullGCActivityCallback.cpp77 return std::min((static_cast<double>(bytes) / MB) * Options::percentCPUPerMBForFullTimer(), Options::collectionTimerMaxPercentCPU());
H A DHeapStatistics.cpp154 multiplier = MB;
/macosx-10.10.1/OpenSSL098-52/src/crypto/des/times/
H A Daix.cc9 TransfRate PCI : 132 MB/s
10 Memory : 96 MB
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dgetbsize.c52 #define MB (1024L * 1024L) macro
76 max = MAXB / MB;
77 mul = MB;
/macosx-10.10.1/llvmCore-3425.0.34/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp76 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, 0, 0); local
77 FunctionMemory.push_back(MB);
78 return (uint8_t*)MB.base();
84 sys::MemoryBlock MB = sys::Memory::AllocateRWX(Size, 0, 0); local
85 DataMemory.push_back(MB);
86 return (uint8_t*)MB.base();
/macosx-10.10.1/bmalloc-7600.1.17/bmalloc/
H A DSizes.h43 static const size_t MB = kB * kB; member in namespace:bmalloc::Sizes
48 static const size_t superChunkSize = 32 * MB;
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp81 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) { argument
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; local
432 if (InsertMask && isRunOfOnes(InsertMask, MB, ME)) {
452 SDValue Ops[] = { Op0, Op1, getI32Imm(SH), getI32Imm(MB),
347 isRotateAndMask(SDNode *N, unsigned Mask, bool isShiftMask, unsigned &SH, unsigned &MB, unsigned &ME) argument
977 unsigned Imm, Imm2, SH, MB, ME; local
1015 unsigned MB, ME; local
1036 unsigned Imm, SH, MB, ME; local
1048 unsigned Imm, SH, MB, ME; local
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/mach/i386/
H A Dvm_param.h161 #define VM_USRSTACK32 ((vm_offset_t) 0xC0000000) /* ASLR slides stack down by up to 1 MB */
173 #define MB (1024*KB) macro
174 #define GB (1024*MB)
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DRAMSize.cpp42 static const size_t ramSizeGuess = 128 * MB;
H A DStdLibExtras.h133 static const size_t MB = 1024 * 1024; member in namespace:WTF
415 using WTF::MB;
/macosx-10.10.1/llvmCore-3425.0.34/tools/lli/
H A Dlli.cpp304 sys::MemoryBlock &MB = FreeCodeMem[i]; local
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); local
320 AllocatedCodeMem.push_back(MB);
321 Addr = (uintptr_t)MB.base();
322 uintptr_t EndOfBlock = Addr + MB.size();
/macosx-10.10.1/rsync-45/rsync/support/
H A Drsyncstats151 Date Files Sent MB Sent Files Sent Bytes Sent
178 Archive Section NFiles MB Files Bytes
212 Domain Name Files Sent MB Sent Files Sent Bytes Sent
246 Time Files Sent MB Sent Files Sent Bytes Sent
/macosx-10.10.1/libarchive-30/libarchive/libarchive/test/
H A Dtest_tar_large.c72 #define MB ((int64_t)1024 * KB) macro
73 #define GB ((int64_t)1024 * MB)
224 filedatasize = (size_t)(1 * MB);
/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Dmmix-opc.c80 #define MB mmix_type_memaccess_byte macro
204 {"ldb", Z (0x80), OP (regs_z_opt), MB},
207 {"ldbu", Z (0x82), OP (regs_z_opt), MB},
233 {"stb", Z (0xa0), OP (regs_z_opt), MB},
236 {"stbu", Z (0xa2), OP (regs_z_opt), MB},
/macosx-10.10.1/llvmCore-3425.0.34/utils/FileCheck/
H A DFileCheck.cpp462 static MemoryBuffer *CanonicalizeInputFile(MemoryBuffer *MB) { argument
464 NewFile.reserve(MB->getBufferSize());
466 for (const char *Ptr = MB->getBufferStart(), *End = MB->getBufferEnd();
488 MemoryBuffer::getMemBufferCopy(NewFile.str(), MB->getBufferIdentifier());
490 delete MB;
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/PowerPC/InstPrinter/
H A DPPCInstPrinter.cpp35 unsigned char MB = MI->getOperand(3).getImm(); local
38 if (SH <= 31 && MB == 0 && ME == (31-SH)) {
41 if (SH <= 31 && MB == (32-SH) && ME == 31) {
/macosx-10.10.1/llvmCore-3425.0.34/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp98 MemoryBuffer* MB = MemoryBuffer::getMemBuffer(StringRef(Buffer.data(), local
101 if (Dyld.loadObject(MB))
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/MBlaze/
H A DMBlazeFrameLowering.cpp54 for (MachineFunction::iterator MB=MF.begin(), ME=MF.end(); MB!=ME; ++MB) {
55 MachineBasicBlock::iterator MBB = MB->begin();
56 const MachineBasicBlock::iterator MBE = MB->end();
/macosx-10.10.1/libresolv-57/
H A Ddns_util.h225 dns_domain_name_record_t *MB; member in union:__anon9394::__anon9395
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Dtree.tcl60 set size [format %.1f\ MB [expr {$size/1024/1024.}]]
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/
H A Di386_vm_init.c607 sane_size = (sane_size + 128 * MB - 1) & ~((uint64_t)(128 * MB - 1));
669 kprintf("Physical memory %llu MB\n", sane_size/MB);
676 max_valid_dma_address = ((uint64_t) maxdmaaddr) * MB;

Completed in 580 milliseconds

123