Home
last modified time | relevance | path

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

123456

/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.h234 …, IndexType n_col, RowStructure<IndexType> Row [], ColStructure<IndexType> Col [], IndexType A [],…
237 …l, IndexType Alen, RowStructure<IndexType> Row [], ColStructure<IndexType> Col [], IndexType A [],…
240 static void order_children (IndexType n_col, ColStructure<IndexType> Col [], IndexType p []);
243 static void detect_super_cols (ColStructure<IndexType> Col [], IndexType A [], IndexType head [], I…
246 …, IndexType n_col, RowStructure<IndexType> Row [], ColStructure<IndexType> Col [], IndexType A [],…
352 Colamd::ColStructure<IndexType> *Col ; /* pointer into A of Col [0..n_col] array */ in compute_ordering() local
447 Col = (ColStructure<IndexType> *) &A [Alen] ; in compute_ordering()
452 if (!Colamd::init_rows_cols (n_row, n_col, Row, Col, A, p, stats)) in compute_ordering()
461 Colamd::init_scoring (n_row, n_col, Row, Col, A, p, knobs, in compute_ordering()
466 ngarbage = Colamd::find_ordering (n_row, n_col, Alen, Row, Col, A, p, in compute_ordering()
[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-10.0/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h389 unsigned Col; member
399 CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry) in CoverageSegment()
400 : Line(Line), Col(Col), Count(0), HasCount(false), in CoverageSegment()
403 CoverageSegment(unsigned Line, unsigned Col, uint64_t Count,
405 : Line(Line), Col(Col), Count(Count), HasCount(true), in Line()
409 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry,
410 L.IsGapRegion) == std::tie(R.Line, R.Col, R.Count,
425 unsigned Col; variable
428 InstantiationGroup(unsigned Line, unsigned Col, in InstantiationGroup() argument
430 : Line(Line), Col(Col), Instantiations(std::move(Instantiations)) {} in InstantiationGroup()
[all …]
/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/starlark-go/syntax/
Dscan.go199 Col int32 // 1-based column (rune) number; 0 if column unknown member
221 p.Col = 1
223 p.Col += int32(utf8.RuneCountInString(s))
230 if p.Col > 0 {
231 return fmt.Sprintf("%s:%d:%d", file, p.Line, p.Col)
242 return p.Col < q.Col
407 sc.pos.Col = 1
409 sc.pos.Col++
416 sc.pos.Col++
492 col += int(tab - (sc.pos.Col-1)%tab)
/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/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/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/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/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-10.0/llvm/lib/Transforms/Scalar/
DLowerMatrixIntrinsics.cpp85 Value *computeColumnAddr(Value *BasePtr, Value *Col, Value *Stride, in computeColumnAddr() argument
95 Value *ColumnStart = Builder.CreateMul(Col, Stride, "col.start"); in computeColumnAddr()
619 Value *Col = LM.getColumn(J); in extractVector() local
620 Value *Undef = UndefValue::get(Col->getType()); in extractVector()
622 return Builder.CreateShuffleVector(Col, Undef, Mask, "block"); in extractVector()
626 Value *insertVector(Value *Col, unsigned I, Value *Block, in insertVector() argument
632 unsigned NumElts = cast<VectorType>(Col->getType())->getNumElements(); in insertVector()
647 unsigned VecNumElts = cast<VectorType>(Col->getType())->getNumElements(); in insertVector()
656 return Builder.CreateShuffleVector(Col, Block, MaskVal); in insertVector()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DDebugLoc.cpp71 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, const MDNode *Scope, in get() argument
77 return DILocation::get(Scope->getContext(), Line, Col, in get()
DRemarkStreamer.cpp78 unsigned Col = DL.getColumn(); in toRemarkLocation() local
79 return remarks::RemarkLocation{File, Line, Col}; in toRemarkLocation()
/external/tensorflow/tensorflow/lite/kernels/
Dcpu_backend_gemm_gemmlowp.h96 gemmlowp::VectorMap<const int32, gemmlowp::VectorShape::Col>;
156 gemmlowp::VectorMap<const int32, gemmlowp::VectorShape::Col>;
161 gemmlowp::VectorShape::Col>
/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/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/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()
146 const VectorMap<const std::int32_t, VectorShape::Col> lhs_sums_of_each_slice( in UnpackResult()
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DDebugLoc.h80 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope,
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDebugLoc.h79 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope,

123456