| /llvm-project-15.0.7/polly/lib/External/isl/ |
| H A D | isl_vertices.c | 1122 return cell ? cell->dom->ctx : NULL; in isl_cell_get_ctx() 1127 return cell ? isl_basic_set_copy(cell->dom) : NULL; in isl_cell_get_domain() 1140 if (!cell) in isl_cell_alloc() 1145 if (cell->n_vertices && !cell->ids) in isl_cell_alloc() 1162 if (!cell) in isl_cell_free() 1168 free(cell); in isl_cell_free() 1280 if (!cell) in isl_vertices_foreach_disjoint_cell() 1296 if (!cell) in isl_vertices_foreach_disjoint_cell() 1372 if (!cell) in isl_cell_foreach_vertex() 1590 if (!cell) in isl_cell_foreach_simplex() [all …]
|
| H A D | isl_bernstein.c | 33 isl_cell *cell; member 120 v = cell->ids[n - 1 - i]; in is_tight() 121 return vertex_is_integral(cell->vertices->v[v].vertex); in is_tight() 137 tight = is_tight(k, n, d, data->cell); in add_fold() 287 n_vertices = cell->n_vertices; in bernstein_coefficients_cell() 291 return isl_cell_foreach_simplex(cell, in bernstein_coefficients_cell() 298 space_param = isl_basic_set_get_space(cell->dom); in bernstein_coefficients_cell() 311 int k = cell->ids[i]; in bernstein_coefficients_cell() 330 data->cell = cell; in bernstein_coefficients_cell() 347 isl_cell_free(cell); in bernstein_coefficients_cell() [all …]
|
| H A D | isl_pw_union_opt.c | 81 isl_set_list *cell; in S() local 88 isl_set_list_free(data->cell); in FN() 127 set_i = isl_set_list_get_set(data_i->cell, i); in FN() 130 data_i->cell = isl_set_list_set_set(data_i->cell, i, set_i); in FN() 132 set_j = isl_set_list_get_set(data_j->cell, j); in FN() 134 data_j->cell = isl_set_list_set_set(data_j->cell, j, set_j); in FN() 236 isl_set_list *list1 = data1->cell; in FN() 237 isl_set_list *list2 = data2->cell; in FN() 325 data[i].cell = FN(PW,extract_domains)(data[i].pw); in FN()
|
| H A D | isl_vertices_private.h | 60 isl_stat (*fn)(__isl_take isl_cell *cell, void *user), void *user); 61 isl_stat isl_cell_foreach_simplex(__isl_take isl_cell *cell,
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | analyzeOneFunction.m | 39 Test1 *cell = [[[Test1 alloc] init] autorelease]; 42 cell.text = string1; 44 return cell; 48 Test1 *cell = [[[Test1 alloc] init] autorelease]; 51 cell.text = string1; 53 return cell;
|
| H A D | objc-subscript.m | 29 Test *cell = [[[Test alloc] init] autorelease]; 32 cell[0] = string1; 33 cell[self] = string1; 34 cell[string1] = self; 36 return cell;
|
| H A D | objc-arc.m | 109 RDar9424890_A *cell = [obj rdar9424890:WhizFiz]; 110 if (cell == ((void*)0)) { 111 cell = [[RDar9424890_A alloc] initWithCleaner:0 mop:WhizFiz]; // no-warning 113 return cell;
|
| /llvm-project-15.0.7/polly/lib/External/isl/include/isl/ |
| H A D | vertices.h | 34 isl_ctx *isl_cell_get_ctx(__isl_keep isl_cell *cell); 35 __isl_give isl_basic_set *isl_cell_get_domain(__isl_keep isl_cell *cell); 36 isl_stat isl_cell_foreach_vertex(__isl_keep isl_cell *cell, 38 __isl_null isl_cell *isl_cell_free(__isl_take isl_cell *cell); 41 isl_stat (*fn)(__isl_take isl_cell *cell, void *user), void *user);
|
| /llvm-project-15.0.7/llvm/test/Transforms/MemCpyOpt/ |
| H A D | smaller.ll | 14 @cell = external global %struct.s 23 ; CHECK-NEXT: store i32 99, i32* getelementptr inbounds (%struct.s, %struct.s* @cell, i32 0, i32… 24 ….p0i8.p0i8.i32(i8* align 1 getelementptr inbounds (%struct.s, %struct.s* @cell, i32 0, i32 0, i32 … 26 …ign 4 [[TMP]], i8* align 4 getelementptr inbounds (%struct.s, %struct.s* @cell, i32 0, i32 0, i32 … 32 store i32 99, i32* getelementptr inbounds (%struct.s, %struct.s* @cell, i32 0, i32 1), align 4 33 ….p0i8.p0i8.i32(i8* align 1 getelementptr inbounds (%struct.s, %struct.s* @cell, i32 0, i32 0, i32 … 35 … align 4 %tmp, i8* align 4 getelementptr inbounds (%struct.s, %struct.s* @cell, i32 0, i32 0, i32 …
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/X86/ |
| H A D | dbg-value-transfer-order.ll | 6 ; unsigned cell = page_start_[0]; 7 ; while (cell) { 8 ; unsigned bit_offset = cell_offset ? __builtin_ctz(cell) : 32; 11 ; cell ^= bit_mask + page_start_[slot]; 60 %cell.015 = phi i32 [ %0, %entry ], [ %xor, %if.end ] 78 %xor = xor i32 %add4, %cell.015, !dbg !59 126 !38 = !DILocalVariable(name: "cell", scope: !31, file: !1, line: 5, type: !11)
|
| /llvm-project-15.0.7/clang/tools/scan-build-py/libscanbuild/resources/ |
| H A D | sorttable.js | 123 forEach(theadrow.childNodes, function(cell) { argument 124 if (cell.nodeType == 1) { // an element 125 cell.className = cell.className.replace('sorttable_sorted_reverse',''); 126 cell.className = cell.className.replace('sorttable_sorted','');
|
| /llvm-project-15.0.7/clang/tools/scan-build-py/lib/libscanbuild/resources/ |
| H A D | sorttable.js | 132 forEach(theadrow.childNodes, function(cell) { argument 133 if (cell.nodeType == 1) { // an element 134 cell.className = 135 cell.className.replace('sorttable_sorted_reverse', ''); 136 cell.className = cell.className.replace('sorttable_sorted', '');
|
| /llvm-project-15.0.7/clang/tools/scan-build/share/scan-build/ |
| H A D | sorttable.js | 123 forEach(theadrow.childNodes, function(cell) { argument 124 if (cell.nodeType == 1) { // an element 125 cell.className = cell.className.replace('sorttable_sorted_reverse',''); 126 cell.className = cell.className.replace('sorttable_sorted','');
|
| /llvm-project-15.0.7/llvm/test/Transforms/InstCombine/ |
| H A D | phi-known-bits-operand-order.ll | 34 %cell.0 = phi i32 [ 0, %entry ], [ %start, %for.cond26 ] 39 %start = add nsw i32 %cell.0, 1 80 %cell.0 = phi i32 [ 0, %entry ], [ %start, %for.cond26 ] 85 %start = add nsw i32 %cell.0, 1
|
| /llvm-project-15.0.7/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/ |
| H A D | p2-0x.cpp | 136 using cell = pair<void*, cell*>; // expected-error {{use of undeclared identifier 'cell'}} \ typedef
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | DebugTypes.cpp | 1088 for (const GHashCell &cell : in mergeTypesWithGHash() local 1090 if (!cell.isEmpty()) in mergeTypesWithGHash() 1091 entries.push_back(cell); in mergeTypesWithGHash() 1114 auto &cell = entries[i]; in mergeTypesWithGHash() local 1115 uint32_t tpiSrcIdx = cell.getTpiSrcIdx(); in mergeTypesWithGHash() 1117 source->uniqueTypes.push_back(cell.getGHashIdx()); in mergeTypesWithGHash() 1123 source->indexMapStorage[cell.getGHashIdx()].toArrayIndex(); in mergeTypesWithGHash() 1125 GHashCell(cell.isItem(), cell.getTpiSrcIdx(), pdbTypeIndex); in mergeTypesWithGHash() 1165 GHashCell cell = g->table.table[ghashCellIdx]; in loadPdbTypeIndexFromCell() local 1166 return TypeIndex::fromArrayIndex(cell.getGHashIdx()); in loadPdbTypeIndexFromCell()
|
| /llvm-project-15.0.7/clang/www/analyzer/scripts/ |
| H A D | expandcollapse.js | 27 return CellsInfo[idx.group][idx.cell]; 182 var idxStr = "_" + idx.group + "_" + idx.cell;
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | alias-template.cpp | 116 …template<typename T> using cell = pair<T*, cell<T>*>; // expected-error {{use of undeclared identi… typedef
|
| H A D | warn-thread-safety-analysis.cpp | 2002 Cell<int> cell; in test() local 2003 cell.data = 0; // \ in test() 2005 cell.foo(); in test() 2006 cell.mu_.Lock(); in test() 2007 cell.fooEx(); in test() 2008 cell.mu_.Unlock(); in test() 4104 Cell<int> cell; in test() local 4105 elr(&cell); // \ in test() 4117 Cell<int> cell; in globalTest() local 4138 Cell<int> cell; in globalTest2() local [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/GC/ |
| H A D | badwriteproto.ll | 16 ret %cell.2
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | empty-classes.cpp | 63 FreeCell cell; member
|
| /llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/ |
| H A D | regalloc-fast-debug-spill.ll | 102 !13 = distinct !DIGlobalVariable(name: "<core::cell::BorrowMutError as core::fmt::Debug>::{vtable}"… 103 !14 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "<core::cell::BorrowMutError as c… 105 !16 = !DINamespace(name: "cell", scope: !17) 140 …ture_type, name: "OnceLock<std::sys_common::remutex::ReentrantMutex<core::cell::RefCell<std::io::b… 144 !55 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "ReentrantMutex<core::cell::RefCe… 162 !73 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "Key<core::cell::Cell<core::optio…
|
| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | kindof.m | 203 NSCell *cell; 212 result = flag ? kindof_Sub : cell; 217 result = flag ? cell : kindof_Sub;
|
| /llvm-project-15.0.7/llvm/test/CodeGen/ARM/ |
| H A D | 2008-04-10-ScavengerAssert.ll | 59 %tmp394.i418.i = add i32 %cell.0.i.i, 1 ; <i32> [#uses=1] 92 …%cell.0.i.i = phi i32 [ 0, %bb894.loopexit.i.i ], [ %cell.0.i.i, %bb653.i.i.loopexit ], [ 0, %bb17…
|
| /llvm-project-15.0.7/llvm/docs/_static/ |
| H A D | llvm.css | 105 /* Left align table cell */
|