Lines Matching refs:ctx

61 void test_return_bool(isl::ctx ctx)  in test_return_bool()  argument
63 isl::set empty(ctx, "{ : false }"); in test_return_bool()
64 isl::set univ(ctx, "{ : }"); in test_return_bool()
118 void test_return(isl::ctx ctx) in test_return() argument
120 test_return_obj(ctx); in test_return()
121 test_return_int(ctx); in test_return()
122 test_return_bool(ctx); in test_return()
123 test_return_string(ctx); in test_return()
134 void test_foreach(isl::ctx ctx) in test_foreach() argument
136 isl::set s(ctx, "{ [0]; [1]; [2] }"); in test_foreach()
168 static void test_every(isl::ctx ctx) in test_every() argument
170 isl::union_set us(ctx, "{ A[i]; B[j] }"); in test_every()
172 test_every_generic(ctx); in test_every()
188 static void test_schedule_tree(isl::ctx ctx) in test_schedule_tree() argument
190 auto root = test_schedule_tree_generic(ctx); in test_schedule_tree()
225 auto filters = isl::union_set(ctx, "{}"); in test_schedule_tree()
243 static void test_ast_build(isl::ctx ctx) in test_ast_build() argument
245 auto schedule = test_ast_build_generic(ctx); in test_ast_build()
255 auto build = isl::ast_build(ctx); in test_ast_build()
294 isl_ctx *ctx = isl_ctx_alloc(); in main() local
296 isl_options_set_on_error(ctx, ISL_ON_ERROR_ABORT); in main()
298 test_pointer(ctx); in main()
299 test_constructors(ctx); in main()
300 test_parameters(ctx); in main()
301 test_return(ctx); in main()
302 test_foreach(ctx); in main()
303 test_every(ctx); in main()
304 test_space(ctx); in main()
305 test_schedule_tree(ctx); in main()
306 test_ast_build(ctx); in main()
307 test_ast_build_expr(ctx); in main()
309 isl_ctx_free(ctx); in main()