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

/freebsd-13-stable/contrib/bmake/
H A Dhash.h152 Boolean isNew; local
154 (void)HashTable_CreateEntry(&set->tbl, key, &isNew);
155 return isNew;
H A Dtarg.c286 Boolean isNew; local
287 HashEntry *he = HashTable_CreateEntry(&allTargetsByName, name, &isNew);
288 if (!isNew)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp96 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; local
97 (void)isNew; // Silence compiler warning.
98 assert(isNew && "Node emitted out of order - early");
186 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; local
187 (void)isNew; // Silence compiler warning.
188 assert(isNew && "Node emitted out of order - early");
262 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; local
263 (void)isNew; // Silence compiler warning.
264 assert(isNew && "Node emitted out of order - early");
595 bool isNew
[all...]
H A DScheduleDAGSDNodes.cpp817 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second;
818 (void)isNew; // Silence compiler warning.
819 assert(isNew && "Node emitted out of order - early");
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp63 bool isNew; local
64 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew);
66 if (isNew) {
284 bool isNew; local
285 ExplodedNode *BindedRetNode = G.getNode(Loc, state, false, &isNew);
287 if (!isNew)
310 bool isNew; local
313 ExplodedNode *CEENode = G.getNode(Loc, CEEState, false, &isNew);
315 if (!isNew)
463 bool isNew; local
[all...]
H A DCoreEngine.cpp570 bool isNew; local
571 ExplodedNode *Node = G.getNode(Loc, N->getState(), false, &isNew);
573 return isNew ? Node : nullptr;
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DSymbolTable.cpp71 bool isNew = p.second; local
73 if (!isNew)
H A DRelocations.cpp1960 bool isNew;
1961 std::tie(t, isNew) = getThunk(isec, rel, src);
1963 if (isNew) {
H A DInputFiles.cpp610 bool isNew = local
614 if (isNew) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTwoAddressInstructionPass.cpp644 bool isNew = SrcRegMap.insert(std::make_pair(NewReg, Reg)).second; local
645 if (!isNew)
657 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second; local
658 if (!isNew)
662 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second; local
663 if (!isNew)
692 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second; local
693 if (!isNew)
H A DMachineLICM.cpp909 bool isNew = ConsiderSeen ? RegSeen.insert(Reg).second : false; local
918 if (isNew && !isKill && ConsiderUnseenAsDef)
921 else if (!isNew && isKill)
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp2521 bool isNew = Tok.getKind() == tok::kw_new;
2536 Op = isNew? OO_Array_New : OO_Array_Delete;
2538 Op = isNew? OO_New : OO_Delete;
/freebsd-13-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 613 milliseconds