Home
last modified time | relevance | path

Searched refs:Mapped (Results 1 – 18 of 18) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp89 Mapped |= 1; in PerformExpensiveChecks()
111 Mapped |= 2; in PerformExpensiveChecks()
113 Mapped |= 4; in PerformExpensiveChecks()
115 Mapped |= 8; in PerformExpensiveChecks()
117 Mapped |= 16; in PerformExpensiveChecks()
119 Mapped |= 32; in PerformExpensiveChecks()
121 Mapped |= 64; in PerformExpensiveChecks()
156 } else if (Mapped & (Mapped - 1)) { in PerformExpensiveChecks()
163 if (Mapped & 1) in PerformExpensiveChecks()
165 if (Mapped & 2) in PerformExpensiveChecks()
[all …]
/llvm-project-15.0.7/libcxx/test/std/containers/
H A Dmap_allocator_requirement_test_templates.h392 Mapped m(1); in testMapEmplace()
393 cc->expect<Key&, Mapped&>(); in testMapEmplace()
406 Mapped m(1); in testMapEmplace()
407 cc->expect<Key&&, Mapped&&>(); in testMapEmplace()
413 Mapped m2(2); in testMapEmplace()
568 Mapped m(1); in testMapEmplaceHint()
569 cc->expect<Key&, Mapped&>(); in testMapEmplaceHint()
577 Mapped m2(2); in testMapEmplaceHint()
587 Mapped m(1); in testMapEmplaceHint()
588 cc->expect<Key&&, Mapped&&>(); in testMapEmplaceHint()
[all …]
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/
H A DConfusableIdentifierCheck.cpp152 llvm::SmallVector<const NamedDecl *> &Mapped = Mapper[skeleton(NDName)]; in check() local
153 for (const NamedDecl *OND : Mapped) { in check()
164 Mapped.push_back(ND); in check()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp464 auto Mapped = mapValue(V); in mapValue() local
465 assert((Mapped || (Flags & RF_NullMapMissingGlobalValues)) && in mapValue()
468 return Mapped; in mapValue()
474 Value *Mapped = nullptr; in mapValue() local
477 Mapped = mapValueOrNull(Op); in mapValue()
478 if (!Mapped) in mapValue()
480 if (Mapped != Op) in mapValue()
503 Ops.push_back(cast<Constant>(Mapped)); in mapValue()
507 Mapped = mapValueOrNull(C->getOperand(OpNo)); in mapValue()
508 if (!Mapped) in mapValue()
[all …]
H A DLoopVersioning.cpp166 auto Mapped = VMap.find(ClonedValue); in addPHINodes() local
167 if (Mapped != VMap.end()) in addPHINodes()
168 ClonedValue = Mapped->second; in addPHINodes()
/llvm-project-15.0.7/clang/lib/Format/
H A DMacroCallReconstructor.cpp194 FormatToken *Mapped = SpelledParentToReconstructedParent.lookup(Parent); in getParentInResult() local
195 if (!Mapped) in getParentInResult()
197 for (; Mapped; Mapped = SpelledParentToReconstructedParent.lookup(Parent)) { in getParentInResult()
198 Parent = Mapped; in getParentInResult()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DMinidumpYAML.cpp29 MapType Mapped = static_cast<typename EndianType::value_type>(Val); in mapRequiredAs() local
30 IO.mapRequired(Key, Mapped); in mapRequiredAs()
31 Val = static_cast<typename EndianType::value_type>(Mapped); in mapRequiredAs()
39 MapType Mapped = static_cast<typename EndianType::value_type>(Val); in mapOptionalAs() local
40 IO.mapOptional(Key, Mapped, Default); in mapOptionalAs()
41 Val = static_cast<typename EndianType::value_type>(Mapped); in mapOptionalAs()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DPathMapping.cpp72 if (llvm::Optional<std::string> Mapped = in applyPathMappings() local
74 V = std::move(*Mapped); in applyPathMappings()
/llvm-project-15.0.7/clang-tools-extra/clangd/refactor/
H A DRename.cpp928 std::vector<Range> Mapped; in getMappedRanges() local
930 Mapped.push_back(Lexed[I]); in getMappedRanges()
931 SPAN_ATTACH(Tracer, "mapped_ranges", static_cast<int64_t>(Mapped.size())); in getMappedRanges()
932 return Mapped; in getMappedRanges()
/llvm-project-15.0.7/lldb/docs/use/
H A Dsymbols.rst39 UUID values that point to dSYM files. See the "File Mapped UUID
257 File Mapped UUID Directories
260 File Mapped directories can be used for efficient dSYM file lookups for local
271 create a File Mapped UUID directory cache in
/llvm-project-15.0.7/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp811 : ExecutionCount(0), HasMultipleRegions(false), Mapped(false), Line(Line), in LineCoverageStats()
827 Mapped = in LineCoverageStats()
831 if (!Mapped) in LineCoverageStats()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DRenameTests.cpp1856 auto Mapped = in TEST() local
1858 if (!Mapped) in TEST()
1861 EXPECT_THAT(ExpectedMatches, UnorderedElementsAreArray(*Mapped)); in TEST()
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DMinidumpConstants.def137 HANDLE_MDMP_MEMTYPE(0x0040000, Mapped, MEM_MAPPED)
/llvm-project-15.0.7/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h666 bool Mapped; variable
682 bool isMapped() const { return Mapped; } in isMapped()
/llvm-project-15.0.7/polly/lib/Transform/
H A DZoneAlgo.cpp872 isl::union_map Mapped = isl::union_map(Map).apply_range(NormalizeMap); in normalizeValInst() local
873 Result = Result.unite(Mapped); in normalizeValInst()
/llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/
H A DVPlan.h2912 auto Mapped =
2915 Mapped, [](BaseTy &Block) { return isa<BlockTy>(&Block); });
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp2046 for (const typename Map::mapped_type::value_type Mapped : Result->second) in touchAndErase() local
2047 TouchedInstructions.set(InstrToDFSNum(Mapped)); in touchAndErase()
/llvm-project-15.0.7/llvm/docs/
H A DAMDGPUDwarfExtensionsForHeterogeneousDebugging.rst458 2.12 Support for Source Languages Mapped to SIMT Hardware