Home
last modified time | relevance | path

Searched refs:end_col (Results 1 – 25 of 31) sorted by relevance

12

/external/ruy/ruy/
Dkernel_arm.h63 int start_col, int end_row, int end_col, Mat<DstScalar>* dst) const {
66 end_col, dst, &params);
91 int start_col, int end_row, int end_col, Mat<DstScalar>* dst) const {
94 end_col, dst, &params);
115 int start_col, int end_row, int end_col, Mat<DstScalar>* dst) const {
118 end_col, dst, &params);
147 int start_col, int end_row, int end_col, Mat<float>* dst) const {
150 end_col, dst, &params);
171 int start_col, int end_row, int end_col, Mat<float>* dst) const {
175 end_col, dst, &params);
[all …]
Dpack.h110 int end_col) { in Run()
113 RUY_DCHECK_EQ((end_col - start_col) % FixedKernelLayout::kCols, 0); in Run()
115 for (int col = start_col; col < end_col; col++) { in Run()
138 int start_col, int end_col) { in RunPack() argument
146 Order::kColMajor>::Run(tuning, src, &packed, start_col, end_col); in RunPack()
149 Order::kRowMajor>::Run(tuning, src, &packed, start_col, end_col); in RunPack()
Dpack_x86.h76 int end_col) {
81 RUY_DCHECK_EQ((end_col - start_col) % Layout::kCols, 0);
87 for (int block_col = start_col; block_col < end_col;
123 int end_col) {
128 RUY_DCHECK_EQ((end_col - start_col) % Layout::kCols, 0);
134 for (int block_col = start_col; block_col < end_col;
162 PMat<float>* packed_matrix, int start_col, int end_col) {
167 RUY_DCHECK_EQ((end_col - start_col) % Layout::kCols, 0);
171 for (int block_col = start_col; block_col < end_col;
196 PMat<float>* packed_matrix, int start_col, int end_col) {
[all …]
Dkernel.h87 const int end_col = end[Side::kRhs];
123 RUY_DCHECK_LE(start_col, end_col);
124 RUY_DCHECK_LT(end_col, dst->layout.cols + RhsLayout::kCols);
125 RUY_DCHECK_EQ((end_col - start_col) % RhsLayout::kCols, 0);
127 kernel.Run(lhs, rhs, mul_params, start_row, start_col, end_row, end_col, dst);
129 for (int col = start_col; col < end_col; col += RhsLayout::kCols) {
130 int block_end_col = std::min(col + RhsLayout::kCols, end_col);
192 int end_row, int end_col, Mat<DstScalar>* dst) const {
198 int clamped_end_col = std::min(end_col, dst->layout.cols);
207 RUY_DCHECK_LE(clamped_end_col, end_col);
[all …]
Dpack_arm.h57 int start_col, int end_col,
153 int end_col) {
160 for (int block_col = start_col; block_col < end_col; block_col += 4) {
236 int end_col) {
243 for (int block_col = start_col; block_col < end_col; block_col += 2) {
285 int end_col) {
292 for (int block_col = start_col; block_col < end_col; block_col += 4) {
366 PMat<float>* packed_matrix, int start_col, int end_col) {
371 for (int block_col = start_col; block_col < end_col; block_col += 4) {
442 PMat<float>* packed_matrix, int start_col, int end_col) {
[all …]
Dkernel_x86.h50 int start_col, int end_row, int end_col, Mat<DstScalar>* dst) const {
53 end_col, dst, &params);
75 int start_col, int end_row, int end_col, Mat<float>* dst) const {
78 end_col, dst, &params);
101 int start_col, int end_row, int end_col, Mat<DstScalar>* dst) const {
104 end_col, dst, &params);
126 int start_col, int end_row, int end_col, Mat<float>* dst) const {
129 end_col, dst, &params);
151 int start_col, int end_row, int end_col, Mat<float>* dst) const {
154 end_col, dst, &params);
[all …]
Dkernel_common.h135 int end_col, Mat<DstScalar>* dst,
145 RUY_DCHECK_EQ(end_col % RhsCols, 0);
169 params->last_col = end_col - RhsCols;
233 int end_col, Mat<float>* dst,
239 RUY_DCHECK_EQ(end_col % RhsCols, 0);
259 params->last_col = end_col - RhsCols;
Dpack_common.h103 PMat<float>* packed_matrix, int start_col, int end_col) { in Run()
118 int src_cols = std::min(end_col, src_matrix.layout.cols) - start_col; in Run()
Dtrace.h760 start_col, end_col); \
762 end_col, str(src_matrix)); \
764 end_col, str(*packed_matrix)); \
765 if (end_col > src_matrix.layout.cols) { \
Dpack_arm.cc2254 int start_col, int end_col, in Pack8bitRowMajorForNeon() argument
2260 int src_end_col = std::min(end_col, src_cols); in Pack8bitRowMajorForNeon()
2469 for (; col < end_col; col++) { in Pack8bitRowMajorForNeon()
Dpack_avx2_fma.cc608 int packed_stride, int start_col, int end_col,
612 int src_end_col = std::min(end_col, src_cols);
681 for (; col < end_col; col++) {
Dkernel_avx512.cc907 const int end_col = std::min(params.dst_cols, params.last_col + 16);
923 for (; col <= end_col - 16; col += 16) {
1383 if (col < end_col) {
1384 RUY_DCHECK_GE(end_col - col, 0);
1385 RUY_DCHECK_LT(end_col - col, 16);
1433 const int residual_cols = std::min(end_col - col - 8 * mmm, 8);
Dpack_avx512.cc727 int packed_stride, int start_col, int end_col,
731 int src_end_col = std::min(end_col, src_cols);
820 for (; col < end_col; col++) {
Dpack_avx.cc750 int packed_stride, int start_col, int end_col,
754 int src_end_col = std::min(end_col, src_cols);
823 for (; col < end_col; col++) {
/external/tensorflow/tensorflow/python/debug/cli/
Dtensor_format_test.py104 is_omitted, row, start_col, end_col = (
109 self.assertEqual(match.end(), end_col)
494 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
499 self.assertEqual(actual_col_0_0_0 + 4, end_col)
502 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
507 self.assertIsNone(end_col)
510 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
515 self.assertEqual(actual_col_0_1_0 + 4, end_col)
517 is_omitted, row, start_col, end_col = tensor_format.locate_tensor_element(
521 self.assertIsNone(end_col)
[all …]
Dtensor_format.py187 for is_omitted, row, start_col, end_col in zip(are_omitted, rows,
189 if is_omitted or start_col is None or end_col is None:
194 (start_col, end_col, highlight_options.font_attr))
196 formatted.font_attr_segs[row] = [(start_col, end_col,
/external/libvpx/libvpx/vp8/decoder/
Derror_concealment.c124 int end_col = VPXMIN(4 + mb_col * 4 - first_blk_col, 2); in calculate_overlaps_mb() local
131 if (new_col >= 0 && (new_col & 0x1F) == 0) end_col = 1; in calculate_overlaps_mb()
137 if (new_col < (mb_col * 16) << 3) end_col = 1; in calculate_overlaps_mb()
140 for (col = 0; col < end_col; ++col) { in calculate_overlaps_mb()
155 int end_row, end_col; in calculate_overlaps() local
187 end_col = VPXMIN(mb_cols - overlap_mb_col, 2); in calculate_overlaps()
193 if (abs(new_col - ((16 * overlap_mb_col) << 3)) < ((3 * 4) << 3)) end_col = 1; in calculate_overlaps()
197 for (rel_col = 0; rel_col < end_col; ++rel_col) { in calculate_overlaps()
/external/libaom/libaom/av1/common/
Dobmc.h32 const int end_col = AOMMIN(mi_col + xd->width, cm->mi_params.mi_cols); in foreach_overlappable_nb_above() local
34 for (int above_mi_col = mi_col; above_mi_col < end_col && nb_count < nb_max; in foreach_overlappable_nb_above()
/external/iproute2/tc/
Demp_ematch.yacc.c668 int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0; in yy_location_print_() local
680 if (0 <= end_col) in yy_location_print_()
681 res += YYFPRINTF (yyo, ".%d", end_col); in yy_location_print_()
683 else if (0 <= end_col && yylocp->first_column < end_col) in yy_location_print_()
684 res += YYFPRINTF (yyo, "-%d", end_col); in yy_location_print_()
/external/pdfium/core/fxge/
Dcfx_renderdevice.cpp226 int end_col, in DrawNormalTextHelper() argument
249 for (int col = start_col; col < end_col; ++col) { in DrawNormalTextHelper()
269 for (int col = start_col + 1; col < end_col - 1; ++col) { in DrawNormalTextHelper()
283 for (int col = start_col + 1; col < end_col - 1; ++col) { in DrawNormalTextHelper()
291 for (int col = start_col; col < end_col; ++col) { in DrawNormalTextHelper()
316 for (int col = start_col + 1; col < end_col; ++col) { in DrawNormalTextHelper()
341 for (int col = start_col + 1; col < end_col; ++col) { in DrawNormalTextHelper()
1029 int end_col = std::min<int>(end_col_safe.ValueOrDie(), dest_width); in DrawNormalText() local
1030 if (start_col >= end_col) in DrawNormalText()
1034 end_col, bNormal, bBGRStripe, x_subpixel, a, r, g, b); in DrawNormalText()
/external/perfetto/src/trace_processor/dynamic/
Dconnected_flow_generator.cc158 const TypedColumn<SliceId>& end_col = in GoByFlow() local
166 SliceId next_slice_id = end_col[row_it.row()]; in GoByFlow()
/external/angle/tools/flex-bison/third_party/skeletons/
Dc.m4837 int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0;
849 if (0 <= end_col)
850 res += YYFPRINTF (yyo, ".%d", end_col);
852 else if (0 <= end_col && yylocp->first_column < end_col)
853 res += YYFPRINTF (yyo, "-%d", end_col);
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.c1654 int start_col, end_col, start_row, end_row; in exhaustive_mesh_search() local
1669 end_col = VPXMIN(range, x->mv_limits.col_max - fcenter_mv.col); in exhaustive_mesh_search()
1672 for (c = start_col; c <= end_col; c += col_step) { in exhaustive_mesh_search()
1688 if (c + 3 <= end_col) { in exhaustive_mesh_search()
1709 for (i = 0; i < end_col - c; ++i) { in exhaustive_mesh_search()
1741 int start_col, end_col, start_row, end_row; in exhaustive_mesh_search_multi_step() local
1751 end_col = VPXMIN(center_mv->col + range, mv_limits->col_max); in exhaustive_mesh_search_multi_step()
1753 for (c = start_col; c <= end_col; c += step) { in exhaustive_mesh_search_multi_step()
1777 int start_col, end_col, start_row, end_row; in exhaustive_mesh_search_single_step() local
1788 end_col = VPXMIN(center_mv->col + range, mv_limits->col_max); in exhaustive_mesh_search_single_step()
[all …]
/external/angle/src/compiler/translator/
Dglslang_tab_autogen.cpp1682 int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0; in yy_location_print_() local
1694 if (0 <= end_col) in yy_location_print_()
1695 res += YYFPRINTF(yyo, ".%d", end_col); in yy_location_print_()
1697 else if (0 <= end_col && yylocp->first_column < end_col) in yy_location_print_()
1698 res += YYFPRINTF(yyo, "-%d", end_col); in yy_location_print_()
/external/swiftshader/src/OpenGL/compiler/
Dglslang_tab.cpp1684 int end_col = 0 != yylocp->last_column ? yylocp->last_column - 1 : 0; in yy_location_print_() local
1696 if (0 <= end_col) in yy_location_print_()
1697 res += YYFPRINTF (yyo, ".%d", end_col); in yy_location_print_()
1699 else if (0 <= end_col && yylocp->first_column < end_col) in yy_location_print_()
1700 res += YYFPRINTF (yyo, "-%d", end_col); in yy_location_print_()

12