| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | InMemoryModuleCache.cpp | 27 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-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Type.cpp | 337 auto Insertion = pImpl->FunctionTypes.insert_as(nullptr, Key); in get() local 338 if (Insertion.second) { in get() 345 *Insertion.first = FT; in get() 348 FT = *Insertion.first; in get() 383 auto Insertion = pImpl->AnonStructTypes.insert_as(nullptr, Key); in get() local 384 if (Insertion.second) { in get() 390 *Insertion.first = ST; in get() 393 ST = *Insertion.first; in get()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Basic/ |
| H A D | FileManager.cpp | 452 auto Insertion = SeenBypassFileEntries->insert( in getBypassFile() local 454 if (!Insertion.second) in getBypassFile() 455 return FileEntryRef(*Insertion.first); in getBypassFile() 461 Insertion.first->second = FileEntryRef::MapValue(BFE, VF.getDir()); in getBypassFile() 462 BFE.LastRef = FileEntryRef(*Insertion.first); in getBypassFile() 470 return FileEntryRef(*Insertion.first); in getBypassFile()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaAvailability.cpp | 400 Optional<AttributeInsertion> Insertion = createAttributeInsertion( in DoEmitAvailabilityWarning() local 402 if (!Insertion) in DoEmitAvailabilityWarning() 411 Insertion->Loc, in DoEmitAvailabilityWarning() 412 (llvm::Twine(Insertion->Prefix) + "API_AVAILABLE(" + PlatformName + in DoEmitAvailabilityWarning() 413 "(" + Introduced + "))" + Insertion->Suffix) in DoEmitAvailabilityWarning()
|
| H A D | SemaDecl.cpp | 15495 SmallString<64> Insertion; in createFriendTagNNSFixIt() local 15496 llvm::raw_svector_ostream OS(Insertion); in createFriendTagNNSFixIt() 15502 return FixItHint::CreateInsertion(NameLoc, Insertion); in createFriendTagNNSFixIt()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCCodeView.cpp | 149 auto Insertion = in addToStringTable() local 153 std::make_pair(Insertion.first->first(), Insertion.first->second); in addToStringTable() 154 if (Insertion.second) { in addToStringTable()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Object/ |
| H A D | ArchiveWriter.cpp | 227 auto Insertion = MemberNames.insert({M.MemberName, uint64_t(0)}); in printMemberHeader() local 228 if (Insertion.second) { in printMemberHeader() 229 Insertion.first->second = StringTable.tell(); in printMemberHeader() 232 NamePos = Insertion.first->second; in printMemberHeader()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | MergeICmps.cpp | 128 const auto Insertion = BaseToIndex.try_emplace(Base, Order); in getBaseId() local 129 if (Insertion.second) in getBaseId() 131 return Insertion.first->second; in getBaseId()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.cpp | 732 auto Insertion = MetadataMap.insert(std::make_pair(MD, MDIndex(F))); in enumerateMetadataImpl() local 733 MDIndex &Entry = Insertion.first->second; in enumerateMetadataImpl() 734 if (!Insertion.second) { in enumerateMetadataImpl() 737 dropFunctionFromMetadata(*Insertion.first); in enumerateMetadataImpl()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | CodeViewDebug.cpp | 209 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); in maybeRecordFile() local 210 if (Insertion.second) { in maybeRecordFile() 237 return Insertion.first->second; in maybeRecordFile() 1371 auto Insertion = FnDebugInfo.insert({&GV, std::make_unique<FunctionInfo>()}); in beginFunctionImpl() local 1372 assert(Insertion.second && "function already has info"); in beginFunctionImpl() 1373 CurFn = Insertion.first->second.get(); in beginFunctionImpl() 3080 auto Insertion = ScopeGlobals.insert( in collectGlobalVariableInfo() local 3082 if (Insertion.second) in collectGlobalVariableInfo() 3083 Insertion.first->second = std::make_unique<GlobalVariableList>(); in collectGlobalVariableInfo() 3084 VariableList = Insertion.first->second.get(); in collectGlobalVariableInfo()
|
| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | AsmWriterEmitter.cpp | 1105 auto Insertion = in EmitPrintAliasInstruction() local 1107 if (Insertion.second) { in EmitPrintAliasInstruction() 1112 unsigned AsmStrOffset = Insertion.first->second; in EmitPrintAliasInstruction()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseTemplate.cpp | 1011 FixItHint Insertion; in DiagnoseMisplacedEllipsis() local 1013 Insertion = FixItHint::CreateInsertion(CorrectLoc, "..."); in DiagnoseMisplacedEllipsis() 1015 << FixItHint::CreateRemoval(EllipsisLoc) << Insertion in DiagnoseMisplacedEllipsis()
|
| H A D | ParseDeclCXX.cpp | 2489 FixItHint Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() local 2494 Insertion = FixItHint::CreateInsertion(VS.getFirstLocation(), Name); in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() 2500 << FixItHint::CreateRemoval(SpecLoc) << Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() 2510 FixItHint Insertion = FixItHint::CreateInsertion(VS.getFirstLocation(), Name); in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() local 2518 << Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq()
|
| /freebsd-13.1/crypto/heimdal/lib/wind/ |
| H A D | rfc3492.txt | 49 3.2 Insertion unsort coding...............................4 190 string: they are simply copied all at once. "Insertion unsort 210 3.2 Insertion unsort coding
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | AsmParser.cpp | 4090 std::pair<StringRef, unsigned> Insertion = in parseDirectiveCVString() local 4092 getStreamer().emitInt32(Insertion.second); in parseDirectiveCVString()
|
| H A D | MasmParser.cpp | 5466 std::pair<StringRef, unsigned> Insertion = in parseDirectiveCVString() local 5468 getStreamer().emitIntValue(Insertion.second, 4); in parseDirectiveCVString()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZScheduleZ196.td | 287 // Insertion
|
| H A D | SystemZScheduleZEC12.td | 298 // Insertion
|
| H A D | SystemZScheduleZ13.td | 324 // Insertion
|
| H A D | SystemZScheduleZ15.td | 329 // Insertion
|
| H A D | SystemZScheduleZ14.td | 325 // Insertion
|
| H A D | SystemZInstrInfo.td | 887 // Insertion
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIInstructions.td | 1017 /********** Extraction, Insertion, Building and Casting **********/
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 14131 if (SDValue Insertion = lowerShuffleAsElementInsertion( in lowerV2F64Shuffle() local 14133 return Insertion; in lowerV2F64Shuffle() 14138 if (SDValue Insertion = lowerShuffleAsElementInsertion( in lowerV2F64Shuffle() local 14140 return Insertion; in lowerV2F64Shuffle() 14216 if (SDValue Insertion = lowerShuffleAsElementInsertion( in lowerV2I64Shuffle() local 14218 return Insertion; in lowerV2I64Shuffle() 14222 if (SDValue Insertion = lowerShuffleAsElementInsertion( in lowerV2I64Shuffle() local 14224 return Insertion; in lowerV2I64Shuffle() 17541 if (SDValue Insertion = lowerShuffleAsElementInsertion( in lower256BitShuffle() local 17543 return Insertion; in lower256BitShuffle() [all …]
|
| /freebsd-13.1/contrib/ncurses/misc/ |
| H A D | terminfo.src | 18057 # Insertion and deletion operations possible. 18093 # Insertion and deletion operations possible. 18127 # Insertion and deletion operations possible. 23993 # 4 = Insertion Replacement Mode (IRM),
|