Searched refs:isNew (Results 1 - 11 of 11) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp92 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; local
93 (void)isNew; // Silence compiler warning.
94 assert(isNew && "Node emitted out of order - early");
183 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; local
184 (void)isNew; // Silence compiler warning.
185 assert(isNew && "Node emitted out of order - early");
259 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; local
260 (void)isNew; // Silence compiler warning.
261 assert(isNew && "Node emitted out of order - early");
560 bool isNew
[all...]
H A DScheduleDAGSDNodes.cpp784 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second;
785 (void)isNew; // Silence compiler warning.
786 assert(isNew && "Node emitted out of order - early");
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp58 bool isNew; local
59 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew);
61 if (isNew)
284 bool isNew; local
285 ExplodedNode *BindedRetNode = G.getNode(Loc, state, false, &isNew);
287 if (!isNew)
310 bool isNew; local
312 ExplodedNode *CEENode = G.getNode(Loc, CEEState, false, &isNew);
314 if (!isNew)
447 bool isNew; local
[all...]
H A DCoreEngine.cpp562 bool isNew; local
563 ExplodedNode *Node = G->getNode(Loc, N->getState(), false, &isNew);
565 return isNew ? Node : 0;
/freebsd-10.0-release/usr.bin/make/
H A Dtarg.c173 Boolean isNew; /* Set TRUE if Hash_CreateEntry had to create */ local
177 he = Hash_CreateEntry(&targets, name, &isNew);
178 if (isNew) {
/freebsd-10.0-release/contrib/bmake/
H A Dtarg.c338 Boolean isNew; /* Set TRUE if Hash_CreateEntry had to create */ local
349 he = Hash_CreateEntry(&targets, name, &isNew);
350 if (!isNew)
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DTwoAddressInstructionPass.cpp682 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second; local
683 if (!isNew)
695 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second; local
696 if (!isNew)
700 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second; local
701 if (!isNew)
730 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second; local
731 if (!isNew)
H A DMachineLICM.cpp821 bool isNew = RegSeen.insert(Reg); local
828 if (isNew && !isKill)
831 else if (!isNew && isKill)
853 bool isNew = RegSeen.insert(Reg); local
856 else if (!isNew && isOperandKill(MO, MRI)) {
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseExprCXX.cpp1869 bool isNew = Tok.getKind() == tok::kw_new; local
1884 Op = isNew? OO_Array_New : OO_Array_Delete;
1886 Op = isNew? OO_New : OO_Delete;
/freebsd-10.0-release/contrib/sqlite3/
H A Dsqlite3.c102213 sqlite3TriggerColmask( Parse *pParse, Trigger *pTrigger, ExprList *pChanges, int isNew, int tr_tm, Table *pTab, int orconf ) argument
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c98228 sqlite3TriggerColmask( Parse *pParse, Trigger *pTrigger, ExprList *pChanges, int isNew, int tr_tm, Table *pTab, int orconf ) argument
[all...]

Completed in 592 milliseconds