/external/skia/src/images/ |
bmpdecoderhelper.cpp | 190 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) { 291 uint8 col; local [all...] |
/external/eigen/Eigen/src/SparseCore/ |
TriangularSolver.h | 33 for(int col=0 ; col<other.cols() ; ++col) 37 Scalar tmp = other.coeff(i,col); 46 tmp -= lastVal * other.coeff(lastIndex,col); 49 other.coeffRef(i,col) = tmp; 53 other.coeffRef(i,col) = tmp/lastVal; 67 for(int col=0 ; col<other.cols() ; ++col) [all...] |
SparseTranspose.h | 42 inline typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); } 43 inline typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); } function in class:Eigen::TransposeImpl::InnerIterator 55 inline typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); } 56 inline typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); } function in class:Eigen::TransposeImpl::ReverseInnerIterator
|
/external/eigen/Eigen/src/Core/ |
SelfAdjointView.h | 83 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) 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::__anon19469 216 if(row == col) 217 dst.coeffRef(row, col) = real(src.coeff(row, col)); 233 col = (UnrollCount-1) \/ Derived1::RowsAtCompileTime, enumerator in enum:Eigen::internal::triangular_assignment_selector::__anon19470 [all...] |
Reverse.h | 110 inline Scalar& operator()(Index row, Index col) 112 eigen_assert(row >= 0 && row < rows() && col >= 0 && col < cols()); 113 return coeffRef(row, col); 116 inline Scalar& coeffRef(Index row, Index col) 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); [all...] |
DiagonalProduct.h | 60 const Scalar coeff(Index row, Index col) const 62 return m_diagonal.diagonal().coeff(ProductOrder == OnTheLeft ? row : col) * m_matrix.coeff(row, col); 66 EIGEN_STRONG_INLINE PacketScalar packet(Index row, Index col) const 71 const Index indexInDiagonalVector = ProductOrder == OnTheLeft ? row : col; 73 return packet_impl<LoadMode>(row,col,indexInDiagonalVector,typename internal::conditional< 80 EIGEN_STRONG_INLINE PacketScalar packet_impl(Index row, Index col, Index id, internal::true_type) const 82 return internal::pmul(m_matrix.template packet<LoadMode>(row, col), 87 EIGEN_STRONG_INLINE PacketScalar packet_impl(Index row, Index col, Index id, internal::false_type) const 93 return internal::pmul(m_matrix.template packet<LoadMode>(row, col), [all...] |
SelfCwiseBinaryOp.h | 65 inline Scalar& coeffRef(Index row, Index col) 68 return m_matrix.const_cast_derived().coeffRef(row, col); 70 inline const Scalar& coeffRef(Index row, Index col) const 72 return m_matrix.coeffRef(row, col); 88 void copyCoeff(Index row, Index col, const DenseBase<OtherDerived>& other) 92 && col >= 0 && col < cols()); 93 Scalar& tmp = m_matrix.coeffRef(row,col); 94 tmp = m_functor(tmp, _other.coeff(row,col)); 107 void copyPacket(Index row, Index col, const DenseBase<OtherDerived>& other [all...] |
/external/aac/libSBRdec/src/ |
sbrdec_drc.cpp | 185 \col Number of the time slot. 195 int col, 225 col += indx; 230 if (col < (numQmfSubSamples>>1)) { /* first half of current frame */ 232 int j = col + (numQmfSubSamples>>1); 254 else if (col < numQmfSubSamples) { /* second half of current frame */ 256 int j = col - (numQmfSubSamples>>1); 295 int j = col - (numQmfSubSamples>>1); 317 col -= numQmfSubSamples; 379 if (col == (numQmfSubSamples>>1)-1) 487 int col; local [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
ConcurrentModificationExceptionTest.java | 29 Collection col; field in class:ConcurrentModificationExceptionTest.CollectionModifier 34 col = c; 44 col.add(someItem); 45 col.remove(someItem);
|
/external/ceres-solver/internal/ceres/ |
block_random_access_matrix.h | 73 // int row, col, row_stride, col_stride; 75 // &row, &col, 81 // m.block(row, col, row_block_size, col_block_size) = ... 107 // (row, col) within this matrix. 115 int* col,
|
small_blas.h | 188 for (int col = 0; col < NUM_COL_C; ++col) { 191 tmp += A[row * NUM_COL_A + k] * B[k * NUM_COL_B + col]; 194 const int index = (row + start_row_c) * col_stride_c + start_col_c + col; 248 for (int col = 0; col < NUM_COL_C; ++col) { 251 tmp += A[k * NUM_COL_A + row] * B[k * NUM_COL_B + col]; 254 const int index = (row + start_row_c) * col_stride_c + start_col_c + col; [all...] |
block_random_access_dense_matrix_test.cc | 54 int col; local 58 m.GetCell(i, j, &row, &col, &row_stride, &col_stride); 62 EXPECT_EQ(col, col_idx); 84 int col; local 88 i, j, &row, &col, &row_stride, &col_stride); 90 row, col, blocks[i], blocks[j]) =
|
/external/eigen/doc/examples/ |
Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp | 23 cout << m.col(index) << endl;
|
/libcore/luni/src/test/java/tests/api/java/util/ |
ConcurrentModificationExceptionTest.java | 29 Collection col; field in class:ConcurrentModificationExceptionTest.CollectionModifier 34 col = c; 44 col.add(someItem); 45 col.remove(someItem);
|
/external/libvpx/libvpx/vp8/encoder/ |
lookahead.c | 112 int row, col, active_end; local 130 col = 0; 135 for (; col < mb_cols; ++col) 137 if (active_map[col]) 142 if (col == mb_cols) 146 active_end = col; 157 col << 4, 16, 158 (active_end - col) << 4); 161 col = active_end [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_lookahead.c | 92 int row, col, active_end; local 112 col = 0; 116 for (; col < mb_cols; ++col) { 117 if (active_map[col]) 122 if (col == mb_cols) 126 active_end = col; 136 col << 4, 16, 137 (active_end - col) << 4); 140 col = active_end [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
phystokens.py | 79 col = 0 88 col = 0 95 if mark_start and scol > col: 96 line.append(("ws", " " * (scol - col))) 105 col = ecol
|
/external/chromium_org/third_party/freetype/src/base/ |
ftlcdfil.c | 107 FT_Byte* col = column; local 112 val1 = col[0]; 118 col += pitch; 120 val1 = col[0]; 125 col += pitch; 132 val = col[0]; 141 col[-2 * pitch] = (FT_Byte)pix; 142 col += pitch; 151 col[-2 * pitch] = (FT_Byte)pix; 155 col[-pitch] = (FT_Byte)pix 231 FT_Byte* col = column; local [all...] |
/external/freetype/src/base/ |
ftlcdfil.c | 109 FT_Byte* col = column; local 114 val1 = col[0]; 120 col += pitch; 122 val1 = col[0]; 127 col += pitch; 134 val = col[0]; 143 col[-2 * pitch] = (FT_Byte)pix; 144 col += pitch; 153 col[-2 * pitch] = (FT_Byte)pix; 157 col[-pitch] = (FT_Byte)pix 233 FT_Byte* col = column; local [all...] |
/external/jpeg/ |
jdcolor.c | 149 register JDIMENSION col; local 165 for (col = 0; col < num_cols; col++) { 166 y = GETJSAMPLE(inptr0[col]); 167 cb = GETJSAMPLE(inptr1[col]); 168 cr = GETJSAMPLE(inptr2[col]); 190 register JDIMENSION col; local 206 for (col = 0; col < num_cols; col++) 231 register JDIMENSION col; local 303 register JDIMENSION col; local 379 register JDIMENSION col; local 405 register JDIMENSION col; local 456 register JDIMENSION col; local 564 register JDIMENSION col; local 585 register JDIMENSION col; local 606 register JDIMENSION col; local 643 register JDIMENSION col; local 699 register JDIMENSION col; local [all...] |
/external/qemu/distrib/jpeg-6b/ |
jdcolor.c | 147 register JDIMENSION col; local 163 for (col = 0; col < num_cols; col++) { 164 y = GETJSAMPLE(inptr0[col]); 165 cb = GETJSAMPLE(inptr1[col]); 166 cr = GETJSAMPLE(inptr2[col]); 188 register JDIMENSION col; local 204 for (col = 0; col < num_cols; col++) 229 register JDIMENSION col; local 301 register JDIMENSION col; local 377 register JDIMENSION col; local 403 register JDIMENSION col; local 454 register JDIMENSION col; local 562 register JDIMENSION col; local 583 register JDIMENSION col; local 604 register JDIMENSION col; local 641 register JDIMENSION col; local 697 register JDIMENSION col; local [all...] |
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
DynamicSparseMatrix.h | 89 /** \returns the coefficient value at given position \a row, \a col 92 inline Scalar coeff(Index row, Index col) const 94 const Index outer = IsRowMajor ? row : col; 95 const Index inner = IsRowMajor ? col : row; 99 /** \returns a reference to the coefficient value at given position \a row, \a col 103 inline Scalar& coeffRef(Index row, Index col) 105 const Index outer = IsRowMajor ? row : col; 106 const Index inner = IsRowMajor ? col : row; 145 /** \returns a reference to the non zero coefficient at position \a row, \a col assuming that: 150 inline Scalar& insertBack(Index row, Index col) [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/ |
TextureBlenderLuminance.java | 123 float oneMinusFactor, col;
local 195 col = textureIntensity * color[0];
196 result[0] = col < materialColor[0] ? col : materialColor[0];
197 col = textureIntensity * color[1];
198 result[1] = col < materialColor[1] ? col : materialColor[1];
199 col = textureIntensity * color[2];
200 result[2] = col < materialColor[2] ? col : materialColor[2]; [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
lexer.py | 99 i=self.col 107 self.col = i+1 115 self.col=0 121 self.set_state(tok,kind,self.lno,self.col) 130 i=self.col 145 self.col = j 168 self.col = j 181 self.col = i+3 186 self.col = i+1 195 self.col = j+ [all...] |
/external/chromium_org/chrome/browser/resources/file_manager/css/ |
table.css | 7 html.col-resize * { 8 cursor: col-resize !important; 59 cursor: col-resize;
|