HomeSort by relevance Sort by last modified time
    Searched refs:Pred (Results 201 - 225 of 354) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pairing_heap_/
erase_fn_imps.hpp 198 template<typename Pred>
201 erase_if(Pred pred)
210 node_pointer p_out = base_type::prune(pred);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 241 template<typename Pred>
244 erase_if(Pred pred)
253 if (pred(*it))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/rb_tree_map_/
erase_fn_imps.hpp 86 template<typename Pred>
89 erase_if(Pred pred)
96 if (pred(*it))
rb_tree_.hpp 168 template<typename Pred>
170 erase_if(Pred);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/splay_tree_/
splay_tree_.hpp 200 template<typename Pred>
202 erase_if(Pred);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/left_child_next_sibling_heap_/
left_child_next_sibling_heap_.hpp 210 template<typename Pred>
212 prune(Pred);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pairing_heap_/
erase_fn_imps.hpp 198 template<typename Pred>
201 erase_if(Pred pred)
210 node_pointer p_out = base_type::prune(pred);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 241 template<typename Pred>
244 erase_if(Pred pred)
253 if (pred(*it))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/rb_tree_map_/
erase_fn_imps.hpp 86 template<typename Pred>
89 erase_if(Pred pred)
96 if (pred(*it))
rb_tree_.hpp 168 template<typename Pred>
170 erase_if(Pred);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/splay_tree_/
splay_tree_.hpp 200 template<typename Pred>
202 erase_if(Pred);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/left_child_next_sibling_heap_/
left_child_next_sibling_heap_.hpp 210 template<typename Pred>
212 prune(Pred);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/pairing_heap_/
erase_fn_imps.hpp 198 template<typename Pred>
201 erase_if(Pred pred)
210 node_pointer p_out = base_type::prune(pred);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/pat_trie_/
erase_fn_imps.hpp 241 template<typename Pred>
244 erase_if(Pred pred)
253 if (pred(*it))
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/rb_tree_map_/
erase_fn_imps.hpp 86 template<typename Pred>
89 erase_if(Pred pred)
96 if (pred(*it))
rb_tree_.hpp 168 template<typename Pred>
170 erase_if(Pred);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/splay_tree_/
splay_tree_.hpp 200 template<typename Pred>
202 erase_if(Pred);
  /art/runtime/base/
hash_set.h 60 class Pred = std::equal_to<T>, class Alloc = std::allocator<T>>
667 Pred pred_; // Equals function.
677 template <class T, class EmptyFn, class HashFn, class Pred, class Alloc>
678 void swap(HashSet<T, EmptyFn, HashFn, Pred, Alloc>& lhs,
679 HashSet<T, EmptyFn, HashFn, Pred, Alloc>& rhs) {
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp     [all...]
StructurizeCFG.cpp 422 BBPredicates &Pred = Predicates[BB];
448 !Pred.count(Other) && !Pred.count(*PI)) {
450 Pred[Other] = BoolFalse;
451 Pred[*PI] = BoolTrue;
455 Pred[*PI] = buildCondition(Term, i, false);
475 Pred[Entry] = BoolTrue;
InductiveRangeCheckElimination.cpp 281 ICmpInst::Predicate Pred = ICI->getPredicate();
285 switch (Pred) {
697 ICmpInst::Predicate Pred = ICI->getPredicate();
710 Pred = ICmpInst::getSwappedPredicate(Pred);
779 (Pred == ICmpInst::ICMP_SLT && LatchBrExitIdx == 1) ||
780 (Pred == ICmpInst::ICMP_SGT && LatchBrExitIdx == 0);
801 (Pred == ICmpInst::ICMP_SGT && LatchBrExitIdx == 1) ||
802 (Pred == ICmpInst::ICMP_SLT && LatchBrExitIdx == 0);
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 809 BasicBlock *Pred = PN->getIncomingBlock(i);
810 Value *&PredVal = PredValues[Pred];
814 EltPHI->addIncoming(PredVal, Pred);
822 EltPHI->addIncoming(PredVal, Pred);
831 EltPHI->addIncoming(PredVal, Pred);
837 Builder->SetInsertPoint(Pred->getTerminator());
844 EltPHI->addIncoming(Res, Pred);
    [all...]
  /external/llvm/lib/Target/ARM/
MLxExpansionPass.cpp 284 ARMCC::CondCodes Pred = (ARMCC::CondCodes)MI->getOperand(NextOp).getImm();
298 MIB.addImm(Pred).addReg(PredReg);
310 MIB.addImm(Pred).addReg(PredReg);
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 440 BasicBlock *Pred = InstParent->getSinglePredecessor();
441 if (!Pred)
443 BBI = Pred->getTerminator()->getIterator();

Completed in 4933 milliseconds

1 2 3 4 5 6 7 891011>>