Home
last modified time | relevance | path

Searched refs:InsertResult (Results 1 – 25 of 53) sorted by relevance

123

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DPriorityWorklist.h93 auto InsertResult = M.insert({X, V.size()}); in insert() local
94 if (InsertResult.second) { in insert()
100 auto &Index = InsertResult.first->second; in insert()
125 auto InsertResult = M.insert({V[i], i}); in insert() local
126 if (InsertResult.second) in insert()
131 ptrdiff_t &Index = InsertResult.first->second; in insert()
/external/llvm-project/llvm/include/llvm/ADT/
DPriorityWorklist.h93 auto InsertResult = M.insert({X, V.size()}); in insert() local
94 if (InsertResult.second) { in insert()
100 auto &Index = InsertResult.first->second; in insert()
125 auto InsertResult = M.insert({V[i], i}); in insert() local
126 if (InsertResult.second) in insert()
131 ptrdiff_t &Index = InsertResult.first->second; in insert()
/external/clang/lib/Rewrite/
DDeltaTree.cpp55 struct InsertResult { struct in __anon07c1678e0111::DeltaTreeNode
106 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
108 void DoSplit(InsertResult &InsertRes);
132 DeltaTreeInteriorNode(const InsertResult &IR) in DeltaTreeInteriorNode()
180 InsertResult *InsertRes) { in DoInsertion()
293 void DeltaTreeNode::DoSplit(InsertResult &InsertRes) { in DoSplit()
455 DeltaTreeNode::InsertResult InsertRes; in AddDelta()
/external/llvm-project/clang/lib/Rewrite/
DDeltaTree.cpp57 struct InsertResult { struct in __anon6aae3e7c0111::DeltaTreeNode
109 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
111 void DoSplit(InsertResult &InsertRes);
136 DeltaTreeInteriorNode(const InsertResult &IR) in DeltaTreeInteriorNode()
185 InsertResult *InsertRes) { in DoInsertion()
298 void DeltaTreeNode::DoSplit(InsertResult &InsertRes) { in DoSplit()
459 DeltaTreeNode::InsertResult InsertRes; in AddDelta()
/external/webrtc/modules/video_coding/
Dpacket_buffer.h74 struct InsertResult { struct
85 InsertResult InsertPacket(std::unique_ptr<Packet> packet) ABSL_MUST_USE_RESULT argument
87 InsertResult InsertPadding(uint16_t seq_num) ABSL_MUST_USE_RESULT
Dpacket_buffer.cc78 PacketBuffer::InsertResult PacketBuffer::InsertPacket( in InsertPacket()
80 PacketBuffer::InsertResult result; in InsertPacket()
180 PacketBuffer::InsertResult PacketBuffer::InsertPadding(uint16_t seq_num) { in InsertPadding()
181 PacketBuffer::InsertResult result; in InsertPadding()
Dpacket_buffer_unittest.cc41 void IgnoreResult(PacketBuffer::InsertResult /*result*/) {} in IgnoreResult() argument
78 struct PacketBufferInsertResult : public PacketBuffer::InsertResult {
79 explicit PacketBufferInsertResult(PacketBuffer::InsertResult result) in PacketBufferInsertResult()
80 : InsertResult(std::move(result)) {} in PacketBufferInsertResult()
/external/llvm/include/llvm/ADT/
DPriorityWorklist.h90 auto InsertResult = M.insert({X, V.size()}); in insert() local
91 if (InsertResult.second) { in insert()
97 auto &Index = InsertResult.first->second; in insert()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DNonRelocatableStringpool.cpp36 auto InsertResult = Strings.insert({S, Entry}); in internString() local
37 return InsertResult.first->getKey(); in internString()
/external/llvm-project/llvm/lib/CodeGen/
DNonRelocatableStringpool.cpp36 auto InsertResult = Strings.insert({S, Entry}); in internString() local
37 return InsertResult.first->getKey(); in internString()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DSpeculateAroundPHIs.cpp227 auto InsertResult = CostsAndCounts.insert({IncomingC, {}}); in isSafeAndProfitableToSpeculateAroundPHI() local
229 ++InsertResult.first->second.Count; in isSafeAndProfitableToSpeculateAroundPHI()
231 if (!InsertResult.second) in isSafeAndProfitableToSpeculateAroundPHI()
234 int &MatCost = InsertResult.first->second.MatCost; in isSafeAndProfitableToSpeculateAroundPHI()
636 auto InsertResult = SpeculatedValueMap.insert({OpPN, {}}); in speculatePHIs() local
637 if (!InsertResult.second) in speculatePHIs()
640 auto &SpeculatedVals = InsertResult.first->second; in speculatePHIs()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSpeculateAroundPHIs.cpp227 auto InsertResult = CostsAndCounts.insert({IncomingC, {}}); in isSafeAndProfitableToSpeculateAroundPHI() local
229 ++InsertResult.first->second.Count; in isSafeAndProfitableToSpeculateAroundPHI()
231 if (!InsertResult.second) in isSafeAndProfitableToSpeculateAroundPHI()
234 int &MatCost = InsertResult.first->second.MatCost; in isSafeAndProfitableToSpeculateAroundPHI()
632 auto InsertResult = SpeculatedValueMap.insert({OpPN, {}}); in speculatePHIs() local
633 if (!InsertResult.second) in speculatePHIs()
636 auto &SpeculatedVals = InsertResult.first->second; in speculatePHIs()
/external/llvm/tools/dsymutil/
DDebugMap.cpp29 auto InsertResult = Symbols.insert( in addSymbol() local
32 if (ObjectAddress && InsertResult.second) in addSymbol()
33 AddressToMapping[*ObjectAddress] = &*InsertResult.first; in addSymbol()
34 return InsertResult.second; in addSymbol()
/external/llvm-project/llvm/tools/dsymutil/
DDebugMap.cpp48 auto InsertResult = Symbols.insert( in addSymbol() local
51 if (ObjectAddress && InsertResult.second) in addSymbol()
52 AddressToMapping[*ObjectAddress] = &*InsertResult.first; in addSymbol()
53 return InsertResult.second; in addSymbol()
/external/webrtc/test/fuzzers/
Dpacket_buffer_fuzzer.cc21 void IgnoreResult(video_coding::PacketBuffer::InsertResult result) {} in IgnoreResult()
/external/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp417 auto InsertResult = in getOrCreateModuleInfo() local
419 assert(InsertResult.second); in getOrCreateModuleInfo()
422 return InsertResult.first->second.get(); in getOrCreateModuleInfo()
/external/llvm-project/polly/lib/Support/
DVirtualInstruction.cpp380 auto InsertResult = UsedInsts.insert(VInst); in walkReachable() local
381 if (!InsertResult.second) in walkReachable()
/external/clang/lib/CodeGen/
DCodeGenTypes.cpp685 bool InsertResult = RecordsBeingLaidOut.insert(Key).second; in ConvertRecordDeclType() local
686 (void)InsertResult; in ConvertRecordDeclType()
687 assert(InsertResult && "Recursively compiling a struct?"); in ConvertRecordDeclType()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp511 auto InsertResult = in createModuleInfo() local
513 assert(InsertResult.second); in createModuleInfo()
516 return InsertResult.first->second.get(); in createModuleInfo()
/external/llvm-project/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp514 auto InsertResult = Modules.insert( in createModuleInfo() local
516 assert(InsertResult.second); in createModuleInfo()
519 return InsertResult.first->second.get(); in createModuleInfo()
/external/llvm/lib/ProfileData/Coverage/
DCoverageMappingReader.cpp396 auto InsertResult = in insertFunctionRecordIfNeeded() local
398 if (InsertResult.second) { in insertFunctionRecordIfNeeded()
407 size_t OldRecordIndex = InsertResult.first->second; in insertFunctionRecordIfNeeded()
/external/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp277 auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI}); in recordTypeIndexForDINode() local
278 (void)InsertResult; in recordTypeIndexForDINode()
279 assert(InsertResult.second && "DINode was already assigned a type index"); in recordTypeIndexForDINode()
1786 auto InsertResult = CompleteTypeIndices.insert({CTy, TypeIndex()}); in getCompleteTypeIndex() local
1787 if (!InsertResult.second) in getCompleteTypeIndex()
1788 return InsertResult.first->second; in getCompleteTypeIndex()
1816 InsertResult.first->second = TI; in getCompleteTypeIndex()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DPredicateInfo.cpp728 auto InsertResult = ValueInfoNums.insert({Operand, ValueInfos.size() - 1}); in getOrCreateValueInfo() local
729 assert(InsertResult.second && "Value info number already existed?"); in getOrCreateValueInfo()
730 return ValueInfos[InsertResult.first->second]; in getOrCreateValueInfo()
/external/llvm-project/clang/lib/CodeGen/
DCodeGenTypes.cpp828 bool InsertResult = RecordsBeingLaidOut.insert(Key).second; in ConvertRecordDeclType() local
829 (void)InsertResult; in ConvertRecordDeclType()
830 assert(InsertResult && "Recursively compiling a struct?"); in ConvertRecordDeclType()
/external/llvm-project/llvm/lib/Analysis/
DLazyCallGraph.cpp1411 auto InsertResult = in insertTrivialCallEdge() local
1413 if (!InsertResult.second) { in insertTrivialCallEdge()
1415 Edge &E = SourceN->Edges[InsertResult.first->second]; in insertTrivialCallEdge()
1444 auto InsertResult = in insertTrivialRefEdge() local
1446 if (!InsertResult.second) in insertTrivialRefEdge()

123