Home
last modified time | relevance | path

Searched refs:Cell (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/clang/test/Analysis/inlining/
H A Dretain-count-self-init.m27 @interface Cell : ParentOfCell{ interface
34 @implementation Cell implementation
59 Cell *sharedCell1 = [[Cell alloc] init];
61 Cell *sharedCell2 = [[Cell alloc] initWithInt: 3];
63 Cell *sharedCell3 = [[Cell alloc] initWithIntGood: 3];
H A Dassume-super-init-does-not-return-nil.m17 @interface Cell : NSObject { interface
24 @implementation Cell implementation
37 Cell *newCell = [[Cell alloc] init];
H A DRetainCountExamples.m42 @interface Cell : ParentOfCell{ interface
50 @implementation Cell implementation
58 Cell *sharedCell3 = [[Cell alloc] initWithInt: 3];
63 Cell *sharedCell4 = [[Cell alloc] initWithInt: 3]; // expected-warning {{leak}}
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_addrhashmap.h50 struct Cell { struct
58 Cell cells[1]; // variable len argument
89 Cell *cell_;
130 Cell *c = &add->cells[i]; in ForEach()
225 Cell *c = &b->cells[i]; in acquire()
238 Cell *c = &add->cells[i]; in acquire()
254 Cell *c = &b->cells[i]; in acquire()
270 Cell *c = &add->cells[i]; in acquire()
294 Cell *c = &b->cells[i]; in acquire()
327 Cell *c = &add->cells[i]; in acquire()
[all …]
/llvm-project-15.0.7/clang/lib/Format/
H A DWhitespaceManager.h183 unsigned Cell = 0; member
189 return Index == Other.Index && Cell == Other.Cell &&
273 static bool isSplitCell(const CellDescription &Cell);
H A DWhitespaceManager.cpp1211 bool WhitespaceManager::isSplitCell(const CellDescription &Cell) { in isSplitCell() argument
1212 if (Cell.HasSplit) in isSplitCell()
1214 for (const auto *Next = Cell.NextColumnElement; Next != nullptr; in isSplitCell()
1226 unsigned Cell = 0; in getCells() local
1241 Cell = 0; in getCells()
1260 ++Cell; in getCells()
1266 Cells.push_back(CellDescription{i, ++Cell, i + 1, false, nullptr}); in getCells()
1267 CellCounts.push_back(C.Tok->Previous->isNot(tok::comma) ? Cell + 1 in getCells()
1268 : Cell); in getCells()
1334 Cells.push_back(CellDescription{i, Cell, i, HasSplit, nullptr}); in getCells()
[all …]
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp1959 class Cell { class
2002 Cell<int> cell; in test()
4087 struct Cell { struct
4104 Cell<int> cell; in test()
4117 Cell<int> cell; in globalTest()
4138 Cell<int> cell; in globalTest2()
4469 class Cell { class
4471 Cell(int i);
4858 class Cell { class
4873 static constexpr int Cell::*pa = &Cell::a;
[all …]
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DFuzzyMatch.cpp342 const auto &Cell = Scores[P + 1][W + 1][Last]; in dumpLast() local
345 const auto &Prev = Scores[P + 1][W][Cell.Prev]; in dumpLast()
346 S[W] = Cell.Score - Prev.Score; in dumpLast()
347 Last = Cell.Prev; in dumpLast()
/llvm-project-15.0.7/clang/test/Analysis/diagnostics/
H A Dundef-value-param.m19 @interface Cell : NSObject interface
33 @implementation Cell implementation
/llvm-project-15.0.7/llvm/
H A DCREDITS.TXT354 D: Added STI Cell SPU backend.
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dregalloc-fast-debug-spill.ll162 !73 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "Key<core::cell::Cell<core::optio…
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DTargetInfo.cpp75 llvm::Value *Cell = in AssignToArrayRange() local
77 Builder.CreateAlignedStore(Value, Cell, CharUnits::One()); in AssignToArrayRange()
/llvm-project-15.0.7/llvm/docs/
H A DWritingAnLLVMBackend.rst24 of the Cell processor or GPUs to support the execution of compute kernels.