Searched refs:Col (Results 1 - 25 of 50) sorted by relevance

12

/external/clang/test/SemaCXX/
H A Dconstexpr-nqueens.cpp13 constexpr Board addQueen(int Row, int Col) const {
14 return Board(State | ((uint64_t)Row << (Col * 4)));
16 constexpr int getQueenRow(int Col) const {
17 return (State >> (Col * 4)) & 0xf;
19 constexpr bool ok(int Row, int Col) const {
20 return okRecurse(Row, Col, 0);
22 constexpr bool okRecurse(int Row, int Col, int CheckCol) const { argument
23 return Col == CheckCol ? true :
25 getQueenRow(CheckCol) == Row + (Col - CheckCol) ? false :
26 getQueenRow(CheckCol) == Row + (CheckCol - Col)
37 tryBoard(const Board &Try, int N, int Col, int Row, const Board &B) argument
41 buildBoardScan(int N, int Col, int Row, const Board &B) argument
48 buildBoardRecurse(int N, int Col, const Board &B) argument
[all...]
/external/eigen/Eigen/src/OrderingMethods/
H A 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 ; }
192 required for the Col and Row arrays, respectively, which are internal to
214 static void init_scoring (IndexType n_row, IndexType n_col, Colamd_Row<IndexType> Row [], colamd_col<IndexType> Col [], IndexType A [], IndexType head [], double knobs[COLAMD_KNOBS], IndexType *p_n_row2, IndexType *p_n_col2, IndexType *p_max_deg);
217 static IndexType find_ordering (IndexType n_row, IndexType n_col, IndexType Alen, Colamd_Row<IndexType> Row [], colamd_col<IndexType> Col [], IndexType A [], IndexType head [], IndexType n_col2, IndexType max_deg, IndexType pfree);
220 static void order_children (IndexType n_col, colamd_col<IndexType> Col [], IndexType p []);
223 static void detect_super_cols (colamd_col<IndexType> Col [], IndexTyp
332 colamd_col<IndexType> *Col ; /* pointer into A of Col [0..n_col] array */ local
[all...]
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp10.cpp39 template<typename eT> class Col : public Mat<eT> { class in namespace:PR14768
41 using Col<eT>::operator();
/external/llvm/tools/llvm-cov/
H A DSourceCoverageViewText.cpp105 unsigned Col = 1; local
107 unsigned End = std::min(S->Col, static_cast<unsigned>(Line.size()) + 1);
111 << Line.substr(Col - 1, End - Col);
113 HighlightedRanges.push_back(std::make_pair(Col, End));
114 Col = End;
115 if (Col == ExpansionCol)
126 << Line.substr(Col - 1, Line.size() - Col + 1);
134 errs() << "Highlighted line " << LineNumber << ", " << Col << " local
[all...]
H A DSourceCoverageViewHTML.cpp294 // snippet starts from Col=1 and ends at the start of the first segment.
307 Snip(LCol - 1, Segments.empty() ? 0 : (Segments.front()->Col - 1));
310 assert(LCol == Segments[I - 1]->Col && "Snippet start position is wrong");
311 Snip(LCol - 1, Segments[I]->Col - LCol);
345 if (CurSeg->Col == ExpansionCol)
/external/clang/unittests/Tooling/
H A DCommentHandlerTest.cpp16 Comment(const std::string &Message, unsigned Line, unsigned Col) argument
17 : Message(Message), Line(Line), Col(Col) { }
20 unsigned Line, Col; member in struct:clang::Comment
108 << Current->Col;
112 void Match(const char *Message, unsigned Line, unsigned Col) { argument
117 EXPECT_TRUE(C.Message == Message && C.Line == Line && C.Col == Col)
119 << "\" at line " << Line << ", column " << Col
121 << "\" at line " << C.Line << ", column " << C.Col;
[all...]
/external/clang/include/clang/Frontend/
H A DSerializedDiagnosticReader.h49 unsigned Col; member in struct:clang::serialized_diags::Location
51 Location(unsigned FileID, unsigned Line, unsigned Col, unsigned Offset) argument
52 : FileID(FileID), Line(Line), Col(Col), Offset(Offset) {}
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DDebugLoc.h80 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope,
/external/llvm/lib/IR/
H A DDebugLoc.cpp58 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, const MDNode *Scope, argument
64 return DILocation::get(Scope->getContext(), Line, Col,
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DDebugLoc.cpp73 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, argument
81 if (Col > 255) Col = 0;
83 Result.LineCol = Line | (Col << 24);
125 if (ConstantInt *Col = dyn_cast_or_null<ConstantInt>(N->getOperand(1)))
126 ColNo = Col->getZExtValue();
141 if (ConstantInt *Col = dyn_cast_or_null<ConstantInt>(N->getOperand(3)))
142 ColNo = Col->getZExtValue();
/external/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp286 void startSegment(unsigned Line, unsigned Col) { argument
287 DEBUG(dbgs() << "Top level segment at " << Line << ":" << Col << "\n"); local
288 Segments.emplace_back(Line, Col, /*IsRegionEntry=*/false);
292 void startSegment(unsigned Line, unsigned Col, bool IsRegionEntry, argument
296 Segments.back().Col == Col)
298 DEBUG(dbgs() << "Segment at " << Line << ":" << Col); local
302 Segments.emplace_back(Line, Col, Region.ExecutionCount, IsRegionEntry);
304 Segments.emplace_back(Line, Col, IsRegionEntry);
317 unsigned Line = Active->LineEnd, Col local
[all...]
/external/clang/tools/c-index-test/
H A Dcore_main.cpp82 unsigned Col = SM.getColumnNumber(FID, Offset); variable
83 OS << Line << ':' << Col << " | "; variable
117 unsigned Col = SM.getColumnNumber(FID, Offset); variable
118 OS << Line << ':' << Col << " | "; variable
/external/llvm/bindings/go/llvm/
H A DIRBindings.h55 unsigned Col, LLVMMetadataRef Scope,
H A DIRBindings.cpp95 unsigned Col, LLVMMetadataRef Scope,
98 DebugLoc::get(Line, Col, Scope ? unwrap<MDNode>(Scope) : nullptr,
94 LLVMSetCurrentDebugLocation2(LLVMBuilderRef Bref, unsigned Line, unsigned Col, LLVMMetadataRef Scope, LLVMMetadataRef InlinedAt) argument
/external/llvm/include/llvm/IR/
H A DDebugLoc.h90 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope,
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DDebugLoc.h59 static DebugLoc get(unsigned Line, unsigned Col,
H A DSourceMgr.h174 int Line, int Col,
177 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Message(Msg),
/external/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h375 unsigned Col; member in struct:llvm::coverage::CoverageSegment
383 CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry) argument
384 : Line(Line), Col(Col), Count(0), HasCount(false),
387 CoverageSegment(unsigned Line, unsigned Col, uint64_t Count, argument
389 : Line(Line), Col(Col), Count(Count), HasCount(true),
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/include/clang/Basic/
H A DSourceLocation.h358 unsigned Line, Col; member in class:clang::SourceLocation::PresumedLoc
363 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
386 unsigned getColumn() const { assert(isValid()); return Col; }
/external/gemmlowp/public/
H A Dgemmlowp.h59 typedef VectorDup<const std::int32_t, VectorShape::Col> OffsetColDup;
H A Dmap.h79 enum class VectorShape { Col, Row }; member in class:gemmlowp::VectorShape
/external/sonivox/jet_tools/JetCreator/
H A 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), min=Min, max=Max)
62 self.ctrls[Text] = JetSpin(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Min, max=Max)
64 self.ctrls[Text] = wx.ComboBox(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), Lst, wx.CB_DROPDOWN | wx.CB_READONLY )
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=Lbl, spec=Lst, id=Id)
73 self.ctrls[Text] = JetFileText(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lbl, spec=Lst, id=Id)
75 self.ctrls[Text] = wx.StaticBox(parent=panel, id=wx.ID_ANY, label=Lbl, pos=(Row, Col), siz
[all...]
/external/gemmlowp/internal/
H A 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>;
H A Dunpack.h73 const VectorMap<const std::int32_t, VectorShape::Col>&
94 const VectorMap<const std::int32_t, VectorShape::Col>&
144 const VectorMap<const std::int32_t, VectorShape::Col> lhs_sums_of_each_slice(
/external/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp838 RECORD_SOURCE_RANGE, FileLookup[Start.FileID], Start.Line, Start.Col,
839 Start.Offset, FileLookup[End.FileID], End.Line, End.Col, End.Offset};
850 Location.Col, Location.Offset, CategoryLookup[Category],
863 Start.Line, Start.Col, Start.Offset,
864 FileLookup[End.FileID], End.Line, End.Col,

Completed in 1717 milliseconds

12