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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp94 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; local
95 (void)isNew; // Silence compiler warning.
96 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");
257 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; local
258 (void)isNew; // Silence compiler warning.
259 assert(isNew && "Node emitted out of order - early");
598 bool isNew
[all...]
H A DScheduleDAGSDNodes.cpp812 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second;
813 (void)isNew; // Silence compiler warning.
814 assert(isNew && "Node emitted out of order - early");
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp61 bool isNew; local
62 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew);
64 if (isNew) {
282 bool isNew; local
283 ExplodedNode *BindedRetNode = G.getNode(Loc, state, false, &isNew);
285 if (!isNew)
308 bool isNew; local
311 ExplodedNode *CEENode = G.getNode(Loc, CEEState, false, &isNew);
313 if (!isNew)
464 bool isNew; local
[all...]
H A DCoreEngine.cpp571 bool isNew; local
572 ExplodedNode *Node = G.getNode(Loc, N->getState(), false, &isNew);
574 return isNew ? Node : nullptr;
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DSymbolTable.cpp65 bool isNew = p.second; local
67 if (!isNew)
H A DRelocations.cpp1925 bool isNew;
1926 std::tie(t, isNew) = getThunk(isec, rel, src);
1928 if (isNew) {
H A DInputFiles.cpp600 bool isNew = local
604 if (isNew) {
/freebsd-11-stable/contrib/bmake/
H A Dtarg.c336 Boolean isNew; /* Set TRUE if Hash_CreateEntry had to create */ local
347 he = Hash_CreateEntry(&targets, name, &isNew);
348 if (!isNew)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTwoAddressInstructionPass.cpp793 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second; local
794 if (!isNew)
806 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second; local
807 if (!isNew)
811 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second; local
812 if (!isNew)
841 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second; local
842 if (!isNew)
H A DMachineLICM.cpp895 bool isNew = ConsiderSeen ? RegSeen.insert(Reg).second : false; local
904 if (isNew && !isKill && ConsiderUnseenAsDef)
907 else if (!isNew && isKill)
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp2483 bool isNew = Tok.getKind() == tok::kw_new;
2498 Op = isNew? OO_Array_New : OO_Array_Delete;
2500 Op = isNew? OO_New : OO_Delete;
/freebsd-11-stable/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...]
/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3.c139888 sqlite3TriggerColmask( Parse *pParse, Trigger *pTrigger, ExprList *pChanges, int isNew, int tr_tm, Table *pTab, int orconf ) argument
[all...]

Completed in 1186 milliseconds