Searched refs:Pred (Results 1 - 25 of 168) sorted by relevance

1234567

/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Dentry_pred.hpp56 class Pred,
61 typedef Pred type;
64 template<typename Value_Type, class Pred, class Allocator>
67 Pred,
77 struct type : public Pred
85 type(const Pred& other) : Pred(other)
91 return Pred::operator()(*p_v);
H A Derase_fn_imps.hpp114 template<typename Pred>
117 erase_if(Pred pred)
124 Pred,
223 template<typename Pred>
226 partition(Pred pred)
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h195 void processCFGElement(const CFGElement E, ExplodedNode *Pred,
198 void ProcessStmt(const CFGStmt S, ExplodedNode *Pred);
200 void ProcessInitializer(const CFGInitializer I, ExplodedNode *Pred);
202 void ProcessImplicitDtor(const CFGImplicitDtor D, ExplodedNode *Pred);
205 ExplodedNode *Pred, ExplodedNodeSet &Dst);
207 ExplodedNode *Pred, ExplodedNodeSet &Dst);
209 ExplodedNode *Pred, ExplodedNodeSet &Dst);
211 ExplodedNode *Pred, ExplodedNodeSet &Dst);
213 ExplodedNode *Pred, ExplodedNodeSet &Dst);
218 ExplodedNode *Pred);
[all...]
H A DCheckerContext.h73 ExplodedNode *Pred; member in class:clang::ento::CheckerContext
93 Pred(pred),
98 assert(Pred->getState() &&
117 ExplodedNode *getPredecessor() { return Pred; }
118 const ProgramStateRef &getState() const { return Pred->getState(); }
139 return Pred->getLocationContext();
143 return Pred->getStackFrame();
174 return Pred->getLocationContext()->getAnalysisDeclContext();
212 /// @param Pred The transition will be generated from the specified Pred nod
215 addTransition(ProgramStateRef State, ExplodedNode *Pred, const ProgramPointTag *Tag = 0) argument
[all...]
H A DSubEngine.h56 virtual void processCFGElement(const CFGElement E, ExplodedNode* Pred,
64 ExplodedNode *Pred) = 0;
70 ExplodedNode *Pred,
79 ExplodedNode *Pred,
95 ExplodedNode *Pred) = 0;
98 virtual void processCallEnter(CallEnter CE, ExplodedNode *Pred) = 0;
101 virtual void processCallExit(ExplodedNode *Pred) = 0;
H A DCoreEngine.h89 ExplodedNode *Pred);
91 void HandleBlockEdge(const BlockEdge &E, ExplodedNode *Pred);
92 void HandleBlockEntrance(const BlockEntrance &E, ExplodedNode *Pred);
93 void HandleBlockExit(const CFGBlock *B, ExplodedNode *Pred);
94 void HandlePostStmt(const CFGBlock *B, unsigned StmtIdx, ExplodedNode *Pred);
97 ExplodedNode *Pred);
101 ExplodedNode *Pred);
136 /// Use Pred parameter as the predecessor state.
137 void dispatchWorkItem(ExplodedNode* Pred, ProgramPoint Loc,
245 ExplodedNode *Pred,
265 generateNode(const ProgramPoint &PP, ProgramStateRef State, ExplodedNode *Pred) argument
276 generateSink(const ProgramPoint &PP, ProgramStateRef State, ExplodedNode *Pred) argument
321 NodeBuilderWithSinks(ExplodedNode *Pred, ExplodedNodeSet &DstSet, const NodeBuilderContext &Ctx, ProgramPoint &L) argument
325 generateNode(ProgramStateRef State, ExplodedNode *Pred, const ProgramPointTag *Tag = 0) argument
332 generateSink(ProgramStateRef State, ExplodedNode *Pred, const ProgramPointTag *Tag = 0) argument
378 generateNode(const Stmt *S, ExplodedNode *Pred, ProgramStateRef St, const ProgramPointTag *tag = 0, ProgramPoint::Kind K = ProgramPoint::PostStmtKind) argument
388 generateSink(const Stmt *S, ExplodedNode *Pred, ProgramStateRef St, const ProgramPointTag *tag = 0, ProgramPoint::Kind K = ProgramPoint::PostStmtKind) argument
452 ExplodedNode *Pred; member in class:clang::ento::IndirectGotoNodeBuilder
498 ExplodedNode *Pred; member in class:clang::ento::SwitchNodeBuilder
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp23 ExplodedNode *Pred,
25 ProgramStateRef state = Pred->getState();
26 const LocationContext *LCtx = Pred->getLocationContext();
31 StmtNodeBuilder Bldr(Pred, dstIvar, *currBldrCtx);
32 Bldr.generateNode(Ex, Pred, state->BindExpr(Ex, LCtx, location));
40 ExplodedNode *Pred,
42 getCheckerManager().runCheckersForPreStmt(Dst, Pred, S, *this);
46 ExplodedNode *Pred,
75 ProgramStateRef state = Pred->getState();
81 elementV = state->getLValue(elemD, Pred
22 VisitLvalObjCIvarRefExpr(const ObjCIvarRefExpr *Ex, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
39 VisitObjCAtSynchronizedStmt(const ObjCAtSynchronizedStmt *S, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
45 VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
135 VisitObjCMessage(const ObjCMessageExpr *ME, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
156 ExplodedNode *Pred = *DI; local
[all...]
H A DCoreEngine.cpp228 void CoreEngine::dispatchWorkItem(ExplodedNode* Pred, ProgramPoint Loc, argument
233 HandleBlockEdge(Loc.castAs<BlockEdge>(), Pred);
237 HandleBlockEntrance(Loc.castAs<BlockEntrance>(), Pred);
246 SubEng.processCallEnter(CEnter, Pred);
251 SubEng.processCallExit(Pred);
255 assert(Pred->hasSinglePred() &&
257 ExplodedNode *PNode = Pred->getFirstPred();
258 dispatchWorkItem(Pred, PNode->getLocation(), WU);
266 HandlePostStmt(WU.getBlock(), WU.getIndex(), Pred);
283 void CoreEngine::HandleBlockEdge(const BlockEdge &L, ExplodedNode *Pred) { argument
322 HandleBlockEntrance(const BlockEntrance &L, ExplodedNode *Pred) argument
342 HandleBlockExit(const CFGBlock * B, ExplodedNode *Pred) argument
351 HandleStaticInit(cast<DeclStmt>(Term), B, Pred); local
378 Pred->State, Pred); local
450 Pred->State, Pred); local
453 HandleBranch(const Stmt *Cond, const Stmt *Term, const CFGBlock * B, ExplodedNode *Pred) argument
465 HandleStaticInit(const DeclStmt *DS, const CFGBlock *B, ExplodedNode *Pred) argument
477 HandlePostStmt(const CFGBlock *B, unsigned StmtIdx, ExplodedNode *Pred) argument
492 generateNode(const ProgramPoint &Loc, ProgramStateRef State, ExplodedNode *Pred) argument
[all...]
H A DExprEngine.cpp276 void ExprEngine::processCFGElement(const CFGElement E, ExplodedNode *Pred, argument
278 PrettyStackTraceLocationContext CrashInfo(Pred->getLocationContext());
284 ProcessStmt(const_cast<Stmt*>(E.castAs<CFGStmt>().getStmt()), Pred); local
287 ProcessInitializer(E.castAs<CFGInitializer>().getInitializer(), Pred);
294 ProcessImplicitDtor(E.castAs<CFGImplicitDtor>(), Pred);
301 const ExplodedNode *Pred,
309 if (Pred->getLocation().getAs<BlockEntrance>())
326 void ExprEngine::removeDead(ExplodedNode *Pred, ExplodedNodeSet &Out, argument
342 ProgramStateRef CleanedState = Pred->getState();
370 StmtNodeBuilder Bldr(Pred, Ou
299 shouldRemoveDeadBindings(AnalysisManager &AMgr, const CFGStmt S, const ExplodedNode *Pred, const LocationContext *LC) argument
408 ProcessStmt(const CFGStmt S, ExplodedNode *Pred) argument
439 ProcessInitializer(const CFGInitializer Init, ExplodedNode *Pred) argument
523 ProcessImplicitDtor(const CFGImplicitDtor D, ExplodedNode *Pred) argument
550 ProcessAutomaticObjDtor(const CFGAutomaticObjDtor Dtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
569 ProcessDeleteDtor(const CFGDeleteDtor Dtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
598 ProcessBaseDtor(const CFGBaseDtor D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
618 ProcessMemberDtor(const CFGMemberDtor D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
635 ProcessTemporaryDtor(const CFGTemporaryDtor D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
647 Visit(const Stmt *S, ExplodedNode *Pred, ExplodedNodeSet &DstTop) argument
729 VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S), Pred, Dst); local
864 VisitLvalArraySubscriptExpr(cast<ArraySubscriptExpr>(S), Pred, Dst); local
870 VisitGCCAsmStmt(cast<GCCAsmStmt>(S), Pred, Dst); local
876 VisitMSAsmStmt(cast<MSAsmStmt>(S), Pred, Dst); local
882 VisitBlockExpr(cast<BlockExpr>(S), Pred, Dst); local
908 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Tmp); local
912 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst); local
945 VisitCallExpr(cast<CallExpr>(S), Pred, Dst); local
952 VisitCXXCatchStmt(cast<CXXCatchStmt>(S), Pred, Dst); local
960 VisitCXXConstructExpr(cast<CXXConstructExpr>(S), Pred, Dst); local
968 VisitCXXNewExpr(cast<CXXNewExpr>(S), Pred, PostVisit); local
1000 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst); local
1006 VisitCompoundLiteralExpr(cast<CompoundLiteralExpr>(S), Pred, Dst); local
1022 VisitCXXThisExpr(cast<CXXThisExpr>(S), Pred, Dst); local
1036 VisitDeclStmt(cast<DeclStmt>(S), Pred, Dst); local
1077 VisitInitListExpr(cast<InitListExpr>(S), Pred, Dst); local
1083 VisitMemberExpr(cast<MemberExpr>(S), Pred, Dst); local
1089 VisitLvalObjCIvarRefExpr(cast<ObjCIvarRefExpr>(S), Pred, Dst); local
1095 VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S), Pred, Dst); local
1101 VisitObjCMessage(cast<ObjCMessageExpr>(S), Pred, Dst); local
1114 VisitReturnStmt(cast<ReturnStmt>(S), Pred, Dst); local
1120 VisitOffsetOfExpr(cast<OffsetOfExpr>(S), Pred, Dst); local
1127 Pred, Dst); local
1249 processCFGBlockEntrance(const BlockEdge &L, NodeBuilderWithSinks &nodeBuilder, ExplodedNode *Pred) argument
1371 processBranch(const Stmt *Condition, const Stmt *Term, NodeBuilderContext& BldCtx, ExplodedNode *Pred, ExplodedNodeSet &Dst, const CFGBlock *DstT, const CFGBlock *DstF) argument
1472 processStaticInitializer(const DeclStmt *DS, NodeBuilderContext &BuilderCtx, ExplodedNode *Pred, clang::ento::ExplodedNodeSet &Dst, const CFGBlock *DstT, const CFGBlock *DstF) argument
1542 processEndOfFunction(NodeBuilderContext& BC, ExplodedNode *Pred) argument
1672 VisitCommonDeclRefExpr(const Expr *Ex, const NamedDecl *D, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
1727 VisitLvalArraySubscriptExpr(const ArraySubscriptExpr *A, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
1754 VisitMemberExpr(const MemberExpr *M, ExplodedNode *Pred, ExplodedNodeSet &TopDst) argument
1936 evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, ExplodedNode *Pred, SVal location, SVal Val, bool atDeclInit, const ProgramPoint *PP) argument
1997 evalStore(ExplodedNodeSet &Dst, const Expr *AssignE, const Expr *LocationE, ExplodedNode *Pred, ProgramStateRef state, SVal location, SVal Val, const ProgramPointTag *tag) argument
2020 evalLoad(ExplodedNodeSet &Dst, const Expr *NodeEx, const Expr *BoundEx, ExplodedNode *Pred, ProgramStateRef state, SVal location, const ProgramPointTag *tag, QualType LoadTy) argument
2059 evalLoadCommon(ExplodedNodeSet &Dst, const Expr *NodeEx, const Expr *BoundEx, ExplodedNode *Pred, ProgramStateRef state, SVal location, const ProgramPointTag *tag, QualType LoadTy) argument
2096 evalLocation(ExplodedNodeSet &Dst, const Stmt *NodeEx, const Stmt *BoundEx, ExplodedNode *Pred, ProgramStateRef state, SVal location, const ProgramPointTag *tag, bool isLoad) argument
2147 ExplodedNode *Pred = *I; local
2183 VisitGCCAsmStmt(const GCCAsmStmt *A, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
2207 VisitMSAsmStmt(const MSAsmStmt *A, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
[all...]
H A DExprEngineC.cpp23 ExplodedNode *Pred,
32 getCheckerManager().runCheckersForPreStmt(CheckedSet, Pred, B, *this);
180 void ExprEngine::VisitBlockExpr(const BlockExpr *BE, ExplodedNode *Pred, argument
187 Pred->getLocationContext(),
190 ProgramStateRef State = Pred->getState();
211 StmtNodeBuilder Bldr(Pred, Tmp, *currBldrCtx);
212 Bldr.generateNode(BE, Pred,
213 State->BindExpr(BE, Pred->getLocationContext(), V),
221 ExplodedNode *Pred, ExplodedNodeSet &Dst) {
224 getCheckerManager().runCheckersForPreStmt(dstPreStmt, Pred, Cast
22 VisitBinaryOperator(const BinaryOperator* B, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
220 VisitCast(const CastExpr *CastE, const Expr *Ex, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
402 VisitCompoundLiteralExpr(const CompoundLiteralExpr *CL, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
435 VisitDeclStmt(const DeclStmt *DS, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
508 VisitLogicalExpr(const BinaryOperator* B, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
577 VisitInitListExpr(const InitListExpr *IE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
626 VisitGuardedExpr(const Expr *Ex, const Expr *L, const Expr *R, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
688 VisitOffsetOfExpr(const OffsetOfExpr *OOE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
707 VisitUnaryExprOrTypeTraitExpr(const UnaryExprOrTypeTraitExpr *Ex, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
740 VisitUnaryOperator(const UnaryOperator* U, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
872 VisitIncrementDecrementOperator(const UnaryOperator* U, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
[all...]
H A DExprEngineCXX.cpp26 ExplodedNode *Pred,
28 StmtNodeBuilder Bldr(Pred, Dst, *currBldrCtx);
30 ProgramStateRef state = Pred->getState();
31 const LocationContext *LCtx = Pred->getLocationContext();
34 Bldr.generateNode(ME, Pred, state);
39 void ExprEngine::performTrivialCopy(NodeBuilder &Bldr, ExplodedNode *Pred, argument
56 const LocationContext *LCtx = Pred->getLocationContext();
59 Bldr.takeNodes(Pred);
66 V = Pred->getState()->getSVal(*L);
71 evalBind(Dst, CallExpr, Pred, ThisVa
25 CreateCXXTemporaryObject(const MaterializeTemporaryExpr *ME, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
111 VisitCXXConstructExpr(const CXXConstructExpr *CE, ExplodedNode *Pred, ExplodedNodeSet &destNodes) argument
287 VisitCXXDestructor(QualType ObjectType, const MemRegion *Dest, const Stmt *S, bool IsBaseDtor, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
332 VisitCXXNewExpr(const CXXNewExpr *CNE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
437 VisitCXXDeleteExpr(const CXXDeleteExpr *CDE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
444 VisitCXXCatchStmt(const CXXCatchStmt *CS, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
463 VisitCXXThisExpr(const CXXThisExpr *TE, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
[all...]
H A DExprEngineCallAndReturn.cpp40 void ExprEngine::processCallEnter(CallEnter CE, ExplodedNode *Pred) { argument
58 ProgramStateRef state = Pred->getState();
63 Node->addPredecessor(Pred, G);
160 ExplodedNode *Pred,
165 llvm::tie(LastSt, Blk) = getLastStmt(Pred);
167 Dst.Add(Pred);
177 const LocationContext *LCtx = Pred->getLocationContext();
178 removeDead(Pred, Dst, dyn_cast<ReturnStmt>(LastSt), LCtx,
417 NodeBuilder &Bldr, ExplodedNode *Pred,
421 const LocationContext *CurLC = Pred
159 removeDeadOnEndOfFunction(NodeBuilderContext& BC, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
416 inlineCall(const CallEvent &Call, const Decl *D, NodeBuilder &Bldr, ExplodedNode *Pred, ProgramStateRef State) argument
482 VisitCallExpr(const CallExpr *CE, ExplodedNode *Pred, ExplodedNodeSet &dst) argument
510 evalCall(ExplodedNodeSet &Dst, ExplodedNode *Pred, const CallEvent &Call) argument
574 conservativeEvalCall(const CallEvent &Call, NodeBuilder &Bldr, ExplodedNode *Pred, ProgramStateRef State) argument
590 mayInlineCallKind(const CallEvent &Call, const ExplodedNode *Pred, AnalyzerOptions &Opts) argument
800 shouldInlineCall(const CallEvent &Call, const Decl *D, const ExplodedNode *Pred) argument
900 defaultEvalCall(NodeBuilder &Bldr, ExplodedNode *Pred, const CallEvent &CallTemplate) argument
951 BifurcateCall(const MemRegion *BifurReg, const CallEvent &Call, const Decl *D, NodeBuilder &Bldr, ExplodedNode *Pred) argument
991 VisitReturnStmt(const ReturnStmt *RS, ExplodedNode *Pred, ExplodedNodeSet &Dst) argument
[all...]
H A DCheckerManager.cpp153 NodeBuilder &Bldr, ExplodedNode *Pred) {
158 Pred->getLocationContext(), checkFn.Checker);
159 CheckerContext C(Bldr, Eng, Pred, L, WasInlined);
195 NodeBuilder &Bldr, ExplodedNode *Pred) {
197 CheckerContext C(Bldr, Eng, Pred, L, WasInlined);
199 checkFn(*Msg.cloneWithState<ObjCMethodCall>(Pred->getState()), C);
238 NodeBuilder &Bldr, ExplodedNode *Pred) {
240 CheckerContext C(Bldr, Eng, Pred, L, WasInlined);
242 checkFn(*Call.cloneWithState(Pred->getState()), C);
282 NodeBuilder &Bldr, ExplodedNode *Pred) {
152 runChecker(CheckerManager::CheckStmtFunc checkFn, NodeBuilder &Bldr, ExplodedNode *Pred) argument
194 runChecker(CheckerManager::CheckObjCMessageFunc checkFn, NodeBuilder &Bldr, ExplodedNode *Pred) argument
237 runChecker(CheckerManager::CheckCallFunc checkFn, NodeBuilder &Bldr, ExplodedNode *Pred) argument
281 runChecker(CheckerManager::CheckLocationFunc checkFn, NodeBuilder &Bldr, ExplodedNode *Pred) argument
326 runChecker(CheckerManager::CheckBindFunc checkFn, NodeBuilder &Bldr, ExplodedNode *Pred) argument
356 runCheckersForEndFunction(NodeBuilderContext &BC, ExplodedNodeSet &Dst, ExplodedNode *Pred, ExprEngine &Eng) argument
390 runChecker(CheckerManager::CheckBranchConditionFunc checkFn, NodeBuilder &Bldr, ExplodedNode *Pred) argument
401 runCheckersForBranchCondition(const Stmt *Condition, ExplodedNodeSet &Dst, ExplodedNode *Pred, ExprEngine &Eng) argument
435 runChecker(CheckerManager::CheckDeadSymbolsFunc checkFn, NodeBuilder &Bldr, ExplodedNode *Pred) argument
531 ExplodedNode *Pred = *NI; local
[all...]
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
H A Dsplit_join_fn_imps.hpp48 template<typename Pred>
51 split(Pred pred, PB_DS_CLASS_C_DEC& other)
H A Drc_binomial_heap_.hpp145 template<typename Pred>
147 erase_if(Pred pred);
149 template<typename Pred>
151 split(Pred pred, PB_DS_CLASS_C_DEC& other);
H A Derase_fn_imps.hpp92 template<typename Pred>
95 erase_if(Pred pred)
/freebsd-9.3-release/contrib/llvm/include/llvm/Analysis/
H A DBlockFrequencyImpl.h140 BlockT *Pred = *PI;
146 return Pred;
160 if(BlockT *Pred = getSingleBlockPred(BB)) {
161 if (BlocksInLoop.count(Pred))
162 setBlockFreq(BB, getEdgeFreq(Pred, BB));
174 BlockT *Pred = *PI; local
176 if (isBackedge(Pred, BB)) {
178 } else if (BlocksInLoop.count(Pred)) {
179 incBlockFreq(BB, getEdgeFreq(Pred, BB));
222 BlockT *Pred local
300 BlockT *Pred = *PI; local
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/Transforms/Utils/
H A DSSAUpdaterImpl.h125 BlkT *Pred = Preds[p]; local
128 BBMap.FindAndConstruct(Pred);
135 ValT PredVal = AvailableVals->lookup(Pred);
136 BBInfo *PredInfo = new (Allocator) BBInfo(Pred, PredVal);
238 BBInfo *Pred = Info->Preds[p]; local
241 if (Pred->BlkNum == 0) {
242 Pred->AvailableVal = Traits::GetUndefVal(Pred->BB, Updater);
243 (*AvailableVals)[Pred->BB] = Pred
268 IsDefInDomFrontier(const BBInfo *Pred, const BBInfo *IDom) argument
360 BlkT *Pred = PredInfo->BB; local
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/
H A DThumb2RegisterInfo.h36 ARMCC::CondCodes Pred = ARMCC::AL,
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/pairing_heap_/
H A Dpairing_heap_.hpp169 template<typename Pred>
171 erase_if(Pred pred);
173 template<typename Pred>
175 split(Pred pred, PB_DS_CLASS_C_DEC& other);
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
H A Derase_fn_imps.hpp62 template<typename Pred>
65 erase_if(Pred pred)
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
H A Derase_fn_imps.hpp76 template<typename Pred>
79 erase_if(Pred pred)
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/thin_heap_/
H A Dsplit_join_fn_imps.hpp48 template<typename Pred>
51 split(Pred pred, PB_DS_CLASS_C_DEC& other)
/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/
H A DAnalysis.h73 ISD::CondCode getFCmpCondCode(FCmpInst::Predicate Pred);
82 ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred);
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DCmpInstAnalysis.cpp45 ICmpInst::Predicate Pred = InvertPred ? ICI->getInversePredicate() local
47 switch (Pred) {

Completed in 172 milliseconds

1234567