/external/llvm-project/polly/utils/pyscop/ |
D | isl.py | 122 class BMap(IslObject): class 127 return BMap(ptr = ptr) 250 ("is_empty", BMap, [BMap], c_int), 268 ("is_equal", BMap, [BMap, BMap], c_int), 277 ("is_subset", BMap, [BMap, BMap], c_int), 283 ("is_strict_subset", BMap, [BMap, BMap], c_int), 289 ("reverse", BMap, [BMap], BMap), 294 ("range", BMap, [BMap], BSet), 297 ("domain", BMap, [BMap], BSet), 304 ("deltas", BMap, [BMap], BSet), [all …]
|
/external/llvm-project/polly/lib/Transform/ |
D | FlattenAlgo.cpp | 49 bool isVariableDim(const isl::basic_map &BMap) { in isVariableDim() argument 50 auto FixedVal = BMap.plain_get_val_if_fixed(isl::dim::out, 0); in isVariableDim() 56 for (isl::basic_map BMap : Map.get_basic_map_list()) in isVariableDim() local 57 if (isVariableDim(BMap)) in isVariableDim()
|
D | Simplify.cpp | 102 for (isl::basic_map BMap : PrevMap.get_basic_map_list()) { in underapproximatedAddMap() local 105 Result = Result.unite(BMap); in underapproximatedAddMap() 107 for (isl::basic_map BMap : Map.get_basic_map_list()) { in underapproximatedAddMap() local 110 Result = Result.unite(BMap); in underapproximatedAddMap()
|
/external/llvm-project/polly/unittests/Isl/ |
D | IslTest.cpp | 406 TestMap.foreach_basic_map([&](isl::basic_map BMap) -> isl::stat { in TEST() argument 407 EXPECT_EQ(BMap, TestBMap); in TEST() 465 .foreach_basic_map([&](isl::basic_map BMap) -> isl::stat { in TEST() argument 466 EXPECT_EQ(BMap, TestBMap); in TEST()
|
/external/llvm-project/clang/lib/Analysis/ |
D | ThreadSafety.cpp | 306 BeforeMap BMap; member in clang::threadSafety::BeforeSet 1076 std::unique_ptr<BeforeInfo> &InfoPtr = BMap[Vd]; in insertAttrExprs() 1093 const auto It = BMap.find(Cpvd); in insertAttrExprs() 1094 if (It == BMap.end()) in insertAttrExprs() 1126 auto It = BMap.find(Vd); in getBeforeInfoForDecl() 1128 if (It == BMap.end()) in getBeforeInfoForDecl()
|
/external/clang/lib/Analysis/ |
D | ThreadSafety.cpp | 287 BeforeMap BMap; member in clang::threadSafety::BeforeSet 974 std::unique_ptr<BeforeInfo> &InfoPtr = BMap[Vd]; in insertAttrExprs() 991 auto It = BMap.find(Cpvd); in insertAttrExprs() 992 if (It == BMap.end()) in insertAttrExprs() 1024 auto It = BMap.find(Vd); in getBeforeInfoForDecl() 1026 if (It == BMap.end()) in getBeforeInfoForDecl()
|
/external/llvm-project/polly/lib/Support/ |
D | ISLTools.cpp | 654 isl::space BMap = BSpace.unwrap(); in structureCompare() local 657 structureCompare(AMap.domain(), BMap.domain(), ConsiderTupleLen); in structureCompare() 661 return structureCompare(AMap.range(), BMap.range(), ConsiderTupleLen); in structureCompare()
|