/sdk/emulator/opengl/tests/translator_tests/GLES_V2/ |
triangleV2.cpp | 83 unsigned char col = ((i / 8 + j / 8) % 2) * 255 ; local 85 *ptr = col; ptr++; 99 unsigned char col = ((i / 8 + j / 8) % 2) * 255 ; local 100 *ptr = col;
|
/system/core/liblinenoise/ |
linenoise.c | 174 int col = 0; local 179 col = 0; 181 col++; 184 return col;
|
/external/libvpx/libvpx/vp8/encoder/ |
rdopt.c | 480 int mv_col = x->e_mbd.mode_info_context->mbmi.mv.as_mv.col; 971 const int row = i >> 2, col = i & 3; local 978 if (col && labelings[i] == labelings[i-1]) 993 this_mv->as_int = col ? d[-1].bmi.mv.as_int : left_block_mv(mic, i); 1009 left_mv.as_int = col ? d[-1].bmi.mv.as_int : [all...] |
/external/opencv/cv/src/ |
cvcalibinit.cpp | 115 int row, col; // row and column of this quad member in struct:CvCBQuad 153 static int icvTrimCol(CvCBQuad **quads, int count, int col, int dir); 574 start->col = 0; 584 int col = q->col; local 586 col_hist[col+HSIZE]++; 592 if (col > col_max) col_max = col; 593 if (col < col_min) col_min = col; 692 int col = quads[i]->col; local [all...] |
/external/ceres-solver/internal/ceres/ |
polynomial.cc | 72 const double col_norm = companion_matrix_offdiagonal.col(i).lpNorm<1>(); 90 companion_matrix_offdiagonal.col(i) *= std::ldexp(1.0, exponent); 111 companion_matrix.col(degree - 1) = -polynomial.reverse().head(degree);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTable.h | 210 RenderTableCol* colElement(unsigned col, bool* startEdge = 0, bool* endEdge = 0) const 215 return slowColElement(col, startEdge, endEdge); 290 RenderTableCol* slowColElement(unsigned col, bool* startEdge, bool* endEdge) const;
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
texcompress.c | 435 * Return the address of the pixel at (col, row, img) in a 437 * \param col, row, img - image position (3D), should be a multiple of the 442 * \return address of pixel at (row, col, img) 445 _mesa_compressed_image_address(GLint col, GLint row, GLint img, 456 ASSERT(col % bw == 0); 459 offset = ((width + bw - 1) / bw) * (row / bh) + col / bw;
|
/external/e2fsprogs/ext2ed/ |
win.c | 54 show_pad_info.col=0; 145 prefresh (show_pad,show_pad_info.line,show_pad_info.col,top,left,show_pad_info.display_lines-1,show_pad_info.display_cols-1); 147 prefresh (show_pad,show_pad_info.line,show_pad_info.col,top,left,top+show_pad_info.display_lines-1,left+show_pad_info.display_cols-1);
|
/external/eigen/Eigen/src/Core/ |
Dot.h | 250 if(!internal::isApprox(nested.col(i).squaredNorm(), static_cast<RealScalar>(1), prec)) 253 if(!internal::isMuchSmallerThan(nested.col(i).dot(nested.col(j)), static_cast<Scalar>(1), prec))
|
/external/eigen/debug/gdb/ |
printers.py | 95 col = self.currentCol 119 return ('[%d]' % (col,), item) 120 return ('[%d,%d]' % (row, col), item)
|
/external/eigen/unsupported/Eigen/src/Polynomials/ |
Companion.h | 63 EIGEN_STRONG_INLINE const _Scalar operator()(Index row, Index col ) const 65 if( m_bl_diag.rows() > col ) 67 if( 0 < row ){ return m_bl_diag[col]; }
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
RandomSetter.h | 292 /** \returns a reference to the coefficient at given coordinates \a row, \a col */ 293 Scalar& operator() (Index row, Index col) 295 const Index outer = SetterRowMajor ? row : col; 296 const Index inner = SetterRowMajor ? col : row;
|
/external/jpeg/ |
jquant2.c | 232 JDIMENSION col; local 237 for (col = width; col > 0; col--) { 925 JDIMENSION col; local 965 JDIMENSION col; local [all...] |
/external/linux-tools-perf/util/ |
hist.c | 20 u16 hists__col_len(struct hists *self, enum hist_column col) 22 return self->col_len[col]; 25 void hists__set_col_len(struct hists *self, enum hist_column col, u16 len) 27 self->col_len[col] = len; 30 bool hists__new_col_len(struct hists *self, enum hist_column col, u16 len) 32 if (len > hists__col_len(self, col)) { 33 hists__set_col_len(self, col, len); 41 enum hist_column col; local 43 for (col = 0; col < HISTC_NR_COLS; ++col [all...] |
/external/mesa3d/src/mesa/main/ |
texcompress.c | 435 * Return the address of the pixel at (col, row, img) in a 437 * \param col, row, img - image position (3D), should be a multiple of the 442 * \return address of pixel at (row, col, img) 445 _mesa_compressed_image_address(GLint col, GLint row, GLint img, 456 ASSERT(col % bw == 0); 459 offset = ((width + bw - 1) / bw) * (row / bh) + col / bw;
|
/external/qemu/distrib/jpeg-6b/ |
jquant2.c | 232 JDIMENSION col; local 237 for (col = width; col > 0; col--) { 925 JDIMENSION col; local 965 JDIMENSION col; local [all...] |
/frameworks/compile/mclinker/lib/LD/ |
StaticResolver.cpp | 62 unsigned int col = getOrdinate(pOld); local 70 action = link_action[row][col]; 182 col = getOrdinate(*old);
|
/libcore/libdvm/src/main/java/java/lang/ |
ClassLoader.java | 589 Collection<Package> col = packages.values(); local 590 Package[] result = new Package[col.size()]; 591 col.toArray(result);
|
/build/tools/droiddoc/templates-ds/assets/css/ |
default.css | 165 .layout-content-col { 168 .layout-content-col:first-child { 170 .layout-content-col h3, 171 .layout-content-col h4 { 174 .layout-content-col.span-1 { 177 .layout-content-col.span-2 { 180 .layout-content-col.span-3 { 183 .layout-content-col.span-4 { 186 .layout-content-col.span-5 { 189 .layout-content-col.span-6 [all...] |
/build/tools/droiddoc/templates-sac/assets/css/ |
default.css | 169 .layout-content-col { 172 .layout-content-col:first-child { 174 .layout-content-col h3, 175 .layout-content-col h4 { 178 .layout-content-col.span-1 { 181 .layout-content-col.span-2 { 184 .layout-content-col.span-3 { 187 .layout-content-col.span-4 { 190 .layout-content-col.span-5 { 193 .layout-content-col.span-6 [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
GrammarAST.java | 300 int col=0; local 302 col = token.getCharPositionInLine(); 304 if ( col==0 ) { 307 col = child.getCharPositionInLine(); 310 return col;
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
TestCertUtils.java | 721 // @param col 725 private static String getData(int col, int startRow) { 728 if (datas[i][col] != null) { 729 return datas[i][col]; 734 if (datas[i][col] != null) { 735 return datas[i][col];
|
/external/libvpx/libvpx/vp8/decoder/ |
onyxd_if.c | 385 int row, col; local 392 for (col = 0; col < pbi->common.mb_cols; ++col) 394 const int i = row*pbi->common.mode_info_stride + col;
|
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
TestCertUtils.java | 722 // @param col 726 private static String getData(int col, int startRow) { 729 if (datas[i][col] != null) { 730 return datas[i][col]; 735 if (datas[i][col] != null) { 736 return datas[i][col];
|
/sdk/emulator/opengl/tests/translator_tests/GLES_CM/ |
triangleCM.cpp | 63 unsigned char col = ((i / 8 + j / 8) % 2) * 255 ; local 64 if (j>(width/2)) col/=2; 66 *ptr = col; ptr++; 80 unsigned char col = ((i / 8 + j / 8) % 2) * 255 ; local 81 *ptr = col;
|