Home
last modified time | relevance | path

Searched refs:Insertion (Results 1 – 25 of 33) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DInMemoryModuleCache.cpp27 auto Insertion = PCMs.insert(std::make_pair(Filename, std::move(Buffer))); in addPCM() local
28 assert(Insertion.second && "Already has a PCM"); in addPCM()
29 return *Insertion.first->second.Buffer; in addPCM()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp381 auto Insertion = pImpl->FunctionTypes.insert_as(nullptr, Key); in get() local
382 if (Insertion.second) { in get()
389 *Insertion.first = FT; in get()
392 FT = *Insertion.first; in get()
427 auto Insertion = pImpl->AnonStructTypes.insert_as(nullptr, Key); in get() local
428 if (Insertion.second) { in get()
434 *Insertion.first = ST; in get()
437 ST = *Insertion.first; in get()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DFileManager.cpp464 auto Insertion = SeenBypassFileEntries->insert( in getBypassFile() local
466 if (!Insertion.second) in getBypassFile()
467 return FileEntryRef(*Insertion.first); in getBypassFile()
472 Insertion.first->second = FileEntryRef::MapValue(*BFE, VF.getDir()); in getBypassFile()
479 return FileEntryRef(*Insertion.first); in getBypassFile()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp135 auto Insertion = in addToStringTable() local
139 std::make_pair(Insertion.first->first(), Insertion.first->second); in addToStringTable()
140 if (Insertion.second) { in addToStringTable()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAvailability.cpp513 std::optional<AttributeInsertion> Insertion = createAttributeInsertion( in DoEmitAvailabilityWarning() local
515 if (!Insertion) in DoEmitAvailabilityWarning()
542 Insertion->Loc, in DoEmitAvailabilityWarning()
543 (llvm::Twine(Insertion->Prefix) + "API_AVAILABLE(" + in DoEmitAvailabilityWarning()
544 *AvailablePlatform + "(" + Introduced + "))" + Insertion->Suffix) in DoEmitAvailabilityWarning()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTypes.cpp729 auto Insertion = RecordsWithOpaqueMemberPointers.try_emplace(C); in ConvertType() local
730 if (Insertion.second) in ConvertType()
731 Insertion.first->second = llvm::StructType::create(getLLVMContext()); in ConvertType()
732 ResultType = Insertion.first->second; in ConvertType()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMergeICmps.cpp121 const auto Insertion = BaseToIndex.try_emplace(Base, Order); in getBaseId() local
122 if (Insertion.second) in getBaseId()
124 return Insertion.first->second; in getBaseId()
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILValueEnumerator.cpp699 auto Insertion = MetadataMap.insert(std::make_pair(MD, MDIndex(F))); in enumerateMetadataImpl() local
700 MDIndex &Entry = Insertion.first->second; in enumerateMetadataImpl()
701 if (!Insertion.second) { in enumerateMetadataImpl()
704 dropFunctionFromMetadata(*Insertion.first); in enumerateMetadataImpl()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp734 auto Insertion = MetadataMap.insert(std::make_pair(MD, MDIndex(F))); in enumerateMetadataImpl() local
735 MDIndex &Entry = Insertion.first->second; in enumerateMetadataImpl()
736 if (!Insertion.second) { in enumerateMetadataImpl()
739 dropFunctionFromMetadata(*Insertion.first); in enumerateMetadataImpl()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp205 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); in maybeRecordFile() local
206 if (Insertion.second) { in maybeRecordFile()
233 return Insertion.first->second; in maybeRecordFile()
1494 auto Insertion = FnDebugInfo.insert({&GV, std::make_unique<FunctionInfo>()}); in beginFunctionImpl() local
1495 assert(Insertion.second && "function already has info"); in beginFunctionImpl()
1496 CurFn = Insertion.first->second.get(); in beginFunctionImpl()
3284 auto Insertion = ScopeGlobals.insert( in collectGlobalVariableInfo() local
3286 if (Insertion.second) in collectGlobalVariableInfo()
3287 Insertion.first->second = std::make_unique<GlobalVariableList>(); in collectGlobalVariableInfo()
3288 VariableList = Insertion.first->second.get(); in collectGlobalVariableInfo()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DArchiveWriter.cpp316 auto Insertion = MemberNames.insert({M.MemberName, uint64_t(0)}); in printMemberHeader() local
317 if (Insertion.second) { in printMemberHeader()
318 Insertion.first->second = StringTable.tell(); in printMemberHeader()
325 NamePos = Insertion.first->second; in printMemberHeader()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp1140 auto Insertion = in EmitPrintAliasInstruction() local
1142 if (Insertion.second) { in EmitPrintAliasInstruction()
1147 unsigned AsmStrOffset = Insertion.first->second; in EmitPrintAliasInstruction()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseTemplate.cpp865 FixItHint Insertion; in DiagnoseMisplacedEllipsis() local
867 Insertion = FixItHint::CreateInsertion(CorrectLoc, "..."); in DiagnoseMisplacedEllipsis()
869 << FixItHint::CreateRemoval(EllipsisLoc) << Insertion in DiagnoseMisplacedEllipsis()
H A DParseDeclCXX.cpp2660 FixItHint Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() local
2665 Insertion = FixItHint::CreateInsertion(VS.getFirstLocation(), Name); in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq()
2671 << FixItHint::CreateRemoval(SpecLoc) << Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq()
2681 FixItHint Insertion = in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() local
2689 << FixItHint::CreateRemoval(RefQualifierLoc) << Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq()
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Dstream-receive-buffers.md108 Any redundant frames are released. Insertion at the end of the list
/freebsd/crypto/heimdal/lib/wind/
H A Drfc3492.txt49 3.2 Insertion unsort coding...............................4
190 string: they are simply copied all at once. "Insertion unsort
210 3.2 Insertion unsort coding
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp4063 std::pair<StringRef, unsigned> Insertion = in parseDirectiveCVString() local
4065 getStreamer().emitInt32(Insertion.second); in parseDirectiveCVString()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZScheduleZEC12.td298 // Insertion
H A DSystemZScheduleZ196.td287 // Insertion
H A DSystemZScheduleZ13.td324 // Insertion
H A DSystemZScheduleZ17.td332 // Insertion
H A DSystemZScheduleZ15.td329 // Insertion
H A DSystemZScheduleZ14.td325 // Insertion
H A DSystemZScheduleZ16.td329 // Insertion
/freebsd/contrib/one-true-awk/testdir/
H A Dfunstack.ok2474 D. S. Hirschberg An Insertion Technique for One-Sided
3427 Stuart H. Zweben An Optimal Insertion Algorithm for

12