Home
last modified time | relevance | path

Searched refs:Col (Results 1 – 25 of 80) sorted by relevance

1234

/external/clang/test/SemaCXX/
Dconstexpr-nqueens.cpp13 constexpr Board addQueen(int Row, int Col) const { in addQueen()
14 return Board(State | ((uint64_t)Row << (Col * 4))); in addQueen()
16 constexpr int getQueenRow(int Col) const { in getQueenRow()
17 return (State >> (Col * 4)) & 0xf; in getQueenRow()
19 constexpr bool ok(int Row, int Col) const { in ok()
20 return okRecurse(Row, Col, 0); in ok()
22 constexpr bool okRecurse(int Row, int Col, int CheckCol) const { in okRecurse()
23 return Col == CheckCol ? true : in okRecurse()
25 getQueenRow(CheckCol) == Row + (Col - CheckCol) ? false : in okRecurse()
26 getQueenRow(CheckCol) == Row + (CheckCol - Col) ? false : in okRecurse()
[all …]
/external/eigen/Eigen/src/OrderingMethods/
DEigen_Colamd.h119 #define COL_IS_DEAD(c) (Col [c].start < ALIVE)
120 #define COL_IS_ALIVE(c) (Col [c].start >= ALIVE)
121 #define COL_IS_DEAD_PRINCIPAL(c) (Col [c].start == DEAD_PRINCIPAL)
123 #define KILL_PRINCIPAL_COL(c) { Col [c].start = DEAD_PRINCIPAL ; }
124 #define KILL_NON_PRINCIPAL_COL(c) { Col [c].start = DEAD_NON_PRINCIPAL ; }
214 …_row, IndexType n_col, Colamd_Row<IndexType> Row [], colamd_col<IndexType> Col [], IndexType A [],…
217 …n_col, IndexType Alen, Colamd_Row<IndexType> Row [], colamd_col<IndexType> Col [], IndexType A [],…
220 static void order_children (IndexType n_col, colamd_col<IndexType> Col [], IndexType p []);
223 static void detect_super_cols (colamd_col<IndexType> Col [], IndexType A [], IndexType head [], Ind…
226 …_row, IndexType n_col, Colamd_Row<IndexType> Row [], colamd_col<IndexType> Col [], IndexType A [],…
[all …]
/external/llvm/tools/llvm-cov/
DSourceCoverageViewText.cpp105 unsigned Col = 1; in renderLine() local
107 unsigned End = std::min(S->Col, static_cast<unsigned>(Line.size()) + 1); in renderLine()
111 << Line.substr(Col - 1, End - Col); in renderLine()
113 HighlightedRanges.push_back(std::make_pair(Col, End)); in renderLine()
114 Col = End; in renderLine()
115 if (Col == ExpansionCol) in renderLine()
126 << Line.substr(Col - 1, Line.size() - Col + 1); in renderLine()
134 errs() << "Highlighted line " << LineNumber << ", " << Col << " -> ?\n"; in renderLine()
173 if (S->Col > PrevColumn) in renderRegionMarkers()
174 OS.indent(S->Col - PrevColumn); in renderRegionMarkers()
[all …]
DSourceCoverageViewHTML.cpp307 Snip(LCol - 1, Segments.empty() ? 0 : (Segments.front()->Col - 1)); in renderLine()
310 assert(LCol == Segments[I - 1]->Col && "Snippet start position is wrong"); in renderLine()
311 Snip(LCol - 1, Segments[I]->Col - LCol); in renderLine()
345 if (CurSeg->Col == ExpansionCol) in renderLine()
/external/clang/unittests/Tooling/
DCommentHandlerTest.cpp16 Comment(const std::string &Message, unsigned Line, unsigned Col) in Comment()
17 : Message(Message), Line(Line), Col(Col) { } in Comment()
20 unsigned Line, Col; member
108 << Current->Col; in ~CommentVerifier()
112 void Match(const char *Message, unsigned Line, unsigned Col) { in Match() argument
117 EXPECT_TRUE(C.Message == Message && C.Line == Line && C.Col == Col) in Match()
119 << "\" at line " << Line << ", column " << Col in Match()
121 << "\" at line " << C.Line << ", column " << C.Col; in Match()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DDebugLoc.cpp73 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, in get() argument
81 if (Col > 255) Col = 0; in get()
83 Result.LineCol = Line | (Col << 24); in get()
125 if (ConstantInt *Col = dyn_cast_or_null<ConstantInt>(N->getOperand(1))) in getFromDILocation() local
126 ColNo = Col->getZExtValue(); in getFromDILocation()
141 if (ConstantInt *Col = dyn_cast_or_null<ConstantInt>(N->getOperand(3))) in getFromDILexicalBlock() local
142 ColNo = Col->getZExtValue(); in getFromDILexicalBlock()
/external/clang/include/clang/Frontend/
DSerializedDiagnosticReader.h49 unsigned Col; member
51 Location(unsigned FileID, unsigned Line, unsigned Col, unsigned Offset) in Location()
52 : FileID(FileID), Line(Line), Col(Col), Offset(Offset) {} in Location()
/external/llvm/lib/ProfileData/Coverage/
DCoverageMapping.cpp286 void startSegment(unsigned Line, unsigned Col) { in startSegment() argument
287 DEBUG(dbgs() << "Top level segment at " << Line << ":" << Col << "\n"); in startSegment()
288 Segments.emplace_back(Line, Col, /*IsRegionEntry=*/false); in startSegment()
292 void startSegment(unsigned Line, unsigned Col, bool IsRegionEntry, in startSegment() argument
296 Segments.back().Col == Col) in startSegment()
298 DEBUG(dbgs() << "Segment at " << Line << ":" << Col); in startSegment()
302 Segments.emplace_back(Line, Col, Region.ExecutionCount, IsRegionEntry); in startSegment()
304 Segments.emplace_back(Line, Col, IsRegionEntry); in startSegment()
317 unsigned Line = Active->LineEnd, Col = Active->ColumnEnd; in popRegion() local
320 startSegment(Line, Col); in popRegion()
[all …]
/external/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h375 unsigned Col; member
383 CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry) in CoverageSegment()
384 : Line(Line), Col(Col), Count(0), HasCount(false), in CoverageSegment()
387 CoverageSegment(unsigned Line, unsigned Col, uint64_t Count, in CoverageSegment()
389 : Line(Line), Col(Col), Count(Count), HasCount(true), in CoverageSegment()
393 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry) ==
394 std::tie(R.Line, R.Col, R.Count, R.HasCount, R.IsRegionEntry);
/external/clang/tools/c-index-test/
Dcore_main.cpp82 unsigned Col = SM.getColumnNumber(FID, Offset); in handleDeclOccurence() local
83 OS << Line << ':' << Col << " | "; in handleDeclOccurence()
117 unsigned Col = SM.getColumnNumber(FID, Offset); in handleModuleOccurence() local
118 OS << Line << ':' << Col << " | "; in handleModuleOccurence()
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
Dp10.cpp39 template<typename eT> class Col : public Mat<eT> { class
41 using Col<eT>::operator();
/external/sonivox/jet_tools/JetCreator/
DJetDialogs.py46 for Lbl, Text, Row, Col, Len, Min, Max, Id, Lst, Fct, Enabled, HelpText in ctrls:
50 self.ctrls[Text] = wx.Button(panel, Id, Lbl, wx.Point(Col, Row), size=Len)
58 … self.ctrls[Text] = wx.TextCtrl(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET +3), wx.Size(Len,-1))
60 …self.ctrls[Text] = JetSpinOneBased(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1)…
62 …self.ctrls[Text] = JetSpin(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Mi…
64 …self.ctrls[Text] = wx.ComboBox(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), Ls…
69 … self.ctrls[Text] = TimeCtrl(panel, pos=(Col, Row + LBL_OFFSET), ctlName=Text)
71 …self.ctrls[Text] = JetFileCombo(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lb…
73 …self.ctrls[Text] = JetFileText(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lbl…
75 … self.ctrls[Text] = wx.StaticBox(parent=panel, id=wx.ID_ANY, label=Lbl, pos=(Row, Col), size=Len)
[all …]
/external/llvm/lib/IR/
DDebugLoc.cpp58 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, const MDNode *Scope, in get() argument
64 return DILocation::get(Scope->getContext(), Line, Col, in get()
/external/llvm/bindings/go/llvm/
DIRBindings.cpp95 unsigned Col, LLVMMetadataRef Scope, in LLVMSetCurrentDebugLocation2() argument
98 DebugLoc::get(Line, Col, Scope ? unwrap<MDNode>(Scope) : nullptr, in LLVMSetCurrentDebugLocation2()
DIRBindings.h55 unsigned Col, LLVMMetadataRef Scope,
/external/gemmlowp/internal/
Dsimd_wrappers_common_neon_sse.h88 VectorMap<SrcScalarType, VectorShape::Col>> {
90 const VectorMap<SrcScalarType, VectorShape::Col>& src, int pos) {
99 VectorDup<SrcScalarType, VectorShape::Col>> {
101 const VectorDup<SrcScalarType, VectorShape::Col>& src, int) {
110 VectorMap<SrcScalarType, VectorShape::Col>> {
111 using SrcObjectType = VectorMap<SrcScalarType, VectorShape::Col>;
127 VectorMap<SrcScalarType, VectorShape::Col>> {
128 using SrcObjectType = VectorMap<SrcScalarType, VectorShape::Col>;
Dunpack.h73 const VectorMap<const std::int32_t, VectorShape::Col>& in PrefetchResultBlock()
94 const VectorMap<const std::int32_t, VectorShape::Col>& in UnpackResultBlock()
144 const VectorMap<const std::int32_t, VectorShape::Col> lhs_sums_of_each_slice( in UnpackResult()
Dsimd_wrappers.h316 static_assert(Shape == VectorShape::Col || Rows == 1, "");
333 static_assert(Shape == VectorShape::Col || Rows == 1, "");
380 static constexpr int kRows = Shape == VectorShape::Col ? BroadcastRows : 1;
422 const int i = Shape == VectorShape::Col ? r : c;
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DSourceMgr.h174 int Line, int Col,
177 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Message(Msg),
DDebugLoc.h59 static DebugLoc get(unsigned Line, unsigned Col,
/external/clang/include/clang/Basic/
DSourceLocation.h358 unsigned Line, Col; variable
363 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) { in PresumedLoc()
386 unsigned getColumn() const { assert(isValid()); return Col; } in getColumn()
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DDebugLoc.h80 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope,
/external/icu/icu4c/source/data/curr/
Dksh.txt139 "koßtarikaanesche Colón",
748 one{"Kaßtarikaanesche Colón"}
749 other{"Kaßtarikaanesche Colón"}
750 zero{"Kaßtarikaanesche Colón"}
/external/llvm/include/llvm/IR/
DDebugLoc.h90 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope,
/external/clang/lib/Frontend/
DSerializedDiagnosticPrinter.cpp838 RECORD_SOURCE_RANGE, FileLookup[Start.FileID], Start.Line, Start.Col, in visitSourceRangeRecord()
839 Start.Offset, FileLookup[End.FileID], End.Line, End.Col, End.Offset}; in visitSourceRangeRecord()
850 Location.Col, Location.Offset, CategoryLookup[Category], in visitDiagnosticRecord()
863 Start.Line, Start.Col, Start.Offset, in visitFixitRecord()
864 FileLookup[End.FileID], End.Line, End.Col, in visitFixitRecord()

1234