/external/libhevc/common/ |
D | ihevc_sao.c | 85 WORD32 row, col; in ihevc_sao_band_offset_luma() local 93 for(col = 0; col < wd; col++) in ihevc_sao_band_offset_luma() 95 pu1_src_top[col] = pu1_src[(ht - 1) * src_strd + col]; in ihevc_sao_band_offset_luma() 110 for(col = 0; col < wd; col++) in ihevc_sao_band_offset_luma() 114 band_idx = band_table[pu1_src[col] >> band_shift]; in ihevc_sao_band_offset_luma() 115 … pu1_src[col] = CLIP3(pu1_src[col] + pi1_sao_offset[band_idx], 0, (1 << (band_shift + 5)) - 1); in ihevc_sao_band_offset_luma() 140 WORD32 row, col; in ihevc_sao_band_offset_chroma() local 150 for(col = 0; col < wd; col++) in ihevc_sao_band_offset_chroma() 152 pu1_src_top[col] = pu1_src[(ht - 1) * src_strd + col]; in ihevc_sao_band_offset_chroma() 170 for(col = 0; col < wd; col++) in ihevc_sao_band_offset_chroma() [all …]
|
D | ihevc_inter_pred_filters.c | 116 WORD32 row, col; in ihevc_inter_pred_luma_copy() local 120 for(col = 0; col < wd; col++) in ihevc_inter_pred_luma_copy() 122 pu1_dst[col] = pu1_src[col]; in ihevc_inter_pred_luma_copy() 178 WORD32 row, col, i; in ihevc_inter_pred_luma_horz() local 183 for(col = 0; col < wd; col++) in ihevc_inter_pred_luma_horz() 187 i2_tmp += pi1_coeff[i] * pu1_src[col + (i - 3)]; in ihevc_inter_pred_luma_horz() 192 pu1_dst[col] = (UWORD8)i2_tmp; in ihevc_inter_pred_luma_horz() 251 WORD32 row, col, i; in ihevc_inter_pred_luma_vert() local 256 for(col = 0; col < wd; col++) in ihevc_inter_pred_luma_vert() 260 i2_tmp += pi1_coeff[i] * pu1_src[col + (i - 3) * src_strd]; in ihevc_inter_pred_luma_vert() [all …]
|
D | ihevc_weighted_pred.c | 117 WORD32 row, col; in ihevc_weighted_pred_uni() local 122 for(col = 0; col < wd; col++) in ihevc_weighted_pred_uni() 124 i4_tmp = (pi2_src[col] + lvl_shift) * wgt0; in ihevc_weighted_pred_uni() 128 pu1_dst[col] = CLIP_U8(i4_tmp); in ihevc_weighted_pred_uni() 202 WORD32 row, col; in ihevc_weighted_pred_chroma_uni() local 207 for(col = 0; col < 2 * wd; col += 2) in ihevc_weighted_pred_chroma_uni() 209 i4_tmp = (pi2_src[col] + lvl_shift) * wgt0_cb; in ihevc_weighted_pred_chroma_uni() 213 pu1_dst[col] = CLIP_U8(i4_tmp); in ihevc_weighted_pred_chroma_uni() 215 i4_tmp = (pi2_src[col + 1] + lvl_shift) * wgt0_cr; in ihevc_weighted_pred_chroma_uni() 219 pu1_dst[col + 1] = CLIP_U8(i4_tmp); in ihevc_weighted_pred_chroma_uni() [all …]
|
D | ihevc_chroma_intra_pred_filters.c | 475 WORD32 row, col; in ihevc_intra_pred_chroma_planar() local 499 for(col = 0; col < (2 * nt); col += 2) in ihevc_intra_pred_chroma_planar() 501 pu1_dst[row * dst_strd + col] = ((nt - 1 - col / 2) in ihevc_intra_pred_chroma_planar() 503 + (col / 2 + 1) * pu1_ref[2 * (three_nt + 1)] in ihevc_intra_pred_chroma_planar() 504 + (nt - 1 - row) * pu1_ref[2 * (two_nt + 1) + col] in ihevc_intra_pred_chroma_planar() 507 pu1_dst[row * dst_strd + col + 1] = ((nt - 1 - col / 2) in ihevc_intra_pred_chroma_planar() 509 + (col / 2 + 1) * pu1_ref[2 * (three_nt + 1) + 1] in ihevc_intra_pred_chroma_planar() 510 + (nt - 1 - row) * pu1_ref[2 * (two_nt + 1) + col + 1] in ihevc_intra_pred_chroma_planar() 566 WORD32 row, col; in ihevc_intra_pred_chroma_dc() local 611 for(col = 0; col < (2 * nt); col += 2) in ihevc_intra_pred_chroma_dc() [all …]
|
D | ihevc_intra_pred_filters.c | 735 WORD32 row, col; in ihevc_intra_pred_luma_planar() local 762 for(col = 0; col < nt; col++) in ihevc_intra_pred_luma_planar() 764 pu1_dst[row * dst_strd + col] = ((nt - 1 - col) in ihevc_intra_pred_luma_planar() 766 + (col + 1) * pu1_ref[three_nt + 1] in ihevc_intra_pred_luma_planar() 767 + (nt - 1 - row) * pu1_ref[two_nt + 1 + col] in ihevc_intra_pred_luma_planar() 823 WORD32 row, col; in ihevc_intra_pred_luma_dc() local 865 for(col = 0; col < nt; col++) in ihevc_intra_pred_luma_dc() 866 pu1_dst[(row * dst_strd) + col] = dc_val; in ihevc_intra_pred_luma_dc() 874 for(col = 1; col < nt; col++) in ihevc_intra_pred_luma_dc() 875 pu1_dst[col] = (pu1_ref[two_nt + 1 + col] + three_dc_val + 2) >> 2; in ihevc_intra_pred_luma_dc() [all …]
|
/external/apache-harmony/support/src/test/java/tests/support/ |
D | Support_CollectionTest.java | 28 Collection<Integer> col; // must contain the Integers 0 to 99 field in Support_CollectionTest 36 col = c; in Support_CollectionTest() 41 new Support_UnmodifiableCollectionTest("", col).runTest(); in runTest() 50 assertTrue("CollectionTest - a) add did not work", col.add(new Integer( in runTest() 52 assertTrue("CollectionTest - b) add did not work", col in runTest() 56 assertTrue("CollectionTest - a) remove did not work", col in runTest() 58 assertTrue("CollectionTest - b) remove did not work", !col in runTest() 62 assertTrue("CollectionTest - a) addAll failed", col in runTest() 64 assertTrue("CollectionTest - b) addAll failed", col in runTest() 68 assertTrue("CollectionTest - a) containsAll failed", col in runTest() [all …]
|
/external/chromium_org/sql/ |
D | statement.cc | 95 bool Statement::BindNull(int col) { in BindNull() argument 100 return CheckOk(sqlite3_bind_null(ref_->stmt(), col + 1)); in BindNull() 103 bool Statement::BindBool(int col, bool val) { in BindBool() argument 104 return BindInt(col, val ? 1 : 0); in BindBool() 107 bool Statement::BindInt(int col, int val) { in BindInt() argument 112 return CheckOk(sqlite3_bind_int(ref_->stmt(), col + 1, val)); in BindInt() 115 bool Statement::BindInt64(int col, int64 val) { in BindInt64() argument 120 return CheckOk(sqlite3_bind_int64(ref_->stmt(), col + 1, val)); in BindInt64() 123 bool Statement::BindDouble(int col, double val) { in BindDouble() argument 128 return CheckOk(sqlite3_bind_double(ref_->stmt(), col + 1, val)); in BindDouble() [all …]
|
D | statement.h | 104 bool BindNull(int col); 105 bool BindBool(int col, bool val); 106 bool BindInt(int col, int val); 107 bool BindInt64(int col, int64 val); 108 bool BindDouble(int col, double val); 109 bool BindCString(int col, const char* val); 110 bool BindString(int col, const std::string& val); 111 bool BindString16(int col, const base::string16& value); 112 bool BindBlob(int col, const void* value, int value_len); 125 ColType ColumnType(int col) const; [all …]
|
/external/deqp/framework/common/ |
D | tcuMatrix.hpp | 84 inline const T& operator() (int row, int col) const { return m_data[col][row]; } in operator ()() 85 inline T& operator() (int row, int col) { return m_data[col][row]; } in operator ()() argument 331 for (int col = 0; col < Cols; col++) in Matrix() local 332 (*this)(row, col) = (row == col) ? T(1) : T(0); in Matrix() 340 for (int col = 0; col < Cols; col++) in Matrix() local 341 (*this)(row, col) = (row == col) ? src : T(0); in Matrix() 349 for (int col = 0; col < Cols; col++) in Matrix() local 350 (*this)(row, col) = src[row*Cols + col]; in Matrix() 359 for (int col = 0; col < Cols; col++) in Matrix() local 360 (*this)(row, col) = (row == col) ? src.m_data[row] : T(0); in Matrix() [all …]
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | radeon_tile.c | 43 unsigned col; /* current source column */ in micro_tile_8_x_4_8bit() local 51 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_8_x_4_8bit() 53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col; in micro_tile_8_x_4_8bit() 60 unsigned columns = MIN2(tile_width, width - col); in micro_tile_8_x_4_8bit() 74 unsigned col; /* current source column */ in micro_tile_4_x_4_16bit() local 82 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_4_x_4_16bit() 84 uint16_t *src2 = (uint16_t *)src + src_pitch * row + col; in micro_tile_4_x_4_16bit() 91 unsigned columns = MIN2(tile_width, width - col); in micro_tile_4_x_4_16bit() 105 unsigned col; /* current source column */ in micro_tile_8_x_2_16bit() local 113 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_8_x_2_16bit() [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/ |
D | radeon_tile.c | 43 unsigned col; /* current source column */ in micro_tile_8_x_4_8bit() local 51 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_8_x_4_8bit() 53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col; in micro_tile_8_x_4_8bit() 60 unsigned columns = MIN2(tile_width, width - col); in micro_tile_8_x_4_8bit() 74 unsigned col; /* current source column */ in micro_tile_4_x_4_16bit() local 82 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_4_x_4_16bit() 84 uint16_t *src2 = (uint16_t *)src + src_pitch * row + col; in micro_tile_4_x_4_16bit() 91 unsigned columns = MIN2(tile_width, width - col); in micro_tile_4_x_4_16bit() 105 unsigned col; /* current source column */ in micro_tile_8_x_2_16bit() local 113 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_8_x_2_16bit() [all …]
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_tile.c | 43 unsigned col; /* current source column */ in micro_tile_8_x_4_8bit() local 51 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_8_x_4_8bit() 53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col; in micro_tile_8_x_4_8bit() 60 unsigned columns = MIN2(tile_width, width - col); in micro_tile_8_x_4_8bit() 74 unsigned col; /* current source column */ in micro_tile_4_x_4_16bit() local 82 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_4_x_4_16bit() 84 uint16_t *src2 = (uint16_t *)src + src_pitch * row + col; in micro_tile_4_x_4_16bit() 91 unsigned columns = MIN2(tile_width, width - col); in micro_tile_4_x_4_16bit() 105 unsigned col; /* current source column */ in micro_tile_8_x_2_16bit() local 113 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_8_x_2_16bit() [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
D | radeon_tile.c | 43 unsigned col; /* current source column */ in micro_tile_8_x_4_8bit() local 51 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_8_x_4_8bit() 53 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col; in micro_tile_8_x_4_8bit() 60 unsigned columns = MIN2(tile_width, width - col); in micro_tile_8_x_4_8bit() 74 unsigned col; /* current source column */ in micro_tile_4_x_4_16bit() local 82 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_4_x_4_16bit() 84 uint16_t *src2 = (uint16_t *)src + src_pitch * row + col; in micro_tile_4_x_4_16bit() 91 unsigned columns = MIN2(tile_width, width - col); in micro_tile_4_x_4_16bit() 105 unsigned col; /* current source column */ in micro_tile_8_x_2_16bit() local 113 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_8_x_2_16bit() [all …]
|
/external/pdfium/core/src/fxge/dib/ |
D | fx_dib_composite.cpp | 260 for (int col = 0; col < pixel_count; col ++) { in _CompositeRow_Argb2Mask() local 263 src_alpha = clip_scan[col] * src_alpha / 255; in _CompositeRow_Argb2Mask() 277 for (int col = 0; col < pixel_count; col ++) { in _CompositeRow_Rgba2Mask() local 280 src_alpha = clip_scan[col] * src_alpha / 255; in _CompositeRow_Rgba2Mask() 314 for (int col = 0; col < pixel_count; col ++) { in _CompositeRow_Argb2Graya() local 319 src_alpha = clip_scan[col] * src_alpha / 255; in _CompositeRow_Argb2Graya() 336 src_alpha = clip_scan[col] * src_alpha / 255; in _CompositeRow_Argb2Graya() 362 for (int col = 0; col < pixel_count; col ++) { in _CompositeRow_Argb2Graya() local 367 src_alpha = clip_scan[col] * src_alpha / 255; in _CompositeRow_Argb2Graya() 384 src_alpha = clip_scan[col] * src_alpha / 255; in _CompositeRow_Argb2Graya() [all …]
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseColEtree.h | 73 Index row,col; variable 78 for (col = 0; col < nc; col++) 80 Index pcol = col; 81 if(perm) pcol = perm[col]; 85 firstRowElt(row) = (std::min)(firstRowElt(row), col); 93 for (col = 0; col < nc; col++) 95 found_diag = col>=m; 96 pp(col) = col; 97 cset = col; 98 root(cset) = col; [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 35 …[0][(mv->as_mv.row - ref->as_mv.row) >> 1] + mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) * W… in vp8_mv_bit_cost() 43 mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) in mv_err_cost() 54 mvsadcost[1][(mv->as_mv.col - ref->as_mv.col)]) in mvsad_err_cost() 67 x->ss[search_site_count].mv.col = 0; in vp8_init_dsmotion_compensation() 76 x->ss[search_site_count].mv.col = 0; in vp8_init_dsmotion_compensation() 82 x->ss[search_site_count].mv.col = 0; in vp8_init_dsmotion_compensation() 88 x->ss[search_site_count].mv.col = -Len; in vp8_init_dsmotion_compensation() 94 x->ss[search_site_count].mv.col = Len; in vp8_init_dsmotion_compensation() 114 x->ss[search_site_count].mv.col = 0; in vp8_init3smotion_compensation() 123 x->ss[search_site_count].mv.col = 0; in vp8_init3smotion_compensation() [all …]
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/ |
D | mcomp.c | 36 …[0][(mv->as_mv.row - ref->as_mv.row) >> 1] + mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) * W… in vp8_mv_bit_cost() 44 mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) in mv_err_cost() 55 mvsadcost[1][(mv->as_mv.col - ref->as_mv.col)]) in mvsad_err_cost() 68 x->ss[search_site_count].mv.col = 0; in vp8_init_dsmotion_compensation() 77 x->ss[search_site_count].mv.col = 0; in vp8_init_dsmotion_compensation() 83 x->ss[search_site_count].mv.col = 0; in vp8_init_dsmotion_compensation() 89 x->ss[search_site_count].mv.col = -Len; in vp8_init_dsmotion_compensation() 95 x->ss[search_site_count].mv.col = Len; in vp8_init_dsmotion_compensation() 115 x->ss[search_site_count].mv.col = 0; in vp8_init3smotion_compensation() 124 x->ss[search_site_count].mv.col = 0; in vp8_init3smotion_compensation() [all …]
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCResultSet.java | 229 int col = findColumn(columnName); 230 return getString(col); 256 int col = findColumn(columnName); 257 return getInt(col); 266 int col = findColumn(columnName); 267 return getBoolean(col); 300 int col = findColumn(columnName); 301 return getShort(col); 337 int col = findColumn(columnName); 338 return getTime(col); [all …]
|
/external/eigen/unsupported/Eigen/src/Skyline/ |
D | SkylineInplaceLU.h | 131 const Index& col = row; in compute() local 132 for (typename MatrixType::InnerLowerIterator lIt(m_lu, col); lIt; ++lIt) { in compute() 137 typename MatrixType::InnerLowerIterator lIt(m_lu, col); in compute() 156 typename MatrixType::InnerLowerIterator lIt3(m_lu, col); in compute() 169 typename MatrixType::InnerLowerIterator lIt2(m_lu, col); in compute() 195 for (Index col = llIt.col(); col < row; col++) { in computeRowMajor() local 196 if (m_lu.coeffExistLower(row, col)) { in computeRowMajor() 197 const double diag = m_lu.coeffDiag(col); in computeRowMajor() 200 typename MatrixType::InnerUpperIterator uIt(m_lu, col); in computeRowMajor() 203 const Index offset = lIt.col() - uIt.row(); in computeRowMajor() [all …]
|
/external/javasqlite/src/main/java/SQLite/ |
D | Stmt.java | 177 public native int column_int(int col) throws SQLite.Exception; in column_int() argument 184 public native long column_long(int col) throws SQLite.Exception; in column_long() argument 191 public native double column_double(int col) throws SQLite.Exception; in column_double() argument 198 public native byte[] column_bytes(int col) throws SQLite.Exception; in column_bytes() argument 205 public native String column_string(int col) throws SQLite.Exception; in column_string() argument 212 public native int column_type(int col) throws SQLite.Exception; in column_type() argument 227 public Object column(int col) throws SQLite.Exception { in column() argument 228 switch (column_type(col)) { in column() 230 return Long.valueOf(column_long(col)); // android-changed: performance in column() 232 return new Double(column_double(col)); in column() [all …]
|
/external/libhevc/common/x86/ |
D | ihevc_mem_fns_ssse3_intr.c | 82 int col; in ihevc_memcpy_mul_8_ssse3() local 83 for(col = num_bytes; col >= 8; col -= 8) in ihevc_memcpy_mul_8_ssse3() 121 int col; in ihevc_memset_mul_8_ssse3() local 124 for(col = num_bytes; col >= 8; col -= 8) in ihevc_memset_mul_8_ssse3() 159 int col; in ihevc_memset_16bit_mul_8_ssse3() local 162 for(col = num_words; col >= 8; col -= 8) in ihevc_memset_16bit_mul_8_ssse3()
|
/external/eigen/Eigen/src/OrderingMethods/ |
D | Eigen_Colamd.h | 218 …ols (Index n_row, Index n_col, Colamd_Row<Index> Row [], colamd_col<Index> col [], Index A [], Ind… 504 Index col ; /* a column index */ in init_rows_cols() local 514 for (col = 0 ; col < n_col ; col++) in init_rows_cols() 516 Col [col].start = p [col] ; in init_rows_cols() 517 Col [col].length = p [col+1] - p [col] ; in init_rows_cols() 519 if (Col [col].length < 0) in init_rows_cols() 523 stats [COLAMD_INFO1] = col ; in init_rows_cols() 524 stats [COLAMD_INFO2] = Col [col].length ; in init_rows_cols() 525 COLAMD_DEBUG0 (("colamd: col %d length %d < 0\n", col, Col [col].length)) ; in init_rows_cols() 529 Col [col].shared1.thickness = 1 ; in init_rows_cols() [all …]
|
/external/libhevc/decoder/ |
D | ihevcd_deblk.c | 119 WORD32 col, row; in ihevcd_deblk_ctb() local 235 for(col = 0; col < ctb_size / 8; col++) in ihevcd_deblk_ctb() 245 shift = (col & 1) << (log2_ctb_size - 1); in ihevcd_deblk_ctb() 282 if(0 == col) in ihevcd_deblk_ctb() 292 pu1_qp[col - 1 - qp_strd]; in ihevcd_deblk_ctb() 297 pu1_qp[col - qp_strd]; in ihevcd_deblk_ctb() 301 if(0 == col) in ihevcd_deblk_ctb() 311 pu1_qp[((row - 1) >> 1) * qp_strd + col - 1]; in ihevcd_deblk_ctb() 316 pu1_qp[((row - 1) >> 1) * qp_strd + col]; in ihevcd_deblk_ctb() 319 filter_p = (pu2_ctb_no_loop_filter_flag[(row + 1) >> 1] >> col) & 1; in ihevcd_deblk_ctb() [all …]
|
/external/stlport/test/unit/ |
D | collate_facets_test.cpp | 20 collate<char> const& col = use_facet<collate<char> >(locale::classic()); in collate_facet() local 27 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 1) == 0 ); in collate_facet() 28 CPPUNIT_ASSERT( col.compare(str1, str1 + size1, str2, str2 + size2) == -1 ); in collate_facet() 31 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 2, str2, str2 + size2 - 1) == -1 ); in collate_facet() 32 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 2) == 1 ); in collate_facet() 40 collate<char> const& col = use_facet<collate<char> >(loc); in collate_facet() local 47 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 1) == 0 ); in collate_facet() 48 CPPUNIT_ASSERT( col.compare(str1, str1 + size1, str2, str2 + size2) == -1 ); in collate_facet() 51 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 2, str2, str2 + size2 - 1) == -1 ); in collate_facet() 52 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 2) == 1 ); in collate_facet() [all …]
|
/external/qemu/distrib/jpeg-6b/ |
D | jccolor.c | 141 register JDIMENSION col; in rgb_ycc_convert() local 150 for (col = 0; col < num_cols; col++) { in rgb_ycc_convert() 161 outptr0[col] = (JSAMPLE) in rgb_ycc_convert() 165 outptr1[col] = (JSAMPLE) in rgb_ycc_convert() 169 outptr2[col] = (JSAMPLE) in rgb_ycc_convert() 188 register JDIMENSION col; in rgb565_ycc_convert() local 197 for (col = 0; col < num_cols; col++) { in rgb565_ycc_convert() 198 register const unsigned short color = inptr[col]; in rgb565_ycc_convert() 208 outptr0[col] = (JSAMPLE) in rgb565_ycc_convert() 212 outptr1[col] = (JSAMPLE) in rgb565_ycc_convert() [all …]
|