/third_party/boost/boost/qvm/ |
D | map_mat_mat.hpp | 65 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 …]
|
D | map_vec_mat.hpp | 65 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 …]
|
D | mat.hpp | 45 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()
|
D | map_mat_vec.hpp | 26 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 …]
|
D | mat_traits_array.hpp | 38 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()
|
D | mat_traits_defaults.hpp | 65 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/ |
D | del_col_test.cpp | 16 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()
|
D | col_test.cpp | 17 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()
|
D | del_row_col_test.cpp | 16 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()
|
D | neg_col_test.cpp | 16 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()
|
D | access_m_fail2.cpp | 23 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> & );
|
D | access_m_fail1.cpp | 23 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/ |
D | transp_impl.hpp | 61 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/ |
D | unpaired.hpp | 23 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/ |
D | keyofInferenceLowerPriorityThanReturn.symbols | 11 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))
|
D | keyofInferenceLowerPriorityThanReturn.types | 10 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]>;
|
D | keyofInferenceLowerPriorityThanReturn.js | 7 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/ |
D | keyofInferenceLowerPriorityThanReturn.ts | 6 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/ |
D | unpaired.qbk | 8 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
|
D | source_position.qbk | 6 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/ |
D | CoverageMapping.h | 389 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/ |
D | giffix.c | 39 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/ |
D | find_iterator.hpp | 112 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/ |
D | collection-comparison-test.cpp | 29 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/ |
D | LowerMatrixIntrinsics.cpp | 85 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()
|