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

/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp93 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; local
94 (void)isNew; // Silence compiler warning.
95 assert(isNew && "Node emitted out of order - early");
184 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; local
185 (void)isNew; // Silence compiler warning.
186 assert(isNew && "Node emitted out of order - early");
274 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; local
275 (void)isNew; // Silence compiler warning.
276 assert(isNew && "Node emitted out of order - early");
575 bool isNew
[all...]
H A DScheduleDAGSDNodes.cpp782 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second;
783 (void)isNew; // Silence compiler warning.
784 assert(isNew && "Node emitted out of order - early");
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp61 bool isNew; local
62 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew);
64 if (isNew)
287 bool isNew; local
288 ExplodedNode *BindedRetNode = G.getNode(Loc, state, false, &isNew);
290 if (!isNew)
313 bool isNew; local
315 ExplodedNode *CEENode = G.getNode(Loc, CEEState, false, &isNew);
317 if (!isNew)
450 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-9.3-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-9.3-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-9.3-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-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseExprCXX.cpp2038 bool isNew = Tok.getKind() == tok::kw_new; local
2053 Op = isNew? OO_Array_New : OO_Array_Delete;
2055 Op = isNew? OO_New : OO_Delete;

Completed in 233 milliseconds