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

1 2 3 4 5 6 78 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
typelist.h 97 template<typename Typelist, template<typename T> class Pred>
290 template<typename Typelist_Chain, template<typename T> class Pred>
293 template<template<typename T> class Pred>
294 struct chain_filter_<null_type, Pred>
299 template<typename Hd, typename Tl, template<typename T> class Pred>
300 struct chain_filter_<chain<Hd, Tl>, Pred>
305 include_hd = Pred<Hd>::value
308 typedef typename chain_filter_<Tl, Pred>::type rest_type;
463 template<typename Typelist, template<typename T> class Pred>
468 typedef detail::chain_filter_<root_type, Pred> filter_type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
typelist.h 97 template<typename Typelist, template<typename T> class Pred>
290 template<typename Typelist_Chain, template<typename T> class Pred>
293 template<template<typename T> class Pred>
294 struct chain_filter_<null_type, Pred>
299 template<typename Hd, typename Tl, template<typename T> class Pred>
300 struct chain_filter_<chain<Hd, Tl>, Pred>
305 include_hd = Pred<Hd>::value
308 typedef typename chain_filter_<Tl, Pred>::type rest_type;
463 template<typename Typelist, template<typename T> class Pred>
468 typedef detail::chain_filter_<root_type, Pred> filter_type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
typelist.h 97 template<typename Typelist, template<typename T> class Pred>
290 template<typename Typelist_Chain, template<typename T> class Pred>
293 template<template<typename T> class Pred>
294 struct chain_filter_<null_type, Pred>
299 template<typename Hd, typename Tl, template<typename T> class Pred>
300 struct chain_filter_<chain<Hd, Tl>, Pred>
305 include_hd = Pred<Hd>::value
308 typedef typename chain_filter_<Tl, Pred>::type rest_type;
463 template<typename Typelist, template<typename T> class Pred>
468 typedef detail::chain_filter_<root_type, Pred> filter_type
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
typelist.h 97 template<typename Typelist, template<typename T> class Pred>
290 template<typename Typelist_Chain, template<typename T> class Pred>
293 template<template<typename T> class Pred>
294 struct chain_filter_<null_type, Pred>
299 template<typename Hd, typename Tl, template<typename T> class Pred>
300 struct chain_filter_<chain<Hd, Tl>, Pred>
305 include_hd = Pred<Hd>::value
308 typedef typename chain_filter_<Tl, Pred>::type rest_type;
463 template<typename Typelist, template<typename T> class Pred>
468 typedef detail::chain_filter_<root_type, Pred> filter_type
    [all...]
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 385 /// in any of our predecessors. If so, return the known list of value and pred
714 // If this block has a single predecessor, and if that pred has a single
    [all...]
PlaceSafepoints.cpp 213 /// to the loop header via an edge from Pred. Returns a conservative correct
216 BasicBlock *Pred,
219 // there's a call safepoint along every edge between Header and Pred.
222 // loop latch (Pred) block. Somewhat surprisingly, walking the entire chain
224 // checking the Pred and Header blocks themselves. This may be due to the
228 assert(DT.dominates(Header, Pred) && "loop latch not dominated by header?");
230 BasicBlock *Current = Pred;
257 BasicBlock *Pred) {
268 if (L->isLoopExiting(Pred)) {
271 const SCEV *MaxExec = SE->getExitCount(L, Pred);
    [all...]
GVN.cpp 130 uint32_t lookup_or_add_cmp(unsigned Opcode, CmpInst::Predicate Pred,
725 bool performScalarPREInsertion(Instruction *Instr, BasicBlock *Pred,
731 BasicBlock *splitCriticalEdges(BasicBlock *Pred, BasicBlock *Succ);
    [all...]
  /external/llvm/lib/Target/ARM/
ThumbRegisterInfo.cpp 66 ARMCC::CondCodes Pred, unsigned PredReg,
78 .addConstantPoolIndex(Idx).addImm(Pred).addReg(PredReg)
86 ARMCC::CondCodes Pred, unsigned PredReg,
105 unsigned DestReg, unsigned SubIdx, int Val, ARMCC::CondCodes Pred,
112 return emitThumb1LoadConstPool(MBB, MBBI, dl, DestReg, SubIdx, Val, Pred,
115 return emitThumb2LoadConstPool(MBB, MBBI, dl, DestReg, SubIdx, Val, Pred,
ARMBaseInstrInfo.h 147 ArrayRef<MachineOperand> Pred) const override;
153 std::vector<MachineOperand> &Pred) const override;
471 ARMCC::CondCodes Pred, unsigned PredReg,
477 ARMCC::CondCodes Pred, unsigned PredReg,
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 155 ICmpInst::Predicate Pred = ICmp->getPredicate();
160 Pred = ICmpInst::getSwappedPredicate(Pred);
177 if (SE->isKnownPredicate(Pred, S, X)) {
181 } else if (SE->isKnownPredicate(ICmpInst::getInversePredicate(Pred), S, X)) {
186 SE->isLoopInvariantPredicate(Pred, S, X, ICmpLoop,
  /external/llvm/lib/CodeGen/
MachineSSAUpdater.cpp 309 MachineBasicBlock *Pred) {
310 MachineInstrBuilder(*Pred->getParent(), PHI).addReg(Val).addMBB(Pred);
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 93 void handlePredecessor(const CFGBlock *Pred) {}
96 void handlePredecessorBackEdge(const CFGBlock *Pred) {}
445 void handlePredecessor(const CFGBlock *Pred);
446 void handlePredecessorBackEdge(const CFGBlock *Pred);
  /external/llvm/include/llvm/Analysis/
RegionInfoImpl.h 164 BlockT *Pred;
170 Pred = *PI;
171 if (DT->getNode(Pred) && !contains(Pred)) {
175 enteringBlock = Pred;
185 BlockT *Pred;
194 Pred = *PI;
195 if (contains(Pred)) {
199 exitingBlock = Pred;
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporterVisitor.h 62 const ExplodedNode *Pred,
328 const ExplodedNode *Pred,
  /external/clang/lib/Analysis/
UninitializedValues.cpp 595 const CFGBlock *Pred = *I;
596 if (!Pred)
599 Value AtPredExit = vals.getValue(Pred, B, vd);
614 unsigned &SV = SuccsVisited[Pred->getBlockID()];
618 for (CFGBlock::const_succ_iterator SI = Pred->succ_begin(),
619 SE = Pred->succ_end();
625 if (++SV == Pred->succ_size())
628 Queue.push_back(Pred);
812 const CFGBlock *pred = *I; local
813 if (!pred)
    [all...]
  /external/llvm/lib/Target/AMDGPU/
R600InstrInfo.h 191 std::vector<MachineOperand> &Pred) const override;
200 ArrayRef<MachineOperand> Pred) const override;
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 193 PPC::Predicate Pred = (PPC::Predicate)I->getOperand(0).getImm();
198 .addImm(PPC::InvertPredicate(Pred)).addReg(CRReg).addImm(2);
PPCInstrInfo.h 238 ArrayRef<MachineOperand> Pred) const override;
244 std::vector<MachineOperand> &Pred) const override;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/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-linux-glibc2.11-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.11-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.11-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.11-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-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/left_child_next_sibling_heap_/
left_child_next_sibling_heap_.hpp 210 template<typename Pred>
212 prune(Pred);

Completed in 403 milliseconds

1 2 3 4 5 6 78 91011>>