| /llvm-project-15.0.7/polly/lib/External/isl/ |
| H A D | isl_list_templ.c | 27 return list ? list->ctx : NULL; in FN() 101 if (list->ref == 1 && list->n + n <= list->size) in LIST() 115 if (list->n + n <= list->size && list->size < new_size) in LIST() 147 list->p[list->n] = el; in LIST() 170 list = FN(LIST(EL),cow)(list); in LIST() 176 list->p[i] = list->p[i + n]; in LIST() 211 if (list->ref == 1 && list->size > list->n) { in LIST() 213 list->p[i] = list->p[i - 1]; in LIST() 303 list = FN(LIST(EL),cow)(list); in LIST() 474 list = FN(LIST(EL),cow)(list); in LIST() [all …]
|
| H A D | isl_ast_graft.c | 319 data.list = isl_ast_node_list_free(data.list); in ast_node_insert_if() 459 list = isl_ast_node_list_add(list, node); in extend_body() 699 list = insert_pending_guard_nodes(list, build); in isl_ast_graft_list_insert_pending_guard_nodes() 860 list = gist_guards(list, context); in isl_ast_graft_list_gist_guards() 889 list = gist_guards(list, guard); in isl_ast_graft_alloc_from_children() 970 list = isl_ast_graft_list_add(list, graft1); in isl_ast_graft_fuse() 971 list = isl_ast_graft_list_add(list, graft2); in isl_ast_graft_fuse() 1186 list = isl_ast_graft_list_free(list); in isl_ast_graft_list_preimage_multi_aff() 1407 list = isl_ast_graft_list_clear(list); in reconstruct() 1410 list = isl_ast_graft_list_free(list); in reconstruct() [all …]
|
| H A D | isl_list_read_templ.c | 22 LIST(EL) *list; in LIST() 27 list = FN(LIST(EL),alloc)(ctx, 0); in LIST() 28 if (!list) in LIST() 31 return FN(LIST(EL),free)(list); in LIST() 33 return list; in LIST() 38 list = FN(LIST(EL),add)(list, el); in LIST() 39 if (!list) in LIST() 43 return FN(LIST(EL),free)(list); in LIST() 44 return list; in LIST() 56 LIST(EL) *list; in LIST() [all …]
|
| H A D | isl_ast_codegen.c | 103 data->list = isl_ast_graft_list_concat(data->list, list); in generate_non_single_valued() 178 data->list = isl_ast_graft_list_concat(data->list, list); in add_domain() 708 list = isl_pw_aff_list_copy(list); in reduce_list() 1025 list = isl_pw_aff_list_copy(list); in set_for_cond_from_list() 1027 list = list_add_one(list, build); in set_for_cond_from_list() 2174 data->list = list; in generate_sorted_domains_wrap() 2176 data->list = isl_ast_graft_list_concat(data->list, list); in generate_sorted_domains_wrap() 2918 domains->list = isl_basic_set_list_concat(domains->list, list); in compute_atomic_domain() 2959 domains->list = isl_basic_set_list_concat(domains->list, list); in compute_separate_domain() 3032 domains->list = isl_basic_set_list_concat(domains->list, list); in compute_partial_domains() [all …]
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | kmalloc-linux.c | 23 list = kmalloc(sizeof(*list) * 10, __GFP_ZERO); in test_zeroed() 28 t = list[i]; in test_zeroed() 38 list = kmalloc(sizeof(*list) * 10, 0); in test_nonzero() 46 kfree(list); in test_nonzero() 53 list = kmalloc(sizeof(*list) * 10, flags); in test_indeterminate() 61 kfree(list); in test_indeterminate() 76 list = malloc(sizeof(*list) * 10, mtp, __GFP_ZERO); in test_3arg_malloc() 91 list = malloc(sizeof(*list) * 10, mtp, 0); in test_3arg_malloc_nonzero() 99 kfree(list); in test_3arg_malloc_nonzero() 106 list = malloc(sizeof(*list) * 10, mtp, flags); in test_3arg_malloc_indeterminate() [all …]
|
| H A D | malloc-three-arg.c | 17 struct test **list, *t; in test_zeroed() local 20 list = malloc(sizeof(*list) * 10, NULL, M_ZERO); in test_zeroed() 21 if (list == NULL) in test_zeroed() 25 t = list[i]; in test_zeroed() 32 struct test **list, *t; in test_nonzero() local 35 list = malloc(sizeof(*list) * 10, NULL, 0); in test_nonzero() 36 if (list == NULL) in test_nonzero() 43 free(list); in test_nonzero() 50 list = malloc(sizeof(*list) * 10, NULL, flags); in test_indeterminate() 51 if (list == NULL) in test_indeterminate() [all …]
|
| /llvm-project-15.0.7/llvm/test/Feature/ |
| H A D | recursivetype.ll | 9 ; } list; 15 ; *L = (list*)malloc(sizeof(list)); 21 ; list *FindData(list *L, int Data) { 40 %list = type { %list*, i32 } 46 %reg116 = load %list*, %list** %L ; <%list*> [#uses=1] 53 %cast1010 = bitcast %list** %reg117 to %list*** ; <%list***> [#uses=1] 54 %reg118 = load %list**, %list*** %cast1010 ; <%list**> [#uses=3] 55 %reg109 = load %list*, %list** %reg118 ; <%list*> [#uses=1] 76 define %list* @FindData(%list* %L, i32 %Data) { 99 %idx2 = getelementptr %list, %list* %reg115, i64 0, i32 0 ; <%list**> [#uses=1] [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/tests/unit/ |
| H A D | tsan_ilist_test.cpp | 26 IList<Node, &Node::node1> list; in TEST() local 29 EXPECT_TRUE(list.Empty()); in TEST() 39 IList<Node, &Node::node1> list; in TEST() local 42 list.PushBack(&node); in TEST() 43 EXPECT_FALSE(list.Empty()); in TEST() 45 EXPECT_EQ(list.Back(), &node); in TEST() 52 EXPECT_TRUE(list.Empty()); in TEST() 61 list.PushBack(&nodes[1]); in TEST() 62 list.PushBack(&nodes[0]); in TEST() 63 list.PushFront(&nodes[2]); in TEST() [all …]
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/ |
| H A D | SPIRVBase.td | 468 list<Availability> availability = [ 477 list<Availability> availability = [ 482 list<Availability> availability = [ 487 list<Availability> availability = [ 492 list<Availability> availability = [ 497 list<Availability> availability = [ 502 list<Availability> availability = [ 507 list<Availability> availability = [ 512 list<Availability> availability = [ 517 list<Availability> availability = [ [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/containers/sequences/list/list.special/ |
| H A D | swap.pass.cpp | 25 std::list<int> c1(a1, a1 + 5); in main() 26 std::list<int> c2(a2, a2 + 7); in main() 30 assert(c1 == std::list<int>(a2, a2 + 7)); in main() 31 assert(c2 == std::list<int>(a1, a1 + 5)); in main() 37 std::list<int> c1; in main() 38 std::list<int> c2(a2, a2 + 7); in main() 46 std::list<int> c1(a1, a1 + 5); in main() 47 std::list<int> c2; in main() 54 std::list<int> c1; in main() 55 std::list<int> c2; in main() [all …]
|
| /llvm-project-15.0.7/clang/test/CodeGen/ |
| H A D | 2002-07-14-MiscListTests.c | 8 struct list; 10 struct list *PassThroughList(struct list *L) { in PassThroughList() 17 typedef struct list { struct 19 struct list *Next; argument 20 } list; typedef 22 list *Data; 31 extern list ListNode1; 38 list ListArray[10]; 44 *L = (list*)malloc(sizeof(list)); in InsertIntoListTail() 50 list *FindData(list *L, int Data) { in FindData() [all …]
|
| /llvm-project-15.0.7/llvm/test/TableGen/ |
| H A D | ListSlices.td | 23 list<int> ShowVar1 = Var1; 25 list<int> ShowVar3 = Var3; 27 list<int> ShowVar5 = Var5; 36 list<int> TwoFive = Var1[2...5]; 45 class Class1<list<int> ids> { 47 list<int> TwoFive = ids[2...5]; 72 multiclass MC1<list<int> ids> { 75 list<int> TwoFive = ids[2...5]; 98 // CHECK: list<list<string>> Array = {{.*}}"foo", "bar", "snork"], ["zoo", "quux", "flarp"]] 103 list<list<string>> Array = [["foo", "bar", "snork"], [all …]
|
| H A D | listconcat.td | 3 // CHECK: class X<list<int> X:a = ?, list<int> X:b = ?, list<int> X:c = ?> { 7 // CHECK: class Y<list<string> Y:S = ?> { 8 // CHECK: list<string> T1 = !listconcat(Y:S, ["foo"]); 13 // CHECK: list<int> lst = [4]; 17 // CHECK: list<int> lst = []; 21 // CHECK: list<int> x = [0, 1, 1, 2] 25 // CHECK: list<string> T1 = ["fu", "foo"]; 31 list<int> lst = !listconcat([], !if(x, [], [4])); 37 class X<list<int> a, list<int> b, list<int> c> { 41 class Y<list<string> S> { [all …]
|
| H A D | cond-list.td | 5 class A<list<list<int>> vals> { 6 list<int> first = vals[0]; 13 // CHECK-NEXT: list<int> first = [1, 2, 3]; 14 // CHECK-NEXT: list<int> rest = [1, 2, 3]; 19 // CHECK-NEXT: list<int> first = [1, 2, 3]; 20 // CHECK-NEXT: list<int> rest = [4, 5, 6]; 24 class B<list<int> v> { 25 list<int> vals = v; 27 class BB<list<list<int>> vals> : B<!cond(!empty(!tail(vals)): vals[0], 1 : vals[1])>; 28 class BBB<list<list<int>> vals> : BB<vals>; [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/containers/sequences/list/list.ops/ |
| H A D | splice_pos_list.pass.cpp | 24 std::list<int> l1; in main() 25 std::list<int> l2; in main() 33 std::list<int> l1; in main() 34 std::list<int> l2(a2, a2+1); in main() 44 std::list<int> l1; in main() 57 std::list<int> l1; in main() 73 std::list<int> l2; in main() 84 std::list<int> l2; in main() 185 std::list<int> l2; in main() 198 std::list<int> l2; in main() [all …]
|
| H A D | splice_pos_list_iter.pass.cpp | 24 std::list<int> l1; in main() 25 std::list<int> l2(a2, a2+1); in main() 35 std::list<int> l1; in main() 36 std::list<int> l2(a2, a2+2); in main() 48 std::list<int> l1; in main() 49 std::list<int> l2(a2, a2+2); in main() 61 std::list<int> l1; in main() 62 std::list<int> l2(a2, a2+3); in main() 76 std::list<int> l1; in main() 77 std::list<int> l2(a2, a2+3); in main() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/containers/sequences/list/ |
| H A D | compare.pass.cpp | 42 const std::list<int> l1, l2; in main() 46 const std::list<int> l1(1, 1), l2(1, 1); in main() 51 const std::list<int> l1(items, items + 3); in main() 52 const std::list<int> l2(items, items + 3); in main() 56 const std::list<int> l1(1, 1), l2; in main() 60 const std::list<int> l1(1, 1), l2(1, 2); in main() 66 const std::list<int> l1(items1, items1 + 2); in main() 67 const std::list<int> l2(items2, items2 + 2); in main() 73 const std::list<int> l1(items1, items1 + 2); in main() 78 const std::list<LessAndEqComp> l1, l2; in main() [all …]
|
| /llvm-project-15.0.7/llvm/test/MC/Mips/ |
| H A D | macro-aliases-invalid-wrong-error.s | 10 subu $4, $4, %lo($start) # O32: [[@LINE]]:{{[0-9]+}}: error: unexpected token in argument list 11 … # N64: [[@LINE-1]]:{{[0-9]+}}: error: unexpected token in argument list 12 subu $4, $4, $start # O32: [[@LINE]]:{{[0-9]+}}: error: unexpected token in argument list 13 … # N64: [[@LINE-1]]:{{[0-9]+}}: error: unexpected token in argument list 14 subu $4, $a4, $a4 # O32: [[@LINE]]:{{[0-9]+}}: error: unexpected token in argument list 15 subu $4, $4, %hi(end) # O32: [[@LINE]]:{{[0-9]+}}: error: unexpected token in argument list 16 … # N64: [[@LINE-1]]:{{[0-9]+}}: error: unexpected token in argument list 17 subu $4, $4, end + 4 # O32: [[@LINE]]:{{[0-9]+}}: error: unexpected token in argument list 19 subu $4, $4, end # O32: [[@LINE]]:{{[0-9]+}}: error: unexpected token in argument list 21 subu $4, $4, sp # O32: [[@LINE]]:{{[0-9]+}}: error: unexpected token in argument list [all …]
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/PDB/ |
| H A D | pdb-resolve-forward-refs.test | 9 ; CHECK: vtable: <no type>, base list: <no type>, field list: 0x1007 13 ; CHECK: vtable: <no type>, base list: <no type>, field list: 0x1007 17 ; CHECK: vtable: <no type>, base list: <no type>, field list: <no type> 21 ; CHECK: vtable: <no type>, base list: <no type>, field list: 0x1055 25 ; CHECK: vtable: <no type>, base list: <no type>, field list: 0x1007 29 ; CHECK: vtable: <no type>, base list: <no type>, field list: <no type> 33 ; CHECK: vtable: <no type>, base list: <no type>, field list: 0x105B 37 ; CHECK: vtable: <no type>, base list: <no type>, field list: 0x1007 49 ; CHECK: vtable: <no type>, base list: <no type>, field list: 0x1063 61 ; CHECK: vtable: <no type>, base list: <no type>, field list: 0x106A [all …]
|
| /llvm-project-15.0.7/mlir/test/Pass/ |
| H A D | pipeline-options-parsing.mlir | 3 // RUN: not mlir-opt %s -pass-pipeline='builtin.module(func.func(test-options-pass{list=3}), test-m… 4 // RUN: not mlir-opt %s -pass-pipeline='test-options-pass{list=3 list=notaninteger}' 2>&1 | FileChe… 5 // RUN: mlir-opt %s -pass-pipeline='func.func(test-options-pass{list=1,2,3,4 list=5 string=value1 s… 6 …ass-pipeline='func.func(test-options-pass{string-list=a list=1,2,3,4 string-list=b,c list=5 string… 7 // RUN: mlir-opt %s -verify-each=false -test-options-pass-pipeline='list=1 string-list=a,b' -test-d… 8 …s-pipeline='builtin.module(func.func(test-options-pass{list=3}), func.func(test-options-pass{list=… 15 // CHECK_1: test-options-pass{list=1,2,3,4,5 string=nested_pipeline{arg1=10 arg2=" {} " arg3=true} … 16 // CHECK_2: test-options-pass{list=1 string= string-list=a,b} 17 …HECK_3: builtin.module(func.func(test-options-pass{list=3 string= }),func.func(test-options-pass{l…
|
| /llvm-project-15.0.7/libcxxabi/src/ |
| H A D | abort_message.cpp | 37 va_list list; in abort_message() local 38 va_start(list, format); in abort_message() 40 va_end(list); in abort_message() 49 va_list list; in abort_message() local 50 va_start(list, format); in abort_message() 51 vasprintf(&buffer, format, list); in abort_message() 52 va_end(list); in abort_message() 57 va_list list; in abort_message() local 58 va_start(list, format); in abort_message() 59 vasprintf(&buffer, format, list); in abort_message() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/containers/sequences/list/list.cons/ |
| H A D | deduct.pass.cpp | 36 std::list lst(std::begin(arr), std::end(arr)); in main() 61 std::list lst(1, A{}); // list (size_type, T) in main() 94 std::list<long double> source; in main() 95 std::list lst(source); // list(list &) in main() 106 std::list<short, Alloc> source; in main() 107 std::list lst(source, Alloc(2)); in main() 112 std::list<short, Alloc> source; in main() 118 std::list<short, Alloc> source; in main() 119 std::list lst(std::move(source), Alloc(2)); in main() 124 std::list<short, Alloc> source; in main() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/containers/sequences/list/list.modifiers/ |
| H A D | erase_iter_iter.pass.cpp | 23 std::list<int> l1(a1, a1+3); in main() 24 std::list<int>::iterator i = l1.erase(l1.cbegin(), l1.cbegin()); in main() 30 std::list<int> l1(a1, a1+3); in main() 35 assert(l1 == std::list<int>(a1+1, a1+3)); in main() 38 std::list<int> l1(a1, a1+3); in main() 43 assert(l1 == std::list<int>(a1+2, a1+3)); in main() 46 std::list<int> l1(a1, a1+3); in main() 54 std::list<int, min_allocator<int>> l1(a1, a1+3); in main() 61 std::list<int, min_allocator<int>> l1(a1, a1+3); in main() 69 std::list<int, min_allocator<int>> l1(a1, a1+3); in main() [all …]
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | list | 20 class list 49 list(const list& x); 51 list(list&& x) 53 list(list&&, const allocator_type& a); 59 list& operator=(const list& x); 60 list& operator=(list&& x) 879 list(const list& __c); 888 list(list&& __c) 893 list& operator=(list&& __c) 1243 list<_Tp, _Alloc>::list(const list& __c) [all …]
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
| H A D | spuriously-wake-up-functions.cpp | 114 static Node1 list; variable 121 if (list.next == nullptr) { in consume_list_element() 126 while (list.next == nullptr) { in consume_list_element() 138 if (list.next == nullptr) { in consume_list_element() 144 if (list.next == nullptr) { in consume_list_element() 150 if (list.next == nullptr) { in consume_list_element() 157 if (list.next == nullptr) { in consume_list_element() 161 if (list.next == nullptr) { in consume_list_element() 164 while (list.next == nullptr) { in consume_list_element() 175 if (list.next == nullptr) { in consume_list_element() [all …]
|