Home
last modified time | relevance | path

Searched refs:InsertRes (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Rewrite/
H A DDeltaTree.cpp111 void DoSplit(InsertResult &InsertRes);
221 DoSplit(*InsertRes); in DoInsertion()
244 IN->Children[i] = InsertRes->LHS; in DoInsertion()
245 IN->Children[i+1] = InsertRes->RHS; in DoInsertion()
249 Values[i] = InsertRes->Split; in DoInsertion()
257 IN->Children[i] = InsertRes->LHS; in DoInsertion()
258 DeltaTreeNode *SubRHS = InsertRes->RHS; in DoInsertion()
262 DoSplit(*InsertRes); in DoInsertion()
331 InsertRes.LHS = this; in DoSplit()
332 InsertRes.RHS = NewNode; in DoSplit()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h308 auto InsertRes = Regs.insert(IndexMaskPair(SparseIndex, Pair.LaneMask)); in insert() local
309 if (!InsertRes.second) { in insert()
310 LaneBitmask PrevMask = InsertRes.first->LaneMask; in insert()
311 InsertRes.first->LaneMask |= Pair.LaneMask; in insert()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1281 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1283 if (InsertRes.second) { in getNonLocalPointerDepFromBB()
1292 if (InsertRes.first->second != Pointer.getAddr()) { in getNonLocalPointerDepFromBB()
1344 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1347 if (!InsertRes.second) { in getNonLocalPointerDepFromBB()
1353 if (InsertRes.first->second == PredPtrVal) in getNonLocalPointerDepFromBB()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp10386 auto InsertRes = ImportDeclErrors.insert({From, Error}); in setImportDeclError() local
10387 (void)InsertRes; in setImportDeclError()
10390 assert(InsertRes.second || InsertRes.first->second.Error == Error.Error); in setImportDeclError()