Searched refs:b_col (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/vp8/common/ |
D | debugmodes.c | 77 int b_col; in vp8_print_modes_and_motion_vectors() local 80 for (b_col = 0; b_col < 4 * cols; ++b_col) { in vp8_print_modes_and_motion_vectors() 81 mb_index = (b_row >> 2) * (cols + 1) + (b_col >> 2); in vp8_print_modes_and_motion_vectors() 82 bindex = (b_row & 3) * 4 + (b_col & 3); in vp8_print_modes_and_motion_vectors() 119 int b_col; in vp8_print_modes_and_motion_vectors() local 122 for (b_col = 0; b_col < 4 * cols; ++b_col) { in vp8_print_modes_and_motion_vectors() 123 mb_index = (b_row >> 2) * (cols + 1) + (b_col >> 2); in vp8_print_modes_and_motion_vectors() 124 bindex = (b_row & 3) * 4 + (b_col & 3); in vp8_print_modes_and_motion_vectors()
|
/external/mesa3d/src/compiler/glsl/ |
D | lower_mat_op_to_vec.cpp | 129 unsigned b_col, i; in do_mul_mat_mat() local 133 for (b_col = 0; b_col < b->type->matrix_columns; b_col++) { in do_mul_mat_mat() 137 get_element(b, b_col, 0)); in do_mul_mat_mat() 145 get_element(b, b_col, i)); in do_mul_mat_mat() 151 assign = new(mem_ctx) ir_assignment(get_column(result, b_col), expr); in do_mul_mat_mat()
|
/external/perfetto/src/trace_processor/sqlite/ |
D | db_sqlite_table.cc | 228 const auto& b_col = schema.columns[b_idx]; in ModifyConstraints() local 232 if (a_col.is_id || b_col.is_id) in ModifyConstraints() 233 return a_col.is_id && !b_col.is_id; in ModifyConstraints() 237 if (a_col.is_set_id || b_col.is_set_id) in ModifyConstraints() 238 return a_col.is_set_id && !b_col.is_set_id; in ModifyConstraints() 242 if (a_col.is_sorted || b_col.is_sorted) in ModifyConstraints() 243 return a_col.is_sorted && !b_col.is_sorted; in ModifyConstraints()
|
/external/libvpx/vp8/decoder/ |
D | error_concealment.c | 151 union b_mode_info *bmi, int b_row, int b_col) { in calculate_overlaps() argument 161 col = (4 * b_col) << 3; /* Q3 */ in calculate_overlaps()
|
/external/ComputeLibrary/src/cpu/kernels/gemm_matrix_mul/generic/neon/ |
D | impl.cpp | 190 const float16x4_t b_col = in vector_matrix_multiply_f16() local 198 vacc = vadd_f16(vacc, vmul_f16(a0l, b_col)); in vector_matrix_multiply_f16() 414 const float32x4_t b_col = in vector_matrix_multiply_f32() local 430 vacc = vmlaq_f32(vacc, b_col, a0l); in vector_matrix_multiply_f32()
|
/external/libaom/av1/decoder/ |
D | decodemv.c | 88 const int b_col = xd->mi_col & (cm->seq_params->mib_size - 1); in read_delta_qindex() local 90 const int read_delta_q_flag = (b_col == 0 && b_row == 0); in read_delta_qindex() 120 const int b_col = mi_col & (cm->seq_params->mib_size - 1); in read_delta_lflevel() local 122 const int read_delta_lf_flag = (b_col == 0 && b_row == 0); in read_delta_lflevel()
|