Searched defs:col (Results 251 - 275 of 460) sorted by relevance

<<111213141516171819

/external/chromium_org/third_party/libjpeg_turbo/
H A Dtjunittest.c92 int index, row, col, halfway=16; local
99 for(col=0; col<w; col++)
101 if(flags&TJFLAG_BOTTOMUP) index=(h-row-1)*w+col;
102 else index=row*w+col;
103 if(((row/8)+(col/8))%2==0) buf[index]=(row<halfway)? 255:0;
112 for(col=0; col<w; col
164 int index, row, col, retval=1; local
240 int row, col; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/
H A Derror_concealment.c27 int col; member in struct:ec_position
137 int row, col; local
157 for (col = 0; col < end_col; ++col)
163 (((first_blk_col + col) *
165 assign_overlap(b_ol_ul[row * 4 + col].overlaps, bmi, overlap);
176 int row, col, rel_row, rel_col; local
184 col = (4 * b_col) << 3; /* Q3 */
188 new_col = col
286 int row, col; local
499 int row, col, i; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_format_s3tc.c43 int col, int row,
53 int col, int row,
63 int col, int row,
73 int col, int row,
41 util_format_dxt1_rgb_fetch_stub(int src_stride, const uint8_t *src, int col, int row, uint8_t *dst) argument
51 util_format_dxt1_rgba_fetch_stub(int src_stride, const uint8_t *src, int col, int row, uint8_t *dst ) argument
61 util_format_dxt3_rgba_fetch_stub(int src_stride, const uint8_t *src, int col, int row, uint8_t *dst ) argument
71 util_format_dxt5_rgba_fetch_stub(int src_stride, const uint8_t *src, int col, int row, uint8_t *dst ) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
H A Dwmesa.c274 GLubyte col[3]; local
275 UNCLAMPED_FLOAT_TO_UBYTE(col[0], color.f[0]);
276 UNCLAMPED_FLOAT_TO_UBYTE(col[1], color.f[1]);
277 UNCLAMPED_FLOAT_TO_UBYTE(col[2], color.f[2]);
278 pwc->clearColorRef = RGB(col[0], col[1], col[2]);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dimage.c393 GLint row, col; local
404 for (col = 0; col < width; col++) {
407 SET_PIXEL(col, row);
426 for (col = 0; col < width; col++) {
429 SET_PIXEL(col, row);
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_execute.c310 const GLint col = machine->CurElement; local
311 const GLfloat w = machine->Attribs[FRAG_ATTRIB_WPOS][col][3];
H A Dprogram.c224 * \param col returns the column number corresponding to 'pos'.
229 GLint *line, GLint *col)
246 *col = (pos - lineStart) + 1;
228 _mesa_find_line_column(const GLubyte *string, const GLubyte *pos, GLint *line, GLint *col) argument
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp181 TiXmlParsingData( const char* start, int _tabsize, int row, int col )
187 cursor.col = col;
208 int col = cursor.col; local
227 col = 0;
240 col = 0;
258 col = (col / tabsize + 1) * tabsize;
275 { p +=3; ++col; } //
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/
H A DSkPdfFont.h195 SkPaint col; local
196 col.setColor(SK_ColorMAGENTA);
203 canvas->drawRect(rect, col);
/external/chromium_org/third_party/skia/include/utils/
H A DSkMatrix44.h209 * get a value from the matrix. The row,col parameters work as follows:
214 inline SkMScalar get(int row, int col) const {
216 SkASSERT((unsigned)col <= 3);
217 return fMat[col][row];
221 * set a value in the matrix. The row,col parameters work as follows:
226 inline void set(int row, int col, SkMScalar value) { argument
228 SkASSERT((unsigned)col <= 3);
229 fMat[col][row] = value;
233 inline double getDouble(int row, int col) const {
234 return SkMScalarToDouble(this->get(row, col));
236 setDouble(int row, int col, double value) argument
242 setFloat(int row, int col, float value) argument
[all...]
/external/chromium_org/third_party/skia/samplecode/
H A DSampleWarp.cpp223 SkPoint& pt(int row, int col) { argument
224 return fPts[row * (fRows + 1) + col];
/external/deqp/framework/common/
H A DtcuMatrix.hpp84 inline const T& operator() (int row, int col) const { return m_data[col][row]; }
85 inline T& operator() (int row, int col) { return m_data[col][row]; } argument
331 for (int col = 0; col < Cols; col++)
332 (*this)(row, col) = (row == col) ? T(1) : T(0);
340 for (int col
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fShaderInvarianceTests.cpp368 const tcu::RGBA col = surface.getPixel(x, y); local
370 if (col.getRed() != 0)
/external/deqp/modules/gles3/functional/
H A Des3fShaderInvarianceTests.cpp368 const tcu::RGBA col = surface.getPixel(x, y); local
370 if (col.getRed() != 0)
/external/e2fsprogs/ext2ed/
H A Dext2ed.h177 int line,col; member in struct:struct_pad_info
/external/eigen/Eigen/src/Core/
H A DTriangularMatrix.h54 inline Scalar coeff(Index row, Index col) const { return derived().coeff(row,col); }
55 inline Scalar& coeffRef(Index row, Index col) { return derived().coeffRef(row,col); } argument
57 /** \see MatrixBase::copyCoeff(row,col)
60 EIGEN_STRONG_INLINE void copyCoeff(Index row, Index col, Other& other) argument
62 derived().coeffRef(row, col) = other.coeff(row, col);
65 inline Scalar operator()(Index row, Index col) const
67 check_coordinates(row, col);
70 operator ()(Index row, Index col) argument
231 coeffRef(Index row, Index col) argument
436 col = (UnrollCount-1) / Derived1::RowsAtCompileTime, enumerator in enum:Eigen::internal::triangular_assignment_selector::__anon20711
[all...]
/external/eigen/Eigen/src/Core/products/
H A DGeneralMatrixMatrix.h45 /* Specialization for a col-major destination matrix
216 void operator() (Index row, Index rows, Index col=0, Index cols=-1, GemmParallelInfo<Index>* info=0) const argument
223 /*(const Scalar*)*/&m_rhs.coeffRef(0,col), m_rhs.outerStride(),
224 (Scalar*)&(m_dest.coeffRef(row,col)), m_dest.outerStride(),
/external/eigen/Eigen/src/SparseCholesky/
H A DSimplicialCholesky.h222 inline bool operator() (const Index& row, const Index& col, const Scalar&) const argument
224 return row!=col;
/external/eigen/Eigen/src/SparseCore/
H A DSparseVector.h98 inline Scalar coeff(Index row, Index col) const
100 eigen_assert(IsColVector ? (col==0 && row>=0 && row<m_size) : (row==0 && col>=0 && col<m_size));
101 return coeff(IsColVector ? row : col);
109 inline Scalar& coeffRef(Index row, Index col) argument
111 eigen_assert(IsColVector ? (col==0 && row>=0 && row<m_size) : (row==0 && col>=0 && col<m_size));
112 return coeff(IsColVector ? row : col);
155 insert(Index row, Index col) argument
369 inline Index col() const { return IsColVector ? 0 : index(); } function in class:Eigen::SparseVector::InnerIterator
401 inline Index col() const { return IsColVector ? 0 : index(); } function in class:Eigen::SparseVector::ReverseInnerIterator
[all...]
/external/icu/icu4c/source/common/
H A Drbbitblb.cpp1095 int col; local
1127 for (col=0; col<fRB->fSetBuilder->getNumCharCategories(); col++) {
1128 row->fNextState[col] = (uint16_t)sd->fDtran->elementAti(col);
/external/jpeg/
H A Djquant1.c468 JDIMENSION col; local
475 for (col = width; col > 0; col--) {
498 JDIMENSION col; local
504 for (col = width; col > 0; col--) {
528 JDIMENSION col; local
543 for (col
581 JDIMENSION col; local
631 JDIMENSION col; local
[all...]
/external/libhevc/common/x86/
H A Dihevc_sao_ssse3_intr.c131 WORD32 row, col; local
149 for(col = 0; col < wd; col += 8)
254 for(col = wd; col >= 16; col -= 16)
450 WORD32 row, col; local
471 for(col = 0; col < w
889 WORD32 row, col; local
1224 WORD32 row, col; local
1594 WORD32 row, col; local
2030 WORD32 row, col; local
2489 WORD32 row, col; local
3249 WORD32 row, col; local
4081 WORD32 row, col; local
4858 WORD32 row, col; local
[all...]
/external/libhevc/decoder/
H A Dihevcd_boundary_strength.c344 WORD32 row, col; local
347 for(col = start_pos_x; col < start_pos_x + tu_size; col += 2)
349 pu1_qp[(row >> 1) * qp_strd + (col >> 1)] = ps_tu->b7_qp;
689 WORD32 row, col; local
692 for(col = start_pos_x; col < start_pos_x + tu_size; col += 2)
694 pu1_qp[(row >> 1) * qp_strd + (col >>
[all...]
H A Dihevcd_process_slice.c702 WORD32 row, col; local
708 for(col = 0; col < ctb_size / MIN_PU_SIZE; col++)
710 pu1_pic_pu_map_ctb[row * ctb_size / MIN_PU_SIZE + col] = 0;
733 for(col = 0; col < pu_wd / MIN_PU_SIZE; col++)
734 pu4_nbr_pu_idx[(1 + ps_pu->b4_pos_x + col)
/external/libvpx/libvpx/vp8/decoder/
H A Derror_concealment.c29 int col; member in struct:ec_position
139 int row, col; local
159 for (col = 0; col < end_col; ++col)
165 (((first_blk_col + col) *
167 assign_overlap(b_ol_ul[row * 4 + col].overlaps, bmi, overlap);
178 int row, col, rel_row, rel_col; local
186 col = (4 * b_col) << 3; /* Q3 */
190 new_col = col
288 int row, col; local
501 int row, col, i; local
[all...]

Completed in 469 milliseconds

<<111213141516171819