| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeTypes.cpp | 89 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 D | map_allocator_requirement_test_templates.h | 392 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 D | ConfusableIdentifierCheck.cpp | 152 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 D | ValueMapper.cpp | 464 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 D | LoopVersioning.cpp | 166 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 D | MacroCallReconstructor.cpp | 194 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 D | MinidumpYAML.cpp | 29 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 D | PathMapping.cpp | 72 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 D | Rename.cpp | 928 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 D | symbols.rst | 39 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 D | CoverageMapping.cpp | 811 : 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 D | RenameTests.cpp | 1856 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 D | MinidumpConstants.def | 137 HANDLE_MDMP_MEMTYPE(0x0040000, Mapped, MEM_MAPPED)
|
| /llvm-project-15.0.7/llvm/include/llvm/ProfileData/Coverage/ |
| H A D | CoverageMapping.h | 666 bool Mapped; variable 682 bool isMapped() const { return Mapped; } in isMapped()
|
| /llvm-project-15.0.7/polly/lib/Transform/ |
| H A D | ZoneAlgo.cpp | 872 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 D | VPlan.h | 2912 auto Mapped = 2915 Mapped, [](BaseTy &Block) { return isa<BlockTy>(&Block); });
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | NewGVN.cpp | 2046 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 D | AMDGPUDwarfExtensionsForHeterogeneousDebugging.rst | 458 2.12 Support for Source Languages Mapped to SIMT Hardware
|