|   /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/ | 
| MappedByteBufferTest.java  | 217         MappedByteBuffer mbb = ch.map(MapMode.READ_WRITE, 0L, 100L);  local  220         mbb.putInt(1, 1); 221         mbb.position(50); 222         mbb.putInt(50); 224         mbb.flip(); 225         mbb.get(); 226         assertEquals(1, mbb.getInt()); 228         mbb.position(50); 229         assertEquals(50, mbb.getInt());
  | 
|   /external/clang/test/CodeGenCXX/ | 
| mangle-ms-back-references.cpp  | 27   void mbb(bool a, bool b) {}  function in struct:S  41   b->mbb(false, false); 42 // CHECK: "\01?mbb@S@@QAEX_N0@Z"
  | 
|   /external/llvm/include/llvm/CodeGen/ | 
| LiveIntervalAnalysis.h  | 135     /// adds a live range from that instruction to the end of its MBB. 194     SlotIndex getMBBStartIdx(const MachineBasicBlock *mbb) const { 195       return Indexes->getMBBStartIdx(mbb); 199     SlotIndex getMBBEndIdx(const MachineBasicBlock *mbb) const { 200       return Indexes->getMBBEndIdx(mbb); 204                        const MachineBasicBlock *mbb) const { 205       return li.liveAt(getMBBStartIdx(mbb)); 209                         const MachineBasicBlock *mbb) const { 210       return li.liveAt(getMBBEndIdx(mbb).getPrevSlot()); 217     void insertMBBInMaps(MachineBasicBlock *MBB) {     [all...] | 
| SlotIndexes.h  | 349     /// MBBRanges - Map MBB number to (start, stop) indexes. 353     /// and MBB id. 392     void repairIndexesInRange(MachineBasicBlock *MBB, 443       const MachineBasicBlock *MBB = MI->getParent(); 444       assert(MBB && "MI must be inserted inna basic block"); 445       MachineBasicBlock::const_iterator I = MI, B = MBB->begin(); 448           return getMBBStartIdx(MBB); 460       const MachineBasicBlock *MBB = MI->getParent(); 461       assert(MBB && "MI must be inserted inna basic block"); 462       MachineBasicBlock::const_iterator I = MI, E = MBB->end()     [all...] | 
| RegisterScavenging.h  | 35   MachineBasicBlock *MBB; 76     : MBB(NULL), NumPhysRegs(0), Tracking(false) {} 80   void enterBasicBlock(MachineBasicBlock *mbb); 86   /// forward - Move the internal MBB iterator and update register states. 89   /// forward - Move the internal MBB iterator and update register states until 92     if (!Tracking && MBB->begin() != I) forward(); 105   /// skipTo - Move the internal MBB iterator but do not update register states.
  | 
| RegisterPressure.h  | 181   const MachineBasicBlock *MBB; 211     MF(0), TRI(0), RCI(0), LIS(0), MBB(0), P(rp), RequireIntervals(true), 215     MF(0), TRI(0), RCI(0), LIS(0), MBB(0), P(rp), RequireIntervals(false), 219             const LiveIntervals *lis, const MachineBasicBlock *mbb,
  | 
