Home
last modified time | relevance | path

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

123456

/third_party/boost/boost/qvm/
Dmap_mat_mat.hpp65 template <int Row,int Col>
73 BOOST_QVM_STATIC_ASSERT(Col>=0); in read_element()
74 BOOST_QVM_STATIC_ASSERT(Col<cols); in read_element()
75 …return mat_traits<OriginalMatrix>::template read_element<Row+(Row>=I),Col>(reinterpret_cast<Origin… in read_element()
78 template <int Row,int Col>
86 BOOST_QVM_STATIC_ASSERT(Col>=0); in write_element()
87 BOOST_QVM_STATIC_ASSERT(Col<cols); in write_element()
88 …return mat_traits<OriginalMatrix>::template write_element<Row+(Row>=I),Col>(reinterpret_cast<Origi… in write_element()
155 template <int Col,class OriginalMatrix>
194 template <int Row,int Col>
[all …]
Dmap_vec_mat.hpp65 template <int Row,int Col>
71 BOOST_QVM_STATIC_ASSERT(Col==0); in read_element()
77 template <int Row,int Col>
83 BOOST_QVM_STATIC_ASSERT(Col==0); in write_element()
190 template <int Row,int Col>
197 BOOST_QVM_STATIC_ASSERT(Col>=0); in read_element()
198 BOOST_QVM_STATIC_ASSERT(Col<cols); in read_element()
199 …return vec_traits<OriginalVector>::template read_element<Col>(reinterpret_cast<OriginalVector cons… in read_element()
202 template <int Row,int Col>
209 BOOST_QVM_STATIC_ASSERT(Col>=0); in write_element()
[all …]
Dmat.hpp45 template <int Row,int Col>
53 BOOST_QVM_STATIC_ASSERT(Col>=0); in read_element()
54 BOOST_QVM_STATIC_ASSERT(Col<Cols); in read_element()
55 return x.a[Row][Col]; in read_element()
58 template <int Row,int Col>
66 BOOST_QVM_STATIC_ASSERT(Col>=0); in write_element()
67 BOOST_QVM_STATIC_ASSERT(Col<Cols); in write_element()
68 return x.a[Row][Col]; in write_element()
Dmap_mat_vec.hpp26 template <int Col,class OriginalMatrix>
56 template <int Col,class OriginalMatrix>
58 vec_traits< qvm_detail::col_<Col,OriginalMatrix> >
60 typedef qvm_detail::col_<Col,OriginalMatrix> this_vector;
63 BOOST_QVM_STATIC_ASSERT(Col>=0);
64 BOOST_QVM_STATIC_ASSERT(Col<mat_traits<OriginalMatrix>::cols);
74 …return mat_traits<OriginalMatrix>::template read_element<I,Col>(reinterpret_cast<OriginalMatrix co… in read_element()
85 …return mat_traits<OriginalMatrix>::template write_element<I,Col>(reinterpret_cast<OriginalMatrix &… in write_element()
95 …return mat_traits<OriginalMatrix>::read_element_idx(i,Col,reinterpret_cast<OriginalMatrix const &>… in read_element_idx()
105 … return mat_traits<OriginalMatrix>::write_element_idx(i,Col,reinterpret_cast<OriginalMatrix &>(x)); in write_element_idx()
[all …]
Dmat_traits_array.hpp38 template <int Row,int Col>
46 BOOST_QVM_STATIC_ASSERT(Col>=0); in read_element()
47 BOOST_QVM_STATIC_ASSERT(Col<Cols); in read_element()
48 return x[Row][Col]; in read_element()
51 template <int Row,int Col>
59 BOOST_QVM_STATIC_ASSERT(Col>=0); in write_element()
60 BOOST_QVM_STATIC_ASSERT(Col<Cols); in write_element()
61 return x[Row][Col]; in write_element()
Dmat_traits_defaults.hpp65 template <int Row,int Col>
71 … return mat_traits<mat_type>::template write_element<Row,Col>(const_cast<mat_type &>(x)); in read_element()
/third_party/boost/libs/qvm/test/
Ddel_col_test.cpp16 template <int Rows,int Cols,int Col>
25 r1[i][j]=x.a[i][j+(j>=Col)]; in test()
27 assign(r2,del_col<Col>(x)); in test()
29 del_col<Col>(x) *= 2; in test()
32 r1[i][j]=x.a[i][j+(j>=Col)]; in test()
33 assign(r2,del_col<Col>(x)); in test()
35 del_col<Col>(x) + del_col<Col>(x); in test()
36 -del_col<Col>(x); in test()
Dcol_test.cpp17 template <int Rows,int Cols,int Col>
25 r1[i]=x.a[i][Col]; in test()
27 assign(r2,col<Col>(x)); in test()
29 col<Col>(x) *= 2; in test()
31 r1[i]=x.a[i][Col]; in test()
32 assign(r2,col<Col>(x)); in test()
34 col<Col>(x) + col<Col>(x); in test()
35 -col<Col>(x); in test()
Ddel_row_col_test.cpp16 template <int Rows,int Cols,int Row,int Col>
25 r1[i][j]=x.a[i+(i>=Row)][j+(j>=Col)]; in test()
27 assign(r2,del_row_col<Row,Col>(x)); in test()
29 del_row_col<Row,Col>(x) *= 2; in test()
32 r1[i][j]=x.a[i+(i>=Row)][j+(j>=Col)]; in test()
33 assign(r2,del_row_col<Row,Col>(x)); in test()
35 del_row_col<Row,Col>(x) + del_row_col<Row,Col>(x); in test()
36 -del_row_col<Row,Col>(x); in test()
Dneg_col_test.cpp16 template <int Rows,int Cols,int Col>
25 r1[i][j]=(j==Col?-x.a[i][j]:x.a[i][j]); in test()
27 assign(r2,neg_col<Col>(x)); in test()
29 neg_col<Col>(x) + neg_col<Col>(x); in test()
30 -neg_col<Col>(x); in test()
Daccess_m_fail2.cpp23 template <int Row,int Col> static int read_element( my_mat<R,C> const & );
24 template <int Row,int Col> static int & write_element( my_mat<R,C> & );
Daccess_m_fail1.cpp23 template <int Row,int Col> static int read_element( my_mat<R,C> const & );
24 template <int Row,int Col> static int & write_element( my_mat<R,C> & );
/third_party/boost/boost/qvm/detail/
Dtransp_impl.hpp61 template <int Row,int Col>
69 BOOST_QVM_STATIC_ASSERT(Col>=0); in read_element()
70 BOOST_QVM_STATIC_ASSERT(Col<cols); in read_element()
71 …return mat_traits<OriginalMatrix>::template read_element<Col,Row>(reinterpret_cast<OriginalMatrix … in read_element()
74 template <int Row,int Col>
82 BOOST_QVM_STATIC_ASSERT(Col>=0); in write_element()
83 BOOST_QVM_STATIC_ASSERT(Col<cols); in write_element()
84 …return mat_traits<OriginalMatrix>::template write_element<Col,Row>(reinterpret_cast<OriginalMatrix… in write_element()
/third_party/boost/boost/metaparse/v1/error/
Dunpaired.hpp23 template <int Line, int Col, class Msg = boost::mpl::na>
31 s << Msg::get_value() << " (see " << Line << ":" << Col << ")"; in get_value()
36 template <int Line, int Col>
37 struct unpaired<Line, Col, boost::mpl::na>
42 struct apply : unpaired<Line, Col, Msg> {};
/third_party/typescript/tests/baselines/reference/
DkeyofInferenceLowerPriorityThanReturn.symbols11 declare class Col<s, a> {
12 >Col : Symbol(Col, Decl(keyofInferenceLowerPriorityThanReturn.ts, 3, 1))
16 protected dummy: [Col<s, a>, s, a];
17 >dummy : Symbol(Col.dummy, Decl(keyofInferenceLowerPriorityThanReturn.ts, 5, 25))
18 >Col : Symbol(Col, Decl(keyofInferenceLowerPriorityThanReturn.ts, 3, 1))
44 [P in keyof T1]: Col<Write, T1[P]>;
47 >Col : Symbol(Col, Decl(keyofInferenceLowerPriorityThanReturn.ts, 3, 1))
53 [P in keyof T2]: Col<Write, T2[P]>;
56 >Col : Symbol(Col, Decl(keyofInferenceLowerPriorityThanReturn.ts, 3, 1))
DkeyofInferenceLowerPriorityThanReturn.types10 declare class Col<s, a> {
11 >Col : Col<s, a>
13 protected dummy: [Col<s, a>, s, a];
14 >dummy : [Col<s, a>, s, a]
27 [P in keyof T1]: Col<Write, T1[P]>;
29 [P in keyof T2]: Col<Write, T2[P]>;
DkeyofInferenceLowerPriorityThanReturn.js7 declare class Col<s, a> {
8 protected dummy: [Col<s, a>, s, a];
16 [P in keyof T1]: Col<Write, T1[P]>;
18 [P in keyof T2]: Col<Write, T2[P]>;
/third_party/typescript/tests/cases/conformance/types/typeRelationships/typeInference/
DkeyofInferenceLowerPriorityThanReturn.ts6 declare class Col<s, a> { class
7 protected dummy: [Col<s, a>, s, a];
15 [P in keyof T1]: Col<Write, T1[P]>;
17 [P in keyof T2]: Col<Write, T2[P]>;
/third_party/boost/libs/metaparse/doc/
Dunpaired.qbk8 template <int Line, int Col, class Msg = boost::mpl::na>
17 [[`Col`] [`int` value]]
25 paren is missing). `Line` and `Col` point to the beginning of the
29 It supports currying: `unpaired<Line, Col>` is a
Dsource_position.qbk6 template <class Line, class Col, class PrevChar>
14 [[`Col`] [[link boxed_value boxed] integer value]]
/third_party/skia/third_party/externals/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 …]
/third_party/giflib/
Dgiffix.c39 int i, j, NumFiles, ExtCode, Row, Col, Width, Height, ErrorCode, in main() local
112 Col = GifFileIn->Image.Left; in main()
116 PROGRAM_NAME, ++ImageNum, Col, Row, Width, Height); in main()
121 if (EGifPutImageDesc(GifFileOut, Col, Row, Width, Height, in main()
/third_party/boost/boost/algorithm/string/
Dfind_iterator.hpp112 RangeT& Col, in find_iterator() argument
116 …erator_range<BOOST_STRING_TYPENAME range_iterator<RangeT>::type> lit_col(::boost::as_literal(Col)); in find_iterator()
280 RangeT& Col, in split_iterator() argument
285 …erator_range<BOOST_STRING_TYPENAME range_iterator<RangeT>::type> lit_col(::boost::as_literal(Col)); in split_iterator()
/third_party/boost/libs/test/test/writing-test-ts/
Dcollection-comparison-test.cpp29 template<typename Col>
31 validate_comparisons(Col const& c1, Col const& c2 )
/third_party/skia/third_party/externals/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()

123456