/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/libavc/common/ |
D | ih264_inter_pred_filters.c | 119 WORD32 row, col; in ih264_inter_pred_luma_copy() local 124 for(col = 0; col < wd; col++) in ih264_inter_pred_luma_copy() 126 pu1_dst[col] = pu1_src[col]; in ih264_inter_pred_luma_copy() 177 WORD32 row, col; in ih264_interleave_copy() local 182 for(col = 0; col < wd; col+=2) in ih264_interleave_copy() 184 pu1_dst[col] = pu1_src[col]; in ih264_interleave_copy() 236 WORD32 row, col; in ih264_inter_pred_luma_horz() local 243 for(col = 0; col < wd; col++) in ih264_inter_pred_luma_horz() 247 (pu1_src[col - 2] + pu1_src[col + 3]) in ih264_inter_pred_luma_horz() 249 (pu1_src[col - 1] + pu1_src[col + 2]) in ih264_inter_pred_luma_horz() [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | LUDecompositionImpl.java | 101 for (int col = 0; col < m; col++) { in LUDecompositionImpl() 106 for (int row = 0; row < col; row++) { in LUDecompositionImpl() 108 sum = luRow[col]; in LUDecompositionImpl() 110 sum -= luRow[i] * lu[i][col]; in LUDecompositionImpl() 112 luRow[col] = sum; in LUDecompositionImpl() 116 int max = col; // permutation row in LUDecompositionImpl() 118 for (int row = col; row < m; row++) { in LUDecompositionImpl() 120 sum = luRow[col]; in LUDecompositionImpl() 121 for (int i = 0; i < col; i++) { in LUDecompositionImpl() 122 sum -= luRow[i] * lu[i][col]; in LUDecompositionImpl() [all …]
|
D | FieldLUDecompositionImpl.java | 95 for (int col = 0; col < m; col++) { in FieldLUDecompositionImpl() 100 for (int row = 0; row < col; row++) { in FieldLUDecompositionImpl() 102 sum = luRow[col]; in FieldLUDecompositionImpl() 104 sum = sum.subtract(luRow[i].multiply(lu[i][col])); in FieldLUDecompositionImpl() 106 luRow[col] = sum; in FieldLUDecompositionImpl() 110 int nonZero = col; // permutation row in FieldLUDecompositionImpl() 111 for (int row = col; row < m; row++) { in FieldLUDecompositionImpl() 113 sum = luRow[col]; in FieldLUDecompositionImpl() 114 for (int i = 0; i < col; i++) { in FieldLUDecompositionImpl() 115 sum = sum.subtract(luRow[i].multiply(lu[i][col])); in FieldLUDecompositionImpl() [all …]
|
D | BigMatrixImpl.java | 286 for (int col = 0; col < columnCount; col++) { in add() 287 outDataRow[col] = dataRow[col].add(m.getEntry(row, col)); in add() 313 for (int col = 0; col < columnCount; col++) { in add() 314 outDataRow[col] = dataRow[col].add(mRow[col]); in add() 341 for (int col = 0; col < columnCount; col++) { in subtract() 342 outDataRow[col] = dataRow[col].subtract(getEntry(row, col)); in subtract() 368 for (int col = 0; col < columnCount; col++) { in subtract() 369 outDataRow[col] = dataRow[col].subtract(mRow[col]); in subtract() 388 for (int col = 0; col < columnCount; col++) { in scalarAdd() 389 outDataRow[col] = dataRow[col].add(d); in scalarAdd() [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/deqp/framework/common/ |
D | tcuMatrix.hpp | 68 inline const T& operator() (int row, int col) const { return m_data[col][row]; } in operator ()() 69 inline T& operator() (int row, int col) { return m_data[col][row]; } in operator ()() argument 315 for (int col = 0; col < Cols; col++) in Matrix() local 316 (*this)(row, col) = (row == col) ? T(1) : T(0); in Matrix() 324 for (int col = 0; col < Cols; col++) in Matrix() local 325 (*this)(row, col) = (row == col) ? src : T(0); in Matrix() 333 for (int col = 0; col < Cols; col++) in Matrix() local 334 (*this)(row, col) = src[row*Cols + col]; in Matrix() 343 for (int col = 0; col < Cols; col++) in Matrix() local 344 (*this)(row, col) = (row == col) ? src.m_data[row] : T(0); in Matrix() [all …]
|
/external/libavc/encoder/ |
D | ih264e_half_pel.c | 187 WORD32 row, col; in ih264e_sixtap_filter_2dvh_vert() local 194 for (col = -2; col < wd + 3; col++) in ih264e_sixtap_filter_2dvh_vert() 196 tmp = ih264_g_six_tap[0] * (pu1_src[col - 2 * src_strd] + pu1_src[col + 3 * src_strd]) + in ih264e_sixtap_filter_2dvh_vert() 197 … ih264_g_six_tap[1] * (pu1_src[col - 1 * src_strd] + pu1_src[col + 2 * src_strd]) + in ih264e_sixtap_filter_2dvh_vert() 198 ih264_g_six_tap[2] * (pu1_src[col] + pu1_src[col + 1 * src_strd]); in ih264e_sixtap_filter_2dvh_vert() 200 pi4_pred_temp[col] = tmp; in ih264e_sixtap_filter_2dvh_vert() 209 for (col = 0; col < wd; col++) in ih264e_sixtap_filter_2dvh_vert() 211 tmp = (pi4_pred[col - 2] + pi4_pred[col + 3]) + in ih264e_sixtap_filter_2dvh_vert() 212 ih264_g_six_tap[1] * (pi4_pred[col - 1] + pi4_pred[col + 2]) + in ih264e_sixtap_filter_2dvh_vert() 213 ih264_g_six_tap[2] * (pi4_pred[col] + pi4_pred[col + 1]); in ih264e_sixtap_filter_2dvh_vert() [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/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/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/libvpx/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/pdfium/core/src/fxge/skia/ |
D | fx_skia_blitter_new.cpp | 99 for (int col = col_start; col < col_end; col ++) { in CompositeSpan1bpp_0() local 102 *dest_scan1 &= ~(1 << (7 - (col+span_left)%8)); in CompositeSpan1bpp_0() 104 *dest_scan1|= 1 << (7 - (col+span_left)%8); in CompositeSpan1bpp_0() 106 dest_scan1 = dest_scan+(span_left%8+col-col_start+1)/8; in CompositeSpan1bpp_0() 133 for (int col = col_start; col < col_end; col ++) { in CompositeSpan1bpp_4() local 134 int src_alpha1 = src_alpha * clip_scan[col] / 255; in CompositeSpan1bpp_4() 137 *dest_scan1 &= ~(1 << (7 - (col+span_left)%8)); in CompositeSpan1bpp_4() 139 *dest_scan1|= 1 << (7 - (col+span_left)%8); in CompositeSpan1bpp_4() 141 dest_scan1 = dest_scan+(span_left%8+col-col_start+1)/8; in CompositeSpan1bpp_4() 162 for (int col = col_start; col < col_end; col ++) { in CompositeSpanGray_2() local [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/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/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/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/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/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/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/libavc/common/x86/ |
D | ih264_mem_fns_ssse3.c | 83 int col; in ih264_memcpy_mul_8_ssse3() local 84 for(col = num_bytes; col >= 8; col -= 8) in ih264_memcpy_mul_8_ssse3() 122 int col; in ih264_memset_mul_8_ssse3() local 125 for(col = num_bytes; col >= 8; col -= 8) in ih264_memset_mul_8_ssse3() 160 int col; in ih264_memset_16bit_mul_8_ssse3() local 163 for(col = num_words; col >= 8; col -= 8) in ih264_memset_16bit_mul_8_ssse3()
|