Home
last modified time | relevance | path

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

/freebsd-13.1/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-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegisterPressure.h307 auto InsertRes = Regs.insert(IndexMaskPair(SparseIndex, Pair.LaneMask)); in insert() local
308 if (!InsertRes.second) { in insert()
309 LaneBitmask PrevMask = InsertRes.first->LaneMask; in insert()
310 InsertRes.first->LaneMask |= Pair.LaneMask; in insert()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1252 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1254 if (InsertRes.second) { in getNonLocalPointerDepFromBB()
1263 if (InsertRes.first->second != Pointer.getAddr()) { in getNonLocalPointerDepFromBB()
1315 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> InsertRes = in getNonLocalPointerDepFromBB() local
1318 if (!InsertRes.second) { in getNonLocalPointerDepFromBB()
1324 if (InsertRes.first->second == PredPtrVal) in getNonLocalPointerDepFromBB()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp9511 auto InsertRes = ImportDeclErrors.insert({From, Error}); in setImportDeclError() local
9512 (void)InsertRes; in setImportDeclError()
9515 assert(InsertRes.second || InsertRes.first->second.Error == Error.Error); in setImportDeclError()