Home
last modified time | relevance | path

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

1234567

/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/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
DSourceCoverageViewText.cpp114 unsigned Col = 1; in renderLine() local
116 unsigned End = std::min(S->Col, static_cast<unsigned>(Line.size()) + 1); in renderLine()
120 << Line.substr(Col - 1, End - Col); in renderLine()
122 HighlightedRanges.push_back(std::make_pair(Col, End)); in renderLine()
123 Col = End; in renderLine()
127 else if (Col == ExpansionCol) in renderLine()
136 << Line.substr(Col - 1, Line.size() - Col + 1); in renderLine()
144 errs() << "Highlighted line " << LineNumber << ", " << Col << " -> ?\n"; in renderLine()
192 if (S->Col > PrevColumn) in renderRegionMarkers()
193 OS.indent(S->Col - PrevColumn); in renderRegionMarkers()
[all …]
DSourceCoverageViewHTML.cpp515 Snip(LCol - 1, Segments.empty() ? 0 : (Segments.front()->Col - 1)); in renderLine()
518 Snip(LCol - 1, Segments[I]->Col - LCol); in renderLine()
555 else if (CurSeg->Col == ExpansionCol) in renderLine()
561 Snippets[I + 1] = Highlight(Snippets[I + 1], CurSeg->Col, in renderLine()
562 CurSeg->Col + Snippets[I + 1].size()); in renderLine()
597 errs() << "Marker at " << CurSeg->Line << ":" << CurSeg->Col << " = " 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h385 unsigned Col; member
395 CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry) in CoverageSegment()
396 : Line(Line), Col(Col), Count(0), HasCount(false), in CoverageSegment()
399 CoverageSegment(unsigned Line, unsigned Col, uint64_t Count,
401 : Line(Line), Col(Col), Count(Count), HasCount(true), in Line()
405 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry,
406 L.IsGapRegion) == std::tie(R.Line, R.Col, R.Count,
421 unsigned Col; variable
424 InstantiationGroup(unsigned Line, unsigned Col, in InstantiationGroup() argument
426 : Line(Line), Col(Col), Instantiations(std::move(Instantiations)) {} in InstantiationGroup()
[all …]
/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/swiftshader/third_party/llvm-7.0/llvm/bindings/go/llvm/
DIRBindings.h32 unsigned Col; member
48 unsigned Col, LLVMMetadataRef Scope,
DIRBindings.cpp55 unsigned Col, LLVMMetadataRef Scope, in LLVMSetCurrentDebugLocation2() argument
58 DebugLoc::get(Line, Col, Scope ? unwrap<MDNode>(Scope) : nullptr, in LLVMSetCurrentDebugLocation2()
Dir_test.go135 if loc.Col != 20 {
136 t.Errorf("Got column %d, though wanted 20", loc.Col)
/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/swiftshader/third_party/llvm-7.0/llvm/test/TableGen/
DRelTest.td24 let ColFields = ["Col"];
34 string Col = "";
/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/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DDebugLoc.cpp59 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, const MDNode *Scope, in get() argument
65 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()
/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>;
/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),
/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()

1234567