Searched defs:col (Results 126 - 150 of 460) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_mvref_common.h28 int col; member in struct:position
153 mv.as_mv.col *= -1;
194 mi_col + mi_pos->col < tile->mi_col_start ||
196 mi_col + mi_pos->col >= tile->mi_col_end);
/external/chromium_org/third_party/libxml/src/
H A Derror.c176 unsigned int n, col; /* GCC warns if signed, because compared with sizeof() */ local
194 col = input->cur - cur;
211 while ((n<col) && (n++ < sizeof(content)-2) && (*ctnt != 0)) {
432 * @col: column number of the error or 0 if N/A
445 const char *str2, const char *str3, int int1, int col,
508 col = input->col;
585 to->int2 = col;
441 __xmlRaiseError(xmlStructuredErrorFunc schannel, xmlGenericErrorFunc channel, void *data, void *ctx, void *nod, int domain, int code, xmlErrorLevel level, const char *file, int line, const char *str1, const char *str2, const char *str3, int int1, int col, const char *msg, ...) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_print.cpp328 int col = TXT_DEFAULT; local
332 r = 'r'; col = TXT_GPR;
352 r = 'p'; col = TXT_REGISTER;
360 r = 'c'; col = TXT_FLAGS;
363 r = 'a'; col = TXT_REGISTER;
371 PRINT("%s%c%c%i%s", colour[col], p, r, idx, postFix);
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlower_mat_op_to_vec.cpp48 ir_dereference *get_column(ir_dereference *val, int col);
49 ir_rvalue *get_element(ir_dereference *val, int col, int row);
100 ir_mat_op_to_vec_visitor::get_element(ir_dereference *val, int col, int row) argument
102 val = get_column(val, col);
H A Dlower_ubo_reference.cpp247 ir_constant *col = new(mem_ctx) ir_constant(i); local
250 col);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_pixel_bitmap.c114 GLint row, col; local
141 for (col = 0; col < w; col++, bit++) {
142 if (test_bit(rowsrc, (col + src_offset) ^ mask)) {
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_pixel_bitmap.c114 GLint row, col; local
141 for (col = 0; col < w; col++, bit++) {
142 if (test_bit(rowsrc, (col + src_offset) ^ mask)) {
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_pixel_bitmap.c114 GLint row, col; local
141 for (col = 0; col < w; col++, bit++) {
142 if (test_bit(rowsrc, (col + src_offset) ^ mask)) {
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_atifragshader.c562 const SWspan *span, GLuint col)
572 COPY_4V(inputs[ATI_FS_INPUT_PRIMARY], span->array->attribs[FRAG_ATTRIB_COL0][col]);
573 COPY_4V(inputs[ATI_FS_INPUT_SECONDARY], span->array->attribs[FRAG_ATTRIB_COL1][col]);
560 init_machine(struct gl_context * ctx, struct atifs_machine *machine, const struct ati_fragment_shader *shader, const SWspan *span, GLuint col) argument
H A Ds_drawpix.c355 GLint col; local
356 for (col = 0; col < width; col++)
357 span.array->z[col] = zSrc[col] >> shift;
/external/chromium_org/third_party/skia/gm/
H A Dbeziereffects.cpp86 int col = 0; variable
110 SkScalar x = SkScalarMul(col, w);
181 ++col;
182 if (numCols == col) {
183 col = 0;
244 int col = 0; variable
268 SkScalar x = SkScalarMul(col, w);
336 ++col;
337 if (numCols == col) {
338 col
434 int col = 0; variable
[all...]
/external/chromium_org/third_party/skia/src/images/
H A Dbmpdecoderhelper.cpp190 uint8 col = pixels; local
194 col = pixels & 0xf;
196 col = pixels >> 4;
199 PutPixel(x++, y, col);
234 uint8 col = val; local
237 col = col & 0xf;
239 col >>= 4;
243 PutPixel(x++, y, col);
257 void BmpDecoderHelper::PutPixel(int x, int y, uint8 col) { argument
291 uint8 col; local
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_report.h44 int col; member in struct:__tsan::ReportStack
/external/e2fsprogs/debugfs/
H A Dhtree.c38 int thislen, col = 0; local
96 if (col + thislen > 80) {
98 col = 0;
101 col += thislen;
/external/eigen/Eigen/src/Core/
H A DBandMatrix.h68 inline Block<CoefficientsType,Dynamic,1> col(Index i) function in class:Eigen::internal::BandMatrixBase
H A DDenseCoeffsBase.h87 * parameters \a row and \a col are in range.
94 EIGEN_STRONG_INLINE CoeffReturnType coeff(Index row, Index col) const
97 && col >= 0 && col < cols());
98 return derived().coeff(row, col);
111 EIGEN_STRONG_INLINE CoeffReturnType operator()(Index row, Index col) const
114 && col >= 0 && col < cols());
115 return derived().coeff(row, col);
208 EIGEN_STRONG_INLINE PacketReturnType packet(Index row, Index col) cons
314 coeffRef(Index row, Index col) argument
334 operator ()(Index row, Index col) argument
429 writePacket(Index row, Index col, const typename internal::packet_traits<Scalar>::type& val) argument
476 copyCoeff(Index row, Index col, const DenseBase<OtherDerived>& other) argument
503 const Index col = colIndexByOuterInner(outer,inner); local
517 copyPacket(Index row, Index col, const DenseBase<OtherDerived>& other) argument
546 const Index col = colIndexByOuterInner(outer,inner); local
[all...]
H A DReverse.h110 inline Scalar& operator()(Index row, Index col) argument
112 eigen_assert(row >= 0 && row < rows() && col >= 0 && col < cols());
113 return coeffRef(row, col);
116 inline Scalar& coeffRef(Index row, Index col) argument
119 ReverseCol ? m_matrix.cols() - col - 1 : col);
122 inline CoeffReturnType coeff(Index row, Index col) const
125 ReverseCol ? m_matrix.cols() - col - 1 : col);
153 writePacket(Index row, Index col, const PacketScalar& x) argument
[all...]
H A DSelfAdjointView.h83 inline Scalar coeff(Index row, Index col) const
85 Base::check_coordinates_internal(row, col);
86 return m_matrix.coeff(row, col);
92 inline Scalar& coeffRef(Index row, Index col) argument
94 Base::check_coordinates_internal(row, col);
95 return m_matrix.const_cast_derived().coeffRef(row, col);
208 col = (UnrollCount-1) / Derived1::RowsAtCompileTime, enumerator in enum:Eigen::internal::triangular_assignment_selector::__anon20696
216 if(row == col)
217 dst.coeffRef(row, col) = numext::real(src.coeff(row, col));
233 col = (UnrollCount-1) / Derived1::RowsAtCompileTime, enumerator in enum:Eigen::internal::triangular_assignment_selector::__anon20697
[all...]
/external/eigen/Eigen/src/Core/products/
H A DCoeffBasedProduct.h163 EIGEN_STRONG_INLINE const Scalar coeff(Index row, Index col) const
166 ScalarCoeffImpl::run(row, col, m_lhs, m_rhs, res);
177 const Index col = RowsAtCompileTime == 1 ? index : 0; local
178 ScalarCoeffImpl::run(row, col, m_lhs, m_rhs, res);
183 EIGEN_STRONG_INLINE const PacketScalar packet(Index row, Index col) const
189 ::run(row, col, m_lhs, m_rhs, res);
242 static EIGEN_STRONG_INLINE void run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, RetScalar &res) argument
244 product_coeff_impl<DefaultTraversal, UnrollingIndex-1, Lhs, Rhs, RetScalar>::run(row, col, lhs, rhs, res);
245 res += lhs.coeff(row, UnrollingIndex) * rhs.coeff(UnrollingIndex, col);
253 static EIGEN_STRONG_INLINE void run(Index row, Index col, cons argument
263 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, RetScalar& res) argument
281 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::PacketScalar &pres) argument
292 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::PacketScalar &pres) argument
304 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, RetScalar &res) argument
317 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::Scalar &res) argument
329 run(Index , Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::Scalar &res) argument
359 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, typename Lhs::Scalar &res) argument
373 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, Packet &res) argument
384 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, Packet &res) argument
395 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, Packet &res) argument
405 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, Packet &res) argument
415 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, Packet& res) argument
428 run(Index row, Index col, const Lhs& lhs, const Rhs& rhs, Packet& res) argument
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DMappedSparseMatrix.h68 inline Scalar coeff(Index row, Index col) const
70 const Index outer = IsRowMajor ? row : col;
71 const Index inner = IsRowMajor ? col : row;
87 inline Scalar& coeffRef(Index row, Index col) argument
89 const Index outer = IsRowMajor ? row : col;
90 const Index inner = IsRowMajor ? col : row;
136 inline Index col() const { return IsRowMajor ? index() : m_outer; } function in class:Eigen::MappedSparseMatrix::InnerIterator
167 inline Index col() const { return IsRowMajor ? index() : m_outer; } function in class:Eigen::MappedSparseMatrix::ReverseInnerIterator
H A DSparseBlock.h36 inline Index col() const { return IsRowMajor ? this->index() : m_outer; } function in class:Eigen::BlockImpl::InnerIterator
48 inline Index col() const { return IsRowMajor ? this->index() : m_outer; } function in class:Eigen::BlockImpl::ReverseInnerIterator
99 inline Index col() const { return IsRowMajor ? this->index() : m_outer; } function in class:Eigen::BlockImpl::InnerIterator
110 inline Index col() const { return IsRowMajor ? this->index() : m_outer; } function in class:Eigen::BlockImpl::ReverseInnerIterator
251 * is col-major (resp. row-major).
258 * is col-major (resp. row-major). Read-only.
265 * is col-major (resp. row-major).
277 * is col-major (resp. row-major). Read-only.
320 inline Scalar& coeffRef(int row, int col) argument
323 .coeffRef(row + m_startRow.value(), col
366 inline Index col() const { return Base::col() - m_block.m_startCol.value(); } function in class:Eigen::BlockImpl::InnerIterator
389 inline Index col() const { return Base::col() - m_block.m_startCol.value(); } function in class:Eigen::BlockImpl::ReverseInnerIterator
[all...]
H A DSparseCwiseBinaryOp.h146 EIGEN_STRONG_INLINE Index col() const { return Lhs::IsRowMajor ? index() : m_lhsIter.col(); } function in class:Eigen::internal::sparse_cwise_binary_op_inner_iterator_selector
202 EIGEN_STRONG_INLINE Index col() const { return m_lhsIter.col(); } function in class:Eigen::internal::sparse_cwise_binary_op_inner_iterator_selector
242 EIGEN_STRONG_INLINE Index col() const { return m_lhsIter.col(); } function in class:Eigen::internal::sparse_cwise_binary_op_inner_iterator_selector
282 EIGEN_STRONG_INLINE Index col() const { return m_rhsIter.col(); } function in class:Eigen::internal::sparse_cwise_binary_op_inner_iterator_selector
H A DSparseDenseProduct.h128 inline Index col() const { return Transpose ? Base::index() : m_outer; } function in class:Eigen::SparseDenseOuterProduct::InnerIterator
H A DSparseDiagonalProduct.h21 // 2 - diag * col-major sparse
141 inline Index col() const { return m_outer; } function in class:Eigen::internal::sparse_diagonal_product_inner_iterator_selector
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h732 inline ColXpr col(Index i) function
737 /** This is the const version of col(). */
738 inline ConstColXpr col(Index i) const function
748 * \sa col(), class Block */

Completed in 1150 milliseconds

1234567891011>>