Searched defs:BI (Results 1 - 25 of 127) sorted by relevance

123456

/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.equal/
H A Dequal.pass.cpp34 typedef bidirectional_iterator<int*> BI; typedef
42 && !std::equal(BI(std::begin(ib)), BI(std::end(ib)), BI(std::begin(ic)), BI(std::end(ic)))
H A Dequal_pred.pass.cpp41 typedef bidirectional_iterator<int*> BI; typedef
49 && !std::equal(BI(std::begin(ib)), BI(std::end(ib)), BI(std::begin(ic)), BI(std::end(ic)), eq)
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.first.of/
H A Dfind_first_of.pass.cpp29 typedef bidirectional_iterator<int*> BI; typedef
34 && (std::find_first_of(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ia)), BI(std::end(ia))) == BI(ic+1))
35 && (std::find_first_of(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ib)), BI(st
[all...]
H A Dfind_first_of_pred.pass.cpp31 typedef bidirectional_iterator<int*> BI; typedef
36 && (std::find_first_of(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ia)), BI(std::end(ia)), eq) == BI(ic+1))
37 && (std::find_first_of(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ib)), BI(st
[all...]
/external/libcxx/test/std/re/re.alg/re.alg.match/
H A Dbasic.pass.cpp683 typedef bidirectional_iterator<const char*> BI; typedef
685 std::match_results<BI> m;
688 assert(std::regex_match(BI(s), BI(s+ss), m, regex));
691 assert(m.prefix().first == BI(s));
1351 typedef bidirectional_iterator<const wchar_t*> BI; typedef
1353 std::match_results<BI> m;
1356 assert(std::regex_match(BI(s), BI(s+ss), m, regex));
1359 assert(m.prefix().first == BI(
[all...]
H A Decma.pass.cpp674 typedef bidirectional_iterator<const char*> BI; typedef
676 std::match_results<BI> m;
679 assert(std::regex_match(BI(s), BI(s+ss), m, regex));
682 assert(m.prefix().first == BI(s));
1348 typedef bidirectional_iterator<const wchar_t*> BI; typedef
1350 std::match_results<BI> m;
1353 assert(std::regex_match(BI(s), BI(s+ss), m, regex));
1356 assert(m.prefix().first == BI(
[all...]
H A Dextended.pass.cpp681 typedef bidirectional_iterator<const char*> BI; typedef
683 std::match_results<BI> m;
686 assert(std::regex_match(BI(s), BI(s+ss), m, regex));
689 assert(m.prefix().first == BI(s));
1347 typedef bidirectional_iterator<const wchar_t*> BI; typedef
1349 std::match_results<BI> m;
1352 assert(std::regex_match(BI(s), BI(s+ss), m, regex));
1355 assert(m.prefix().first == BI(
[all...]
/external/libcxx/test/std/re/re.alg/re.alg.search/
H A Dawk.pass.cpp771 typedef bidirectional_iterator<const char*> BI; typedef
773 std::match_results<BI> m;
776 assert(std::regex_search(BI(s), BI(s+ss), m, regex));
779 assert(m.prefix().first == BI(s));
1542 typedef bidirectional_iterator<const wchar_t*> BI; typedef
1544 std::match_results<BI> m;
1547 assert(std::regex_search(BI(s), BI(s+ss), m, regex));
1550 assert(m.prefix().first == BI(
[all...]
H A Dbasic.pass.cpp773 typedef bidirectional_iterator<const char*> BI; typedef
775 std::match_results<BI> m;
778 assert(std::regex_search(BI(s), BI(s+ss), m, regex));
781 assert(m.prefix().first == BI(s));
1531 typedef bidirectional_iterator<const wchar_t*> BI; typedef
1533 std::match_results<BI> m;
1536 assert(std::regex_search(BI(s), BI(s+ss), m, regex));
1539 assert(m.prefix().first == BI(
[all...]
H A Decma.pass.cpp749 typedef bidirectional_iterator<const char*> BI; typedef
751 std::match_results<BI> m;
754 assert(std::regex_search(BI(s), BI(s+ss), m, regex));
757 assert(m.prefix().first == BI(s));
1528 typedef bidirectional_iterator<const wchar_t*> BI; typedef
1530 std::match_results<BI> m;
1533 assert(std::regex_search(BI(s), BI(s+ss), m, regex));
1536 assert(m.prefix().first == BI(
[all...]
H A Dextended.pass.cpp771 typedef bidirectional_iterator<const char*> BI; typedef
773 std::match_results<BI> m;
776 assert(std::regex_search(BI(s), BI(s+ss), m, regex));
779 assert(m.prefix().first == BI(s));
1527 typedef bidirectional_iterator<const wchar_t*> BI; typedef
1529 std::match_results<BI> m;
1532 assert(std::regex_search(BI(s), BI(s+ss), m, regex));
1535 assert(m.prefix().first == BI(
[all...]
/external/libcxx/test/std/algorithms/alg.nonmodifying/mismatch/
H A Dmismatch.pass.cpp33 typedef bidirectional_iterator<int*> BI; typedef
54 auto p6 = std::mismatch(BI(std::begin(ib)), BI(std::end(ib)), BI(std::begin(ic)), BI(std::end(ic)));
55 if (p6.first != BI(ib+2) || p6.second != BI(ic+2))
H A Dmismatch_pred.pass.cpp38 typedef bidirectional_iterator<int*> BI; typedef
59 auto p6 = std::mismatch(BI(std::begin(ib)), BI(std::end(ib)), BI(std::begin(ic)), BI(std::end(ic)), eq);
60 if (p6.first != BI(ib+2) || p6.second != BI(ic+2))
/external/swiftshader/third_party/LLVM/unittests/VMCore/
H A DVerifierTest.cpp37 BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry); local
42 BI->setOperand(0, Zero32);
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.end/
H A Dfind_end.pass.cpp29 typedef bidirectional_iterator<int*> BI; typedef
34 && (std::find_end(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ia)), BI(std::end(ia))) == BI(ic+15))
35 && (std::find_end(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ib)), BI(st
[all...]
H A Dfind_end_pred.pass.cpp38 typedef bidirectional_iterator<int*> BI; typedef
43 && (std::find_end(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ia)), BI(std::end(ia)), eq) == BI(ic+15))
44 && (std::find_end(BI(std::begin(ic)), BI(std::end(ic)), BI(std::begin(ib)), BI(st
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXLowerAlloca.cpp105 auto BI = dyn_cast<BitCastInst>(AllocaUse.getUser()); local
106 if (BI && BI->getOperand(0) == allocaInst) {
107 BI->setOperand(0, NewASCToGeneric);
/external/llvm/lib/Transforms/Scalar/
H A DLowerExpectIntrinsic.cpp86 static bool handleBranchExpect(BranchInst &BI) { argument
87 if (BI.isUnconditional())
101 ICmpInst *CmpI = dyn_cast<ICmpInst>(BI.getCondition());
103 CI = dyn_cast<CallInst>(BI.getCondition());
132 BI.setMetadata(LLVMContext::MD_prof, Node);
137 BI.setCondition(ArgValue);
146 if (BranchInst *BI = dyn_cast<BranchInst>(BB.getTerminator())) {
147 if (handleBranchExpect(*BI))
155 for (BasicBlock::iterator BI = BB.begin(), BE = BB.end(); BI !
[all...]
/external/llvm/unittests/IR/
H A DVerifierTest.cpp39 BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry); local
44 BI->setOperand(0, Zero32);
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DLoopDeletion.cpp88 BasicBlock::iterator BI = exitBlock->begin(); local
89 while (PHINode* P = dyn_cast<PHINode>(BI)) {
105 ++BI;
114 for (BasicBlock::iterator BI = (*LI)->begin(), BE = (*LI)->end();
115 BI != BE; ++BI) {
116 if (BI->mayHaveSideEffects())
191 BasicBlock::iterator BI = exitBlock->begin(); local
192 while (PHINode* P = dyn_cast<PHINode>(BI)) {
198 ++BI;
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DLowerExpectIntrinsic.cpp33 bool HandleIfExpect(BranchInst *BI);
81 bool LowerExpectIntrinsic::HandleIfExpect(BranchInst *BI) { argument
82 if (BI->isUnconditional())
90 ICmpInst *CmpI = dyn_cast<ICmpInst>(BI->getCondition());
120 BI->setMetadata(LLVMContext::MD_prof, WeightsNode);
132 if (BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator())) {
133 if (HandleIfExpect(BI))
141 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end();
142 BI != BE; ) {
143 CallInst *CI = dyn_cast<CallInst>(BI
[all...]
/external/clang/unittests/Lex/
H A DHeaderMapTest.cpp65 unsigned BI = 0; member in struct:__anon3709::FileMaker
/external/llvm/include/llvm/IR/
H A DInstIterator.h37 BI_t BI; // BasicBlock::iterator member in class:llvm::InstIterator
51 : BBs(II.BBs), BB(II.BB), BI(II.BI) {}
55 : BBs(II.BBs), BB(II.BB), BI(II.BI) {}
60 BI = BB->begin();
71 inline BIty &getInstructionIterator() { return BI; }
73 inline reference operator*() const { return *BI; }
77 return BB == y.BB && (BB == BBs->end() || BI == y.BI);
[all...]
/external/llvm/lib/CodeGen/
H A DInterferenceCache.cpp149 BlockInterference *BI = &Blocks[MBBNum]; local
153 BI->Tag = Tag;
154 BI->First = BI->Last = SlotIndex();
164 if (!BI->First.isValid() || StartI < BI->First)
165 BI->First = StartI;
177 if (!BI->First.isValid() || StartI < BI->First)
178 BI
[all...]
/external/llvm/lib/Transforms/IPO/
H A DCrossDSOCFI.cpp138 BranchInst *BI = IRBTest.CreateCondBr(Test, ExitBB, TrapBB); local
139 BI->setMetadata(LLVMContext::MD_prof, VeryLikelyWeights);

Completed in 1610 milliseconds

123456