/external/llvm-project/polly/unittests/DeLICM/ |
D | DeLICMTest.cpp | 29 isl::set Universe = isl::set::universe(Space); in unionSpace() local 30 Result = Result.add_set(Universe); in unionSpace() 35 void completeLifetime(isl::union_set Universe, isl::union_map OccupiedAndKnown, in completeLifetime() argument 38 auto ParamSpace = Universe.get_space(); in completeLifetime() 42 Occupied = Universe.subtract(Undef); in completeLifetime() 62 Undef = Universe.subtract(Occupied); in completeLifetime() 99 auto Universe = isl::union_set::empty(isl::space::params_alloc(Ctx, 0)); in checkIsConflictingNonsymmetricCommon() local 101 Universe = Universe.unite(ExistingOccupiedAndKnown.domain()); in checkIsConflictingNonsymmetricCommon() 103 Universe = Universe.unite(ExistingUnused); in checkIsConflictingNonsymmetricCommon() 105 Universe = Universe.unite(ExistingWritten.domain()); in checkIsConflictingNonsymmetricCommon() [all …]
|
/external/llvm/include/llvm/ADT/ |
D | SparseSet.h | 130 unsigned Universe; 146 SparseSet() : Sparse(nullptr), Universe(0) {} 160 if (U >= Universe/4 && U <= Universe) 167 Universe = U; 205 assert(Idx < Universe && "Key out of range"); 209 assert(FoundIdx < Universe && "Invalid key in set. Did object mutate?"); 290 assert(BackIdx < Universe && "Invalid key in set. Did object mutate?");
|
D | SparseMultiSet.h | 117 unsigned Universe; variable 128 assert(ValIndexOf(Val) < Universe && in sparseIndex() 191 : Sparse(nullptr), Universe(0), FreelistIdx(SMSNode::INVALID), NumFree(0) {} in SparseMultiSet() 205 if (U >= Universe/4 && U <= Universe) in setUniverse() 212 Universe = U; in setUniverse() 238 bool isKeyed() const { return SparseIdx < SMS->Universe; } in isKeyed() 351 assert(Idx < Universe && "Key out of range"); in findIndex()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | SparseSet.h | 133 unsigned Universe = 0; 160 if (U >= Universe/4 && U <= Universe) 167 Universe = U; 205 assert(Idx < Universe && "Key out of range"); 209 assert(FoundIdx < Universe && "Invalid key in set. Did object mutate?"); 290 assert(BackIdx < Universe && "Invalid key in set. Did object mutate?");
|
D | SparseMultiSet.h | 124 unsigned Universe = 0; variable 135 assert(ValIndexOf(Val) < Universe && in sparseIndex() 207 if (U >= Universe/4 && U <= Universe) in setUniverse() 214 Universe = U; in setUniverse() 241 bool isKeyed() const { return SparseIdx < SMS->Universe; } in isKeyed() 355 assert(Idx < Universe && "Key out of range"); in findIndex()
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | SparseSet.h | 133 unsigned Universe = 0; 160 if (U >= Universe/4 && U <= Universe) 167 Universe = U; 205 assert(Idx < Universe && "Key out of range"); 209 assert(FoundIdx < Universe && "Invalid key in set. Did object mutate?"); 293 assert(BackIdx < Universe && "Invalid key in set. Did object mutate?");
|
D | SparseMultiSet.h | 124 unsigned Universe = 0; variable 135 assert(ValIndexOf(Val) < Universe && in sparseIndex() 207 if (U >= Universe/4 && U <= Universe) in setUniverse() 214 Universe = U; in setUniverse() 241 bool isKeyed() const { return SparseIdx < SMS->Universe; } in isKeyed() 355 assert(Idx < Universe && "Key out of range"); in findIndex()
|
/external/llvm-project/polly/lib/Transform/ |
D | DeLICM.cpp | 143 isl::union_map expandMapping(isl::union_map Relevant, isl::union_set Universe) { in expandMapping() argument 148 return Simplified.intersect_domain(Universe); in expandMapping() 254 auto Universe = Occupied.unite(Unused); in checkConsistency() local 256 assert(!Known.domain().is_subset(Universe).is_false()); in checkConsistency() 257 assert(!Written.domain().is_subset(Universe).is_false()); in checkConsistency()
|
D | ScheduleOptimizer.cpp | 598 isl::map Universe = isl::map::universe(Space); in isMatMulOperandAcc() local 614 Universe.equate(isl::dim::in, FirstDims[i], isl::dim::out, 0) in isMatMulOperandAcc()
|
/external/starlark-go/cmd/starlark/ |
D | starlark.go | 93 starlark.Universe["json"] = starlarkjson.Module
|
/external/llvm-project/polly/lib/Analysis/ |
D | DependenceInfo.cpp | 255 isl_union_set *Universe = isl_union_set_universe(isl_union_set_copy(UDeltas)); in addPrivatizationDependences() local 257 isl::manage(isl_union_set_empty(isl_union_set_get_space(Universe))); in addPrivatizationDependences() 259 for (isl::set Set : isl::manage_copy(Universe).get_set_list()) in addPrivatizationDependences() 285 isl_union_set_free(Universe); in addPrivatizationDependences()
|
/external/starlark-go/starlark/ |
D | eval.go | 374 if err := resolve.File(f, isPredeclared, Universe.Has); err != nil { 431 if err := resolve.REPLChunk(f, globals.Has, predeclared.Has, Universe.Has); err != nil { 556 locals, err := resolve.Expr(expr, env.Has, Universe.Has)
|
D | interp.go | 609 stack[sp] = Universe[f.Prog.Names[arg]]
|
D | library.go | 34 var Universe StringDict var 38 Universe = StringDict{
|
/external/llvm-project/polly/lib/CodeGen/ |
D | IslNodeBuilder.cpp | 1239 isl_set *Universe = isl_set_universe(isl_set_get_space(Domain)); in preloadInvariantLoad() local 1240 bool AlwaysExecuted = isl_set_is_equal(Domain, Universe); in preloadInvariantLoad() 1241 isl_set_free(Universe); in preloadInvariantLoad()
|
D | PPCGCodeGeneration.cpp | 2642 isl_map *Universe = isl_map_universe(Space); in getTaggedAccesses() local 2643 Relation = isl_map_domain_product(Relation, Universe); in getTaggedAccesses() 2782 isl_map *Universe = isl_map_universe(Space); in getStmtAccesses() local 2784 isl_map_domain_product(Acc->getAccessRelation().release(), Universe); in getStmtAccesses()
|
/external/python/cpython2/Lib/idlelib/ |
D | ChangeLog | 799 IDLE is now the first Python editor in the Universe not confused by my
|
/external/python/cpython3/Lib/idlelib/ |
D | ChangeLog | 799 IDLE is now the first Python editor in the Universe not confused by my
|
/external/kotlinx.coroutines/ |
D | CHANGES.md | 924 that are instrumented with [Parallel Universe Quasar](https://docs.paralleluniverse.co/quasar/)
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/C/ |
D | C.stg | 35 * If it causes the destruction of the Universe, it will be pretty cool so long as
|
/external/llvm-project/polly/lib/External/isl/doc/ |
D | user.pod | 1951 =item * Universe sets and relations
|