| SelectionDAGNodes.h  |     [all...] | 
|   /external/llvm/lib/CodeGen/ | 
| CalcSpillWeights.cpp  | 117   MachineBasicBlock *mbb = 0;  local  143       if (mi->getParent() != mbb) { 144         mbb = mi->getParent(); 145         loop = Loops.getLoopFor(mbb); 146         isExiting = loop ? loop->isLoopExiting(mbb) : false; 156       if (writes && isExiting && LIS.isLiveOutOfMBB(li, mbb))
  | 
| SlotIndexes.cpp  | 45   // Iterate over all MBBs, and within each MBB all MIs, keeping the MI 59          "Index -> MBB mapping non-empty at initial numbering?"); 61          "MBB -> Index mapping non-empty at initial numbering?"); 74     MachineBasicBlock *mbb = &*mbbItr;  local  76     // Insert an index for the MBB start. 79     for (MachineBasicBlock::iterator miItr = mbb->begin(), miEnd = mbb->end(); 96     MBBRanges[mbb->getNumber()].first = blockStartIndex; 97     MBBRanges[mbb->getNumber()].second = SlotIndex(&indexList.back(), 99     idx2MBBMap.push_back(IdxMBBPair(blockStartIndex, mbb));     [all...] | 
| RegisterScavenging.cpp  | 56   if (!MBB) 60   for (MachineBasicBlock::livein_iterator I = MBB->livein_begin(), 61          E = MBB->livein_end(); I != E; ++I) 65   BitVector PR = MBB->getParent()->getFrameInfo()->getPristineRegs(MBB); 70 void RegScavenger::enterBasicBlock(MachineBasicBlock *mbb) { 71   MachineFunction &MF = *mbb->getParent(); 86   if (!MBB) { 100   MBB = mbb;     [all...] | 
| RegAllocPBQP.cpp  | 330     const MachineBasicBlock *mbb = &*mbbItr;  local  332     for (MachineBasicBlock::const_iterator miItr = mbb->begin(), 333                                            miEnd = mbb->end(); 353                                                    mbfi->getBlockFreq(mbb));
  | 
| RegisterPressure.cpp  | 209                               const MachineBasicBlock *mbb, 217   MBB = mbb; 263   while (IdxPos != MBB->end() && IdxPos->isDebugValue()) 265   if (IdxPos == MBB->end()) 266     return LIS->getMBBEndIdx(MBB); 435   if (CurrPos == MBB->begin()) { 449   while (CurrPos != MBB->begin() && CurrPos->isDebugValue()); 509   if (CurrPos == MBB->end()) { 569   while (CurrPos != MBB->end() && CurrPos->isDebugValue())     [all...] | 
| RegisterCoalescer.cpp  | 123     /// copyCoalesceInMBB - Coalesce copies in the specified MBB, putting 125     void copyCoalesceInMBB(MachineBasicBlock *MBB); 240 static bool isSplitEdge(const MachineBasicBlock *MBB) { 241   if (MBB->pred_size() != 1 || MBB->succ_size() != 1) 244   for (MachineBasicBlock::const_iterator MII = MBB->begin(), E = MBB->end(); 645   MachineBasicBlock *MBB = DefMI->getParent(); 656     MBB->insert(Pos, NewMI); 657     MBB->erase(DefMI)     [all...] | 
|   /external/llvm/lib/Target/ARM/ | 
| ARMConstantPoolValue.h  | 195   const MachineBasicBlock *MBB; // Machine basic block. 197   ARMConstantPoolMBB(LLVMContext &C, const MachineBasicBlock *mbb, unsigned id, 203                                     const MachineBasicBlock *mbb, 206   const MachineBasicBlock *getMBB() const { return MBB; }
  | 
| ARMConstantPoolValue.cpp  | 257                                        const MachineBasicBlock *mbb, 263     MBB(mbb) {} 266                                                const MachineBasicBlock *mbb, 269   return new ARMConstantPoolMBB(C, mbb, ID, PCAdj, ARMCP::no_modifier, false); 284       if (APMBB->MBB == MBB && equals(APMBB)) 294   return ACPMBB && ACPMBB->MBB == MBB && 299   ID.AddPointer(MBB);     [all...] | 
|   /external/guava/guava/src/com/google/common/io/ | 
| Files.java  | 666       MappedByteBuffer mbb = map(raf, mode, size); 668       return mbb; 680       MappedByteBuffer mbb = channel.map(mode, 0, size); 682       return mbb;
  | 
|   /external/llvm/lib/CodeGen/SelectionDAG/ | 
| InstrEmitter.h  | 37   MachineBasicBlock *MBB; 128   MachineBasicBlock *getBlock() { return MBB; } 135   InstrEmitter(MachineBasicBlock *mbb, MachineBasicBlock::iterator insertpos);
  | 
| InstrEmitter.cpp  | 176     BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY), 280     BuildMI(*MBB, InsertPos, Op.getDebugLoc(), 322       BuildMI(*MBB, InsertPos, Op.getNode()->getDebugLoc(), 443   BuildMI(*MBB, InsertPos, DL, TII->get(TargetOpcode::COPY), NewReg) 492       BuildMI(*MBB, InsertPos, Node->getDebugLoc(), 508       BuildMI(*MBB, InsertPos, Node->getDebugLoc(), 555     MBB->insert(InsertPos, MIB); 579   BuildMI(*MBB, InsertPos, Node->getDebugLoc(), TII->get(TargetOpcode::COPY), 623   MBB->insert(InsertPos, MIB); 766   MBB->insert(InsertPos, MIB)     [all...] | 
|   /external/chromium_org/third_party/openssl/openssl/crypto/ | 
| ia64cpuid.S  | 145 { .mbb;	add		r33=-1,r33	   // len-- 164 { .mbb;	cmp.eq		p6,p7=r0,r33
  | 
|   /external/openssl/crypto/ | 
| ia64cpuid.S  | 145 { .mbb;	add		r33=-1,r33	   // len-- 164 { .mbb;	cmp.eq		p6,p7=r0,r33
  | 
|   /libcore/luni/src/test/java/libcore/java/nio/ | 
| BufferTest.java  | 45             MappedByteBuffer mbb = raf.getChannel().map(FileChannel.MapMode.READ_ONLY, 0, 65536);  local  52             mbb.get(buf1); 70             MappedByteBuffer mbb = raf.getChannel()  local  78             mbb.put(buf1); 80             mbb.position(0); 83             mbb.get(buf2);
  | 
|   /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/ | 
| ia64.S  | 214 { .mbb;	nop.b		0x0 258 { .mbb;	(p21)	st8		[r14]=r42,8	  // *(rp++)=r 267 { .mbb;	nop.b		0x0     [all...] | 
| ia64-mont.pl  | 303 { .mbb;	add		lc=4,lc
  | 
|   /external/openssl/crypto/bn/asm/ | 
| ia64.S  | 214 { .mbb;	nop.b		0x0 258 { .mbb;	(p21)	st8		[r14]=r42,8	  // *(rp++)=r 267 { .mbb;	nop.b		0x0     [all...] | 
| ia64-mont.pl  | 303 { .mbb;	add		lc=4,lc
  |