Home
last modified time | relevance | path

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

/freebsd/contrib/bmake/
H A Dhash.h159 bool isNew; in HashSet_Add() local
161 (void)HashTable_CreateEntry(&set->tbl, key, &isNew); in HashSet_Add()
162 return isNew; in HashSet_Add()
H A Dtarg.c273 bool isNew; in Targ_GetNode() local
274 HashEntry *he = HashTable_CreateEntry(&allTargetsByName, name, &isNew); in Targ_GetNode()
275 if (!isNew) in Targ_GetNode()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp93 bool isNew = VRBaseMap.insert(std::make_pair(Op, SrcReg)).second; in EmitCopyFromReg() local
94 (void)isNew; // Silence compiler warning. in EmitCopyFromReg()
95 assert(isNew && "Node emitted out of order - early"); in EmitCopyFromReg()
181 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in EmitCopyFromReg() local
182 (void)isNew; // Silence compiler warning. in EmitCopyFromReg()
183 assert(isNew && "Node emitted out of order - early"); in EmitCopyFromReg()
259 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in CreateVirtualRegisters() local
260 (void)isNew; // Silence compiler warning. in CreateVirtualRegisters()
261 assert(isNew && "Node emitted out of order - early"); in CreateVirtualRegisters()
626 bool isNew = VRBaseMap.insert(std::make_pair(Op, VRBase)).second; in EmitSubregNode() local
[all …]
H A DScheduleDAGSDNodes.cpp837 bool isNew = VRBaseMap.insert(std::make_pair(SU, VRBase)).second; in EmitPhysRegCopy() local
838 (void)isNew; // Silence compiler warning. in EmitPhysRegCopy()
839 assert(isNew && "Node emitted out of order - early"); in EmitPhysRegCopy()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp65 bool isNew; in processCallEnter() local
66 ExplodedNode *Node = G.getNode(Loc, state, false, &isNew); in processCallEnter()
68 if (isNew) { in processCallEnter()
357 bool isNew; in processCallExit() local
358 ExplodedNode *BindedRetNode = G.getNode(Loc, state, false, &isNew); in processCallExit()
360 if (!isNew) in processCallExit()
381 bool isNew; in processCallExit() local
384 ExplodedNode *CEENode = G.getNode(Loc, CEEState, false, &isNew); in processCallExit()
386 if (!isNew) in processCallExit()
563 bool isNew; in inlineCall() local
[all …]
H A DCoreEngine.cpp588 bool isNew; in generateCallExitBeginNode() local
589 ExplodedNode *Node = G.getNode(Loc, N->getState(), false, &isNew); in generateCallExitBeginNode()
591 return isNew ? Node : nullptr; in generateCallExitBeginNode()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTwoAddressInstructionPass.cpp858 bool isNew = DstRegMap.insert(std::make_pair(FromReg, ToReg)).second; in scanUses() local
859 if (!isNew) in scanUses()
863 bool isNew = DstRegMap.insert(std::make_pair(DstReg, ToReg)).second; in scanUses() local
864 if (!isNew) in scanUses()
893 bool isNew = SrcRegMap.insert(std::make_pair(DstReg, SrcReg)).second; in processCopy() local
894 if (!isNew) in processCopy()
H A DMachineLICM.cpp957 bool isNew = ConsiderSeen ? RegSeen.insert(Reg).second : false; in calcRegisterCost() local
966 if (isNew && !isKill && ConsiderUnseenAsDef) in calcRegisterCost()
969 else if (!isNew && isKill) in calcRegisterCost()
/freebsd/contrib/llvm-project/lld/ELF/
H A DRelocations.cpp2325 bool isNew; in createThunks() local
2326 std::tie(t, isNew) = getThunk(isec, rel, src); in createThunks()
2328 if (isNew) { in createThunks()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp2743 bool isNew = Tok.getKind() == tok::kw_new; in ParseUnqualifiedIdOperator() local
2758 Op = isNew? OO_Array_New : OO_Array_Delete; in ParseUnqualifiedIdOperator()
2760 Op = isNew? OO_New : OO_Delete; in ParseUnqualifiedIdOperator()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c153237 int isNew, /* 1 for new.* ref mask, 0 for old.* ref mask */
153246 assert( isNew==1 || isNew==0 );
153261 mask |= pPrg->aColmask[isNew];