HomeSort by relevance Sort by last modified time
    Searched refs:col (Results 126 - 150 of 702) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/dexmaker/src/dx/java/com/android/dx/util/
Hex.java 270 int col = 0; local
273 if (col == 0) {
283 } else if ((col & 1) == 0) {
289 col++;
290 if (col == bpl) {
292 col = 0;
297 if (col != 0) {
  /external/jpeg/
rdcolmap.c 174 unsigned int w, h, maxval, row, col; local
195 for (col = 0; col < w; col++) {
206 for (col = 0; col < w; col++) {
rdrle.c 209 JDIMENSION col; local
219 for (col = cinfo->image_width; col > 0; col--) {
244 JDIMENSION row, col; local
295 for (col = 0; col < cinfo->image_width; col++) {
298 (colormap[GETJSAMPLE(rle_row[channel][col]) + 256 * channel] >> 8);
321 for (col = cinfo->image_width; col > 0; col--)
    [all...]
  /external/qemu/distrib/jpeg-6b/
rdcolmap.c 174 unsigned int w, h, maxval, row, col; local
195 for (col = 0; col < w; col++) {
206 for (col = 0; col < w; col++) {
rdrle.c 209 JDIMENSION col; local
219 for (col = cinfo->image_width; col > 0; col--) {
244 JDIMENSION row, col; local
295 for (col = 0; col < cinfo->image_width; col++) {
298 (colormap[GETJSAMPLE(rle_row[channel][col]) + 256 * channel] >> 8);
321 for (col = cinfo->image_width; col > 0; col--)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Hex.java 282 int col = 0; local
285 if (col == 0) {
295 } else if ((col & 1) == 0) {
301 col++;
302 if (col == bpl) {
304 col = 0;
309 if (col != 0) {
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_matrix.c 107 if (!eina_matrixsparse_cell_idx_get(tm->matrix, t->row, t->col, &cell)) {
266 * @param col the column number.
278 Ewk_Tile *ewk_tile_matrix_tile_exact_get(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row, float zoom)
283 t = eina_matrixsparse_data_idx_get(tm->matrix, row, col);
301 eina_matrixsparse_data_idx_replace(tm->matrix, row, col, inl, NULL);
316 * @param col the column number.
324 Eina_Bool ewk_tile_matrix_tile_exact_exists(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row, float zoom)
328 t = eina_matrixsparse_data_idx_get(tm->matrix, row, col);
352 * @param col the column number.
361 Ewk_Tile *ewk_tile_matrix_tile_nearest_get(Ewk_Tile_Matrix *tm, unsigned long col, unsigned int row, float zoom
632 unsigned long col, row; local
704 unsigned long row, col; local
    [all...]
  /external/libvpx/libvpx/vp8/common/
reconinter.c 131 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
133 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
135 sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch);
158 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
160 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
162 x->subpixel_predict8x8(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst_stride);
173 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
175 if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
177 x->subpixel_predict8x4(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst_stride);
189 ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3)
    [all...]
postproc.c 143 int col; local
153 for (col = 0; col < cols; col++)
155 unsigned char p_above2 = p_src[col - 2 * src_pixels_per_line];
156 unsigned char p_above1 = p_src[col - src_pixels_per_line];
157 unsigned char p_below1 = p_src[col + src_pixels_per_line];
158 unsigned char p_below2 = p_src[col + 2 * src_pixels_per_line];
160 v = p_src[col];
162 if ((abs(v - p_above2) < f[col]) && (abs(v - p_above1) < f[col]
    [all...]
  /external/skia/tests/
Matrix44Test.cpp 84 for (int col = 0; col < 4; ++col) {
85 placeholderMatrix->setDouble(row, col, row * col);
96 for (int col = 0; col < 4; ++col) {
97 REPORTER_ASSERT(reporter, nearly_equal_double(row * col, testMatrix->getDouble(row, col)));
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactorySpiTest.java 93 Collection col = certFactorySpi local
95 assertNull("Not null Collection", col);
161 Collection col = certFactorySpi local
163 assertNull("Result must be null", col);
177 col = certFactorySpi.engineGenerateCRLs(dis);
178 assertNull("Result must be null", col);
231 Collection col = certFactorySpi local
233 assertNull("Result must be null", col);
247 col = certFactorySpi.engineGenerateCRLs(dis);
248 assertNull("Result must be null", col);
    [all...]
  /external/eigen/Eigen/src/Core/
MapBase.h 90 inline const Scalar& coeff(Index row, Index col) const
92 return m_data[col * colStride() + row * rowStride()];
101 inline const Scalar& coeffRef(Index row, Index col) const
103 return this->m_data[col * colStride() + row * rowStride()];
113 inline PacketScalar packet(Index row, Index col) const
116 (m_data + (col * colStride() + row * rowStride()));
201 inline ScalarWithConstIfNotLvalue& coeffRef(Index row, Index col)
203 return this->m_data[col * colStride() + row * rowStride()];
213 inline void writePacket(Index row, Index col, const PacketScalar& x)
216 (this->m_data + (col * colStride() + row * rowStride()), x)
    [all...]
TriangularMatrix.h 54 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); }
57 /** \see MatrixBase::copyCoeff(row,col)
60 EIGEN_STRONG_INLINE void copyCoeff(Index row, Index col, Other& other)
62 derived().coeffRef(row, col) = other.coeff(row, col);
65 inline Scalar operator()(Index row, Index col) const
67 check_coordinates(row, col);
436 col = (UnrollCount-1) \/ Derived1::RowsAtCompileTime, enumerator in enum:Eigen::internal::triangular_assignment_selector::__anon7467
    [all...]
BooleanRedux.h 21 col = (UnrollCount-1) / Derived::RowsAtCompileTime, enumerator in enum:Eigen::internal::all_unroller::__anon7275
27 return all_unroller<Derived, UnrollCount-1>::run(mat) && mat.coeff(row, col);
47 col = (UnrollCount-1) / Derived::RowsAtCompileTime, enumerator in enum:Eigen::internal::any_unroller::__anon7276
53 return any_unroller<Derived, UnrollCount-1>::run(mat) || mat.coeff(row, col);
CwiseUnaryOp.h 101 EIGEN_STRONG_INLINE const Scalar coeff(Index row, Index col) const
103 return derived().functor()(derived().nestedExpression().coeff(row, col));
107 EIGEN_STRONG_INLINE PacketScalar packet(Index row, Index col) const
109 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(row, col));
  /external/eigen/test/
product.h 126 res.col(i) = m1 * m2.transpose().col(i);
137 VERIFY_IS_APPROX(res.col(r).noalias() = square.adjoint() * square.col(r), (square.adjoint() * square.col(r)).eval());
138 VERIFY_IS_APPROX(res.col(r).noalias() = square * square.col(r), (square * square.col(r)).eval());
141 Scalar x = square2.row(c) * square2.col(c2);
142 VERIFY_IS_APPROX(x, square2.row(c).transpose().cwiseProduct(square2.col(c2)).sum())
    [all...]
umeyama.cpp 40 for (int col = 0; col < size; ++col)
42 typename MatrixType::ColXpr colVec = Q.col(col);
43 for (int prevCol = 0; prevCol < col; ++prevCol)
45 typename MatrixType::ColXpr prevColVec = Q.col(prevCol);
48 Q.col(col) = colVec.normalized();
88 Q.col(0) *= internal::conj(Q.determinant())
    [all...]
schur_complex.cpp 27 for(int col = 0; col < row; ++col) {
28 VERIFY(T(row,col) == (typename MatrixType::Scalar)0);
  /dalvik/opcode-gen/
opcode-gen.awk 182 col = 1;
185 col = colPrint(value, (i == MAX_PACKED_OPCODE), col, 16, 2, " ");
201 col = 1;
204 col = colPrint(value, (i == MAX_PACKED_OPCODE), col, 7, 9, " ");
211 col = 1;
214 col = colPrint(value, (i == MAX_PACKED_OPCODE), col, 3, 19, " ");
236 function colPrint(value, isLast, col, numCols, colWidth, linePrefix)
    [all...]
  /external/icu4c/test/cintltst/
capitst.c 278 UCollator *col, *ruled; local
302 col = ucol_open("en_US", &status);
308 ucol_getVersion(col, versionArray);
322 ucol_getUCAVersion(col, versionUCAArray);
331 doStrcoll(col, source, u_strlen(source), target, u_strlen(target), UCOL_LESS, "ab < abc comparison failed");
336 doStrcoll(col, source, u_strlen(source), target, u_strlen(target), UCOL_LESS, "ab < AB comparison failed");
341 doStrcoll(col, source, u_strlen(source), target, u_strlen(target), UCOL_GREATER, "black-bird > blackbird comparison failed");
346 doStrcoll(col, source, u_strlen(source), target, u_strlen(target), UCOL_LESS, "black bird < black-bird comparison failed");
351 doStrcoll(col, source, u_strlen(source), target, u_strlen(target), UCOL_GREATER, "Hello > hello comparison failed");
356 doAssert( (ucol_getStrength(col) == UCOL_TERTIARY), "collation object has the wrong strength")
568 UCollator *col; local
661 UCollator * col; local
817 UCollator * col = ucol_open("en_US", &err); local
1075 UCollator *col; local
1220 UCollator *col; local
1275 UCollator *col; local
    [all...]
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h 160 for (Index col = 0; col < cols(); col++) {
161 if (other.coeff(row, col) != Scalar(0))
162 derived().insert(row, col) = other.coeff(row, col);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
symbol-table.cpp 49 vector<char *> col; local
50 SplitToVector(line, "\n\t ", &col, true);
51 if (col.size() == 0) // empty line
53 if (col.size() != 2) {
58 const char *symbol = col[0];
59 const char *value = col[1];
  /frameworks/av/cmds/stagefright/
jpeg.cpp 76 for (int col = 0; col < width; col++) {
  /external/ceres-solver/internal/ceres/
block_random_access_sparse_matrix_test.cc 72 int col; local
76 &row, &col,
80 EXPECT_EQ(col, 0);
86 row, col, blocks[row_block_id], blocks[col_block_id]) =
  /external/eigen/Eigen/src/Householder/
BlockHouseholder.h 34 triFactor.col(i).head(i).noalias() = -hCoeffs(i) * vectors.block(i, 0, rs, i).adjoint()
35 * vectors.col(i).tail(rs);
38 triFactor.col(i).head(i) = triFactor.block(0,0,i,i).template triangularView<Upper>()
39 * triFactor.col(i).head(i);

Completed in 1546 milliseconds

1 2 3 4 56 7 8 91011>>