/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | PriorityWorklist.h | 93 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/ |
D | PriorityWorklist.h | 93 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/ |
D | DeltaTree.cpp | 55 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/ |
D | DeltaTree.cpp | 57 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/ |
D | packet_buffer.h | 74 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
|
D | packet_buffer.cc | 78 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()
|
D | packet_buffer_unittest.cc | 41 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/ |
D | PriorityWorklist.h | 90 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/ |
D | NonRelocatableStringpool.cpp | 36 auto InsertResult = Strings.insert({S, Entry}); in internString() local 37 return InsertResult.first->getKey(); in internString()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | NonRelocatableStringpool.cpp | 36 auto InsertResult = Strings.insert({S, Entry}); in internString() local 37 return InsertResult.first->getKey(); in internString()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | SpeculateAroundPHIs.cpp | 227 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/ |
D | SpeculateAroundPHIs.cpp | 227 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/ |
D | DebugMap.cpp | 29 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/ |
D | DebugMap.cpp | 48 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/ |
D | packet_buffer_fuzzer.cc | 21 void IgnoreResult(video_coding::PacketBuffer::InsertResult result) {} in IgnoreResult()
|
/external/llvm/lib/DebugInfo/Symbolize/ |
D | Symbolize.cpp | 417 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/ |
D | VirtualInstruction.cpp | 380 auto InsertResult = UsedInsts.insert(VInst); in walkReachable() local 381 if (!InsertResult.second) in walkReachable()
|
/external/clang/lib/CodeGen/ |
D | CodeGenTypes.cpp | 685 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/ |
D | Symbolize.cpp | 511 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/ |
D | Symbolize.cpp | 514 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/ |
D | CoverageMappingReader.cpp | 396 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/ |
D | CodeViewDebug.cpp | 277 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/ |
D | PredicateInfo.cpp | 728 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/ |
D | CodeGenTypes.cpp | 828 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/ |
D | LazyCallGraph.cpp | 1411 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()
|