/external/libaom/libaom/av1/common/x86/ |
D | cfl_avx2.c | 69 const __m256i *row_end = row + (height >> 1) * CFL_BUF_LINE_I256; in cfl_luma_subsampling_420_lbd_avx2() local 81 } while ((row += CFL_BUF_LINE_I256) < row_end); in cfl_luma_subsampling_420_lbd_avx2() 103 const __m256i *row_end = row + height * CFL_BUF_LINE_I256; in cfl_luma_subsampling_422_lbd_avx2() local 109 } while ((row += CFL_BUF_LINE_I256) < row_end); in cfl_luma_subsampling_422_lbd_avx2() 130 const __m256i *row_end = row + height * CFL_BUF_LINE_I256; in cfl_luma_subsampling_444_lbd_avx2() local 145 } while ((row += CFL_BUF_LINE_I256) < row_end); in cfl_luma_subsampling_444_lbd_avx2() 169 const __m256i *row_end = row + (height >> 1) * CFL_BUF_LINE_I256; in cfl_luma_subsampling_420_hbd_avx2() local 186 } while ((row += CFL_BUF_LINE_I256) < row_end); in cfl_luma_subsampling_420_hbd_avx2() 208 const __m256i *row_end = row + height * CFL_BUF_LINE_I256; in cfl_luma_subsampling_422_hbd_avx2() local 219 } while ((row += CFL_BUF_LINE_I256) < row_end); in cfl_luma_subsampling_422_hbd_avx2() [all …]
|
D | cfl_ssse3.c | 318 const __m128i *row_end = row + height * CFL_BUF_LINE_I128; in cfl_predict_lbd_ssse3() local 339 } while ((row += CFL_BUF_LINE_I128) < row_end); in cfl_predict_lbd_ssse3() 364 const __m128i *row_end = row + height * CFL_BUF_LINE_I128; in cfl_predict_hbd_ssse3() local 390 } while ((row += CFL_BUF_LINE_I128) < row_end); in cfl_predict_hbd_ssse3()
|
/external/libhevc/encoder/arm/ |
D | ihevce_decomp_pre_intra_pass_neon.c | 137 WORD32 row_start, row_end; in ihevce_scale_by_2_neon() local 156 row_end = ((ht_offset + block_ht) > (ht - (N_TAPS >> 1))) ? 1 : 0; in ihevce_scale_by_2_neon() 161 if(row_end && (ht % block_ht != 0)) in ihevce_scale_by_2_neon() 167 if(col_start || col_end || row_end || row_start) in ihevce_scale_by_2_neon() 173 ht_tmp = block_ht + 3 * (1 - row_start) + 3 * (1 - row_end); in ihevce_scale_by_2_neon() 199 if(row_end) in ihevce_scale_by_2_neon()
|
D | ihevce_common_utils_neon.c | 468 WORD32 row_end, col_end, row, col; in ihevce_get_luma_eo_sao_params_neon() local 493 row_end = ps_sao_ctxt->i4_sao_blk_ht; in ihevce_get_luma_eo_sao_params_neon() 515 row_end = row_end - 1; in ihevce_get_luma_eo_sao_params_neon() 527 for(row = row_start; row < row_end; row++) in ihevce_get_luma_eo_sao_params_neon() 713 for(row = row_start; row < row_end; row++) in ihevce_get_luma_eo_sao_params_neon() 894 for(row = row_start; row < row_end; row++) in ihevce_get_luma_eo_sao_params_neon() 1075 for(row = row_start; row < row_end; row++) in ihevce_get_luma_eo_sao_params_neon() 1269 WORD32 row_end, col_end, row, col; in ihevce_get_chroma_eo_sao_params_neon() local 1294 row_end = ps_sao_ctxt->i4_sao_blk_ht >> 1; in ihevce_get_chroma_eo_sao_params_neon() 1316 row_end = row_end - 1; in ihevce_get_chroma_eo_sao_params_neon() [all …]
|
/external/webp/src/dsp/ |
D | lossless.c | 373 int row_start, int row_end, in VP8LInverseTransform() argument 376 assert(row_start < row_end); in VP8LInverseTransform() 377 assert(row_end <= transform->ysize_); in VP8LInverseTransform() 380 VP8LAddGreenToBlueAndRed(in, (row_end - row_start) * width, out); in VP8LInverseTransform() 383 PredictorInverseTransform_C(transform, row_start, row_end, in, out); in VP8LInverseTransform() 384 if (row_end != transform->ysize_) { in VP8LInverseTransform() 387 memcpy(out - width, out + (row_end - row_start - 1) * width, in VP8LInverseTransform() 392 ColorSpaceInverseTransform_C(transform, row_start, row_end, in, out); in VP8LInverseTransform() 401 const int out_stride = (row_end - row_start) * width; in VP8LInverseTransform() 402 const int in_stride = (row_end - row_start) * in VP8LInverseTransform() [all …]
|
D | lossless.h | 64 int row_start, int row_end,
|
/external/eigen/bench/ |
D | sparse_setter.cpp | 360 I row_end = Ap[i+1]; in csr_sort_indices() local 364 for(I jj = row_start; jj < row_end; jj++){ in csr_sort_indices() 370 for(I jj = row_start, n = 0; jj < row_end; jj++, n++){ in csr_sort_indices() 385 I row_end = 0; in csr_sum_duplicates() local 387 I jj = row_end; in csr_sum_duplicates() 388 row_end = Ap[i+1]; in csr_sum_duplicates() 389 while( jj < row_end ){ in csr_sum_duplicates() 393 while( jj < row_end && Aj[jj] == j ){ in csr_sum_duplicates()
|
/external/libhevc/encoder/ |
D | ihevce_common_utils.c | 1068 WORD32 row_start, row_end, col_start, col_end, row, col; in ihevce_get_chroma_eo_sao_params() local 1074 row_end = ps_sao_ctxt->i4_sao_blk_ht >> 1; in ihevce_get_chroma_eo_sao_params() 1097 row_end = row_end - 1; //ps_sao_ctxt->i4_sao_blk_ht - 1; in ihevce_get_chroma_eo_sao_params() 1121 for(row = row_start; row < row_end; row++) in ihevce_get_chroma_eo_sao_params() 1177 WORD32 row_start, row_end, col_start, col_end, row, col; in ihevce_get_luma_eo_sao_params() local 1183 row_end = ps_sao_ctxt->i4_sao_blk_ht; in ihevce_get_luma_eo_sao_params() 1206 row_end = ps_sao_ctxt->i4_sao_blk_ht - 1; in ihevce_get_luma_eo_sao_params() 1230 for(row = row_start; row < row_end; row++) in ihevce_get_luma_eo_sao_params()
|
D | ihevce_decomp_pre_intra_pass.c | 1668 WORD32 row_start, row_end; in ihevce_scale_by_2() local 1687 row_end = ((ht_offset + block_ht) > (ht - (N_TAPS >> 1))) ? 1 : 0; in ihevce_scale_by_2() 1692 if(row_end && (ht % block_ht != 0)) in ihevce_scale_by_2() 1698 if(col_start || col_end || row_end || row_start) in ihevce_scale_by_2() 1704 ht_tmp = block_ht + 3 * (1 - row_start) + 3 * (1 - row_end); in ihevce_scale_by_2() 1730 if(row_end) in ihevce_scale_by_2()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | fractional_avg_pool_op.cc | 155 int64 row_end = in Compute() local 157 row_end = std::min(row_end, row_max); in Compute() 168 for (int64 h = row_start; h <= row_end; ++h) { in Compute()
|
D | matrix_band_part_op.cc | 157 const int64 row_end = end < (batch + 1) * m ? end % m : m; in operator ()() local 158 for (int64 row = row_begin; row < row_end; ++row) { in operator ()()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | fractional_avg_pool_op_test.py | 59 row_end = row_seq[i + 1] + 1 if overlapping else row_seq[i + 1] 60 row_end = min(row_end, row_max) 62 input_matrix[row_start:row_end, :], axis=0))) # axis 0 is along row
|
D | fractional_max_pool_op_test.py | 59 row_end = row_seq[i + 1] + 1 if overlapping else row_seq[i + 1] 60 row_end = min(row_end, row_max) 62 input_matrix[row_start:row_end, :], axis=0))) # axis 0 is along row
|
/external/pdfium/third_party/libpng16/ |
D | pngwrite.c | 1527 png_uint_16p row_end; in png_write_image_16bit() local 1555 row_end = output_row + image->width * (channels+1); in png_write_image_16bit() 1562 while (out_ptr < row_end) in png_write_image_16bit() 1690 png_bytep row_end; in png_write_image_8bit() local 1706 row_end = output_row + image->width * (channels+1); in png_write_image_8bit() 1713 while (out_ptr < row_end) in png_write_image_8bit() 1747 png_bytep row_end = output_row + image->width * channels; in png_write_image_8bit() local 1754 while (out_ptr < row_end) in png_write_image_8bit()
|
/external/libpng/ |
D | pngwrite.c | 1538 png_uint_16p row_end; in png_write_image_16bit() local 1567 row_end = output_row + image->width * (channels+1); in png_write_image_16bit() 1574 while (out_ptr < row_end) in png_write_image_16bit() 1703 png_bytep row_end; in png_write_image_8bit() local 1719 row_end = output_row + image->width * (channels+1); in png_write_image_8bit() 1726 while (out_ptr < row_end) in png_write_image_8bit() 1760 png_bytep row_end = output_row + image->width * channels; in png_write_image_8bit() local 1767 while (out_ptr < row_end) in png_write_image_8bit()
|
/external/libaom/libaom/av1/common/ |
D | av1_loopfilter.h | 165 int row_end, int col_end);
|
D | av1_loopfilter.c | 1040 int subsampling_x, int subsampling_y, int row_end, in av1_setup_bitmask() argument 1047 if (row >= row_end || col >= col_end) continue; in av1_setup_bitmask() 1083 if (row >= row_end || col >= col_end) continue; in av1_setup_bitmask()
|
/external/pdfium/core/fxge/dib/ |
D | cfx_dibsource.cpp | 981 int row_end = bXFlip ? m_Height - dest_clip.left : dest_clip.right; in SwapXY() local 986 for (int row = row_start; row < row_end; ++row) { in SwapXY() 1005 for (int row = row_start; row < row_end; ++row) { in SwapXY() 1039 for (int row = row_start; row < row_end; ++row) { in SwapXY()
|
/external/tensorflow/tensorflow/contrib/bigtable/ |
D | README.md | 163 ds1 = table.scan_range("row_start", "row_end", columns=[("cfa", "c1"), 166 ds2 = table.scan_range("row_start", "row_end", cfa=["c1", "c2"], cfb="c3")
|
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/ |
D | optimized_ops.h | 823 uint8* output_data, int row_start, int row_end) { in FullyConnectedAsGEMVWorkerImpl() argument 840 TFLITE_DCHECK_GE(row_end - row_start, kPeel); in FullyConnectedAsGEMVWorkerImpl() 842 for (int out = row_start; out < row_end; out += kPeel) { in FullyConnectedAsGEMVWorkerImpl() 843 out = std::min(out, row_end - kPeel); in FullyConnectedAsGEMVWorkerImpl() 1044 uint8* output_data, int row_start, int row_end) in FullyConnectedAsGEMVWorkerTask() 1061 row_end_(row_end) {} in FullyConnectedAsGEMVWorkerTask() 1125 int row_end = std::min(output_rows, row_start + kRowsPerWorker); in FullyConnectedAsGEMV() local 1130 output_shape, output_data, row_start, row_end); in FullyConnectedAsGEMV() 1131 row_start = row_end; in FullyConnectedAsGEMV() 1744 int row_end = std::min(output_depth, row_start + kRowsPerWorker); in ShuffledFullyConnected() local [all …]
|
/external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/ |
D | optimized_ops.h | 1800 int row_end = std::min(output_depth, row_start + kRowsPerWorker); in ShuffledFullyConnected() local 1804 row_end - row_start, output_depth, accum_depth, bias_data + row_start, in ShuffledFullyConnected() 1806 row_start = row_end; in ShuffledFullyConnected()
|