/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTContext.h | 189 mutable SmallVector<Type *, 0> Types; 190 mutable llvm::FoldingSet<ExtQuals> ExtQualNodes; 191 mutable llvm::FoldingSet<ComplexType> ComplexTypes; 192 mutable llvm::FoldingSet<PointerType> PointerTypes{GeneralTypesLog2InitSize}; 193 mutable llvm::FoldingSet<AdjustedType> AdjustedTypes; 194 mutable llvm::FoldingSet<BlockPointerType> BlockPointerTypes; 195 mutable llvm::FoldingSet<LValueReferenceType> LValueReferenceTypes; 196 mutable llvm::FoldingSet<RValueReferenceType> RValueReferenceTypes; 197 mutable llvm::FoldingSet<MemberPointerType> MemberPointerTypes; 198 mutable llvm::ContextualFoldingSet<ConstantArrayType, ASTContext &> [all …]
|
H A D | NSAPI.h | 240 mutable IdentifierInfo *ClassIds[NumClassIds]; 242 mutable Selector NSStringSelectors[NumNSStringMethods]; 245 mutable Selector NSArraySelectors[NumNSArrayMethods]; 248 mutable Selector NSDictionarySelectors[NumNSDictionaryMethods]; 251 mutable Selector NSSetSelectors[NumNSSetMethods]; 254 mutable Selector NSNumberClassSelectors[NumNSNumberLiteralMethods]; 255 mutable Selector NSNumberInstanceSelectors[NumNSNumberLiteralMethods]; 257 mutable Selector objectForKeyedSubscriptSel, objectAtIndexedSubscriptSel, 261 mutable IdentifierInfo *BOOLId, *NSIntegerId, *NSUIntegerId; 262 mutable IdentifierInfo *NSASCIIStringEncodingId, *NSUTF8StringEncodingId;
|
H A D | RawCommentList.h | 175 mutable StringRef RawText; 176 mutable const char *BriefText = nullptr; 179 mutable unsigned RawTextValid : 1; 181 mutable unsigned BriefTextValid : 1; 233 mutable llvm::DenseMap<RawComment *, unsigned> CommentBeginLine; 234 mutable llvm::DenseMap<RawComment *, unsigned> CommentEndOffset;
|
H A D | ComparisonCategories.h | 105 mutable llvm::SmallVector< 223 mutable llvm::DenseMap<char, ComparisonCategoryInfo> Data; 224 mutable NamespaceDecl *StdNS = nullptr;
|
/freebsd/contrib/wireguard-tools/ |
H A D | config.c | 197 char *mutable = strdup(value); in parse_endpoint() local 206 if (!mutable) { in parse_endpoint() 211 free(mutable); in parse_endpoint() 215 if (mutable[0] == '[') { in parse_endpoint() 216 begin = &mutable[1]; in parse_endpoint() 217 end = strchr(mutable, ']'); in parse_endpoint() 219 free(mutable); in parse_endpoint() 225 free(mutable); in parse_endpoint() 230 begin = mutable; in parse_endpoint() 231 end = strrchr(mutable, ':'); in parse_endpoint() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | SymbolCache.h | 46 mutable std::vector<std::unique_ptr<NativeRawSymbol>> Cache; 50 mutable DenseMap<codeview::TypeIndex, SymIndexId> TypeIndexToSymbolId; 55 mutable DenseMap<std::pair<codeview::TypeIndex, uint32_t>, SymIndexId> 60 mutable std::vector<SymIndexId> Compilands; 63 mutable std::vector<std::unique_ptr<NativeSourceFile>> SourceFiles; 66 mutable DenseMap<uint32_t, SymIndexId> FileNameOffsetToId; 69 mutable DenseMap<uint32_t, SymIndexId> GlobalOffsetToSymbolId; 72 mutable DenseMap<std::pair<uint32_t, uint32_t>, SymIndexId> AddressToSymbolId; 74 mutable DenseMap<std::pair<uint32_t, uint32_t>, SymIndexId> 78 mutable DenseMap<std::pair<uint16_t, uint32_t>, SymIndexId> [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | CodeGenTarget.h | 61 mutable DenseMap<const Record *, std::unique_ptr<CodeGenInstruction>> 63 mutable std::unique_ptr<CodeGenRegBank> RegBank; 64 mutable std::vector<Record *> RegAltNameIndices; 65 mutable SmallVector<ValueTypeByHwMode, 8> LegalValueTypes; 68 mutable bool HasVariableLengthEncodings = false; 74 mutable std::unique_ptr<CodeGenSchedModels> SchedModels; 76 mutable StringRef InstNamespace; 77 mutable std::vector<const CodeGenInstruction *> InstrsByEnum; 78 mutable unsigned NumPseudoInstructions = 0;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | ManagedStatic.h | 52 mutable std::atomic<void *> Ptr{}; 53 mutable void (*DeleterFn)(void *) = nullptr; 54 mutable const ManagedStaticBase *Next = nullptr; 58 mutable std::atomic<void *> Ptr; 59 mutable void (*DeleterFn)(void *); 60 mutable const ManagedStaticBase *Next;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCSymbol.h | 79 mutable MCFragment *Fragment = nullptr; 94 mutable unsigned IsUsed : 1; 96 mutable unsigned IsRegistered : 1; 100 mutable unsigned IsExternal : 1; 103 mutable unsigned IsPrivateExtern : 1; 106 mutable unsigned IsWeakExternal : 1; 113 mutable unsigned IsUsedInReloc : 1; 135 mutable uint32_t Flags : NumFlagsBits; 138 mutable uint32_t Index = 0;
|
H A D | MCSectionCOFF.h | 33 mutable unsigned Characteristics; 40 mutable unsigned WinCFISectionID = ~0U; 48 mutable int Selection;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
H A D | TraceCursorIntelPT.h | 80 std::optional<DecodedThread::TSCRange> mutable m_tsc_range; 81 bool mutable m_tsc_range_calculated = false; 85 std::optional<DecodedThread::NanosecondsRange> mutable m_nanoseconds_range; 86 bool mutable m_nanoseconds_range_calculated = false;
|
/freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
H A D | ToolChain.h | 160 mutable std::unique_ptr<Tool> Clang; 161 mutable std::unique_ptr<Tool> Flang; 162 mutable std::unique_ptr<Tool> Assemble; 163 mutable std::unique_ptr<Tool> Link; 164 mutable std::unique_ptr<Tool> StaticLibTool; 165 mutable std::unique_ptr<Tool> IfsMerge; 166 mutable std::unique_ptr<Tool> OffloadBundler; 167 mutable std::unique_ptr<Tool> OffloadPackager; 168 mutable std::unique_ptr<Tool> LinkerWrapper; 181 mutable bool SanitizerArgsChecked = false; [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | LazyMachineBlockFrequencyInfo.h | 40 mutable std::unique_ptr<MachineBlockFrequencyInfo> OwnedMBFI; 43 mutable std::unique_ptr<MachineLoopInfo> OwnedMLI; 46 mutable std::unique_ptr<MachineDominatorTree> OwnedMDT;
|
H A D | RegisterBankInfo.h | 402 mutable DenseMap<hash_code, std::unique_ptr<const PartialMapping>> 407 mutable DenseMap<hash_code, std::unique_ptr<const ValueMapping>> 412 mutable DenseMap<hash_code, std::unique_ptr<ValueMapping[]>> 417 mutable DenseMap<hash_code, std::unique_ptr<const InstructionMapping>> 422 mutable DenseMap<unsigned, const TargetRegisterClass *> PhysRegMinimalRCs;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFDebugAbbrev.h | 62 mutable DWARFAbbreviationDeclarationSetMap AbbrDeclSets; 63 mutable DWARFAbbreviationDeclarationSetMap::const_iterator PrevAbbrOffsetPos; 64 mutable std::optional<DataExtractor> Data;
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
H A D | Darwin.h | 148 mutable std::unique_ptr<tools::darwin::Lipo> Lipo; 149 mutable std::unique_ptr<tools::darwin::Dsymutil> Dsymutil; 150 mutable std::unique_ptr<tools::darwin::VerifyDebug> VerifyDebug; 153 mutable std::optional<VersionTuple> LinkerVersion; 301 mutable bool TargetInitialized; 318 mutable DarwinPlatformKind TargetPlatform; 319 mutable DarwinEnvironmentKind TargetEnvironment; 322 mutable VersionTuple TargetVersion; 324 mutable VersionTuple OSTargetVersion; 327 mutable std::optional<DarwinSDKInfo> SDKInfo; [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | SourceManager.h | 134 mutable std::unique_ptr<llvm::MemoryBuffer> Buffer; 163 mutable LineOffsetMapping SourceLineCache; 185 mutable unsigned IsBufferInvalid : 1; 669 mutable llvm::BumpPtrAllocator ContentCacheAlloc; 769 mutable FileID LastFileIDLookup; 778 mutable FileID LastLineNoFileIDQuery; 779 mutable const SrcMgr::ContentCache *LastLineNoContentCache; 780 mutable unsigned LastLineNoFilePos; 781 mutable unsigned LastLineNoResult; 790 mutable unsigned NumLinearScans = 0; [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVSubtarget.h | 248 mutable std::unique_ptr<CallLowering> CallLoweringInfo; 249 mutable std::unique_ptr<InstructionSelector> InstSelector; 250 mutable std::unique_ptr<LegalizerInfo> Legalizer; 251 mutable std::unique_ptr<RISCVRegisterBankInfo> RegBankInfo;
|
/freebsd/contrib/llvm-project/clang/lib/Index/ |
H A D | FileIndexRecord.h | 30 mutable bool IsSorted = false; 31 mutable std::vector<DeclOccurrence> Decls;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Disassembler/ |
H A D | AMDGPUDisassembler.h | 99 mutable ArrayRef<uint8_t> Bytes; 100 mutable uint32_t Literal; 101 mutable uint64_t Literal64; 102 mutable bool HasLiteral; 103 mutable std::optional<bool> EnableWavefrontSize32;
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
H A D | InstructionView.h | 32 mutable std::string InstructionString; 33 mutable raw_string_ostream InstrStream;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | PredIteratorCache.h | 29 mutable DenseMap<BasicBlock *, BasicBlock **> BlockToPredsMap; 30 mutable DenseMap<BasicBlock *, unsigned> BlockToPredCountMap;
|
/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/ |
H A D | nsan_stats.h | 74 mutable __sanitizer::Mutex check_and_warning_mutex; 85 mutable __sanitizer::Mutex TrackedLoadsMutex;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCTargetMachine.h | 35 mutable bool HasGlibcHWCAPAccess = false; 37 mutable StringMap<std::unique_ptr<PPCSubtarget>> SubtargetMap;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBEvent.h | 93 mutable lldb::EventSP m_event_sp; 94 mutable lldb_private::Event *m_opaque_ptr = nullptr;
